From e6e86a3907379a08d0015d76da7ea6b682def815 Mon Sep 17 00:00:00 2001 From: James Almer Date: Fri, 18 Mar 2022 19:18:03 -0300 Subject: [PATCH] avformat/test/seek: set ch_layout instead of channels Signed-off-by: James Almer --- libavformat/tests/seek.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/tests/seek.c b/libavformat/tests/seek.c index e0067a64fc..94a72d9422 100644 --- a/libavformat/tests/seek.c +++ b/libavformat/tests/seek.c @@ -88,7 +88,7 @@ int main(int argc, char **argv) } } - av_dict_set(&format_opts, "channels", "1", 0); + av_dict_set(&format_opts, "ch_layout", "mono", 0); av_dict_set(&format_opts, "sample_rate", "22050", 0); if (argc < 2) {