summaryrefslogtreecommitdiff
path: root/doc/examples/filtering_video.c
diff options
context:
space:
mode:
authorClément Bœsch <cboesch@gopro.com>2017-03-28 11:29:19 +0200
committerClément Bœsch <cboesch@gopro.com>2017-03-28 11:40:57 +0200
commitc3706bc255741faab426093c64fe16c2c879b3a2 (patch)
tree414d1ec13584b6c1f1cdc29441e5c4eae03f8eb9 /doc/examples/filtering_video.c
parentc0628919b8c5761d64b1169e8de7584544d15ebf (diff)
doc/examples/filtering_*: switch to codecpar
Diffstat (limited to 'doc/examples/filtering_video.c')
-rw-r--r--doc/examples/filtering_video.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/examples/filtering_video.c b/doc/examples/filtering_video.c
index 3dabf13b10..15116d3881 100644
--- a/doc/examples/filtering_video.c
+++ b/doc/examples/filtering_video.c
@@ -72,7 +72,12 @@ static int open_input_file(const char *filename)
return ret;
}
video_stream_index = ret;
- dec_ctx = fmt_ctx->streams[video_stream_index]->codec;
+
+ /* create decoding context */
+ dec_ctx = avcodec_alloc_context3(dec);
+ if (!dec_ctx)
+ return AVERROR(ENOMEM);
+ avcodec_parameters_to_context(dec_ctx, fmt_ctx->streams[video_stream_index]->codecpar);
av_opt_set_int(dec_ctx, "refcounted_frames", 1, 0);
/* init the video decoder */
@@ -266,7 +271,7 @@ int main(int argc, char **argv)
}
end:
avfilter_graph_free(&filter_graph);
- avcodec_close(dec_ctx);
+ avcodec_free_context(&dec_ctx);
avformat_close_input(&fmt_ctx);
av_frame_free(&frame);
av_frame_free(&filt_frame);