mirror of https://git.ffmpeg.org/ffmpeg.git
af_channelmap: fix uninitialized variable use introduced in ba8efac977
This commit is contained in:
parent
cdac3acb11
commit
837112c0c8
|
@ -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];
|
||||||
|
|
Loading…
Reference in New Issue