diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-12-02 14:31:44 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-12-02 14:35:40 +0100 |
commit | c7a99d99bdcec4d81a3859b0547dea7bd54bff42 (patch) | |
tree | d60dcb3f2c79f9b81c2c16317f13be91cc16e4c0 /doc | |
parent | 3aa6018010271dd75989ac83fa59664274c2e64d (diff) | |
download | ffmpeg-c7a99d99bdcec4d81a3859b0547dea7bd54bff42.tar.gz |
doc/examples/filtering_video: do not make use of AVBufferSinkParams
Set the value on the filter context instead. Simplify.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/filtering_video.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/doc/examples/filtering_video.c b/doc/examples/filtering_video.c index 07badd5477..790c6418ed 100644 --- a/doc/examples/filtering_video.c +++ b/doc/examples/filtering_video.c @@ -91,7 +91,6 @@ static int init_filters(const char *filters_descr) AVFilterInOut *outputs = avfilter_inout_alloc(); AVFilterInOut *inputs = avfilter_inout_alloc(); enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE }; - AVBufferSinkParams *buffersink_params; filter_graph = avfilter_graph_alloc(); if (!outputs || !inputs || !filter_graph) { @@ -114,16 +113,20 @@ static int init_filters(const char *filters_descr) } /* buffer video sink: to terminate the filter chain. */ - buffersink_params = av_buffersink_params_alloc(); - buffersink_params->pixel_fmts = pix_fmts; ret = avfilter_graph_create_filter(&buffersink_ctx, buffersink, "out", - NULL, buffersink_params, filter_graph); - av_free(buffersink_params); + NULL, NULL, filter_graph); if (ret < 0) { av_log(NULL, AV_LOG_ERROR, "Cannot create buffer sink\n"); goto end; } + ret = av_opt_set_int_list(buffersink_ctx, "pix_fmts", pix_fmts, + AV_PIX_FMT_NONE, AV_OPT_SEARCH_CHILDREN); + if (ret < 0) { + av_log(NULL, AV_LOG_ERROR, "Cannot set output pixel format\n"); + goto end; + } + /* Endpoints for the filter graph. */ outputs->name = av_strdup("in"); outputs->filter_ctx = buffersrc_ctx; |