mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Merge commit 'e843612695007cc623813073754c651ab43021f7'
* commit 'e843612695007cc623813073754c651ab43021f7': af_channelmap: fix ONE_STR mapping mode Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
c198af648a
@ -184,7 +184,7 @@ static av_cold int channelmap_init(AVFilterContext *ctx)
|
|||||||
s->map[i].out_channel_idx = i;
|
s->map[i].out_channel_idx = i;
|
||||||
break;
|
break;
|
||||||
case MAP_ONE_STR:
|
case MAP_ONE_STR:
|
||||||
if (!get_channel(&mapping, &in_ch, separator)) {
|
if (get_channel(&mapping, &in_ch, separator) < 0) {
|
||||||
av_log(ctx, AV_LOG_ERROR, err);
|
av_log(ctx, AV_LOG_ERROR, err);
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user