Commit 837112c0 authored by Anton Khirnov's avatar Anton Khirnov

af_channelmap: fix uninitialized variable use introduced in…

af_channelmap: fix uninitialized variable use introduced in ba8efac9
parent cdac3acb
...@@ -122,7 +122,7 @@ static int get_channel(char **map, uint64_t *ch, char delim) ...@@ -122,7 +122,7 @@ static int get_channel(char **map, uint64_t *ch, char delim)
static av_cold int channelmap_init(AVFilterContext *ctx) static av_cold int channelmap_init(AVFilterContext *ctx)
{ {
ChannelMapContext *s = ctx->priv; ChannelMapContext *s = ctx->priv;
int ret; int ret = 0;
char *mapping, separator = '|'; char *mapping, separator = '|';
int map_entries = 0; int map_entries = 0;
char buf[256]; char buf[256];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment