[FFmpeg-cvslog] buffersink: switch from opaque to AVOptions for params

Michael Niedermayer git at videolan.org
Fri Apr 12 13:53:08 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Apr 12 13:47:40 2013 +0200| [3fc7b47145da424b1908e1a86bc4e3b982be67f4] | committer: Michael Niedermayer

buffersink: switch from opaque to AVOptions for params

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

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

 libavdevice/lavfi.c |    7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c
index 4b1fb92..15ac055 100644
--- a/libavdevice/lavfi.c
+++ b/libavdevice/lavfi.c
@@ -227,13 +227,10 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
         }
 
         if (type == AVMEDIA_TYPE_VIDEO) {
-            AVBufferSinkParams *buffersink_params = av_buffersink_params_alloc();
-
-            buffersink_params->pixel_fmts = pix_fmts;
             ret = avfilter_graph_create_filter(&sink, buffersink,
                                                inout->name, NULL,
-                                               buffersink_params, lavfi->graph);
-            av_freep(&buffersink_params);
+                                               NULL, lavfi->graph);
+            av_opt_set_int_list(sink, "pix_fmts", pix_fmts,  AV_PIX_FMT_NONE, AV_OPT_SEARCH_CHILDREN);
 
             if (ret < 0)
                 goto end;



More information about the ffmpeg-cvslog mailing list