mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
swr: fix test program.
The number of used channels need to be reset to zero when
swr_alloc_set_opts() is called successive times.
This is a regression introduced in c8136ebd
.
This commit is contained in:
parent
2bf09826c1
commit
afb0470a25
@ -105,6 +105,7 @@ struct SwrContext *swr_alloc_set_opts(struct SwrContext *s,
|
||||
av_opt_set_int(s, "tsf", AV_SAMPLE_FMT_S16, 0);
|
||||
av_opt_set_int(s, "ich", av_get_channel_layout_nb_channels(s-> in_ch_layout), 0);
|
||||
av_opt_set_int(s, "och", av_get_channel_layout_nb_channels(s->out_ch_layout), 0);
|
||||
av_opt_set_int(s, "uch", 0, 0);
|
||||
return s;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user