[FFmpeg-cvslog] ffmpeg: fix broken channel_layout option

Matthieu Bouron git at videolan.org
Fri Feb 1 23:04:38 CET 2013


ffmpeg | branch: master | Matthieu Bouron <matthieu.bouron at gmail.com> | Fri Feb  1 18:58:14 2013 +0100| [5a67e30b1c71dc0a84779b543d95ca20faa8cbed] | committer: Michael Niedermayer

ffmpeg: fix broken channel_layout option

Fixes ticket #2163.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5a67e30b1c71dc0a84779b543d95ca20faa8cbed
---

 ffmpeg_opt.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c
index b285f4c..a418e86 100644
--- a/ffmpeg_opt.c
+++ b/ffmpeg_opt.c
@@ -2140,7 +2140,7 @@ static int opt_channel_layout(void *optctx, const char *opt, const char *arg)
         return AVERROR(EINVAL);
     }
     snprintf(layout_str, sizeof(layout_str), "%"PRIu64, layout);
-    ret = opt_default(NULL, opt, layout_str);
+    ret = opt_default_new(o, opt, layout_str);
     if (ret < 0)
         return ret;
 



More information about the ffmpeg-cvslog mailing list