Skip to content
Snippets Groups Projects
Commit 837112c0 authored by Anton Khirnov's avatar Anton Khirnov
Browse files

af_channelmap: fix uninitialized variable use introduced in...

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