Commit c3706bc2 authored by Clément Bœsch's avatar Clément Bœsch

doc/examples/filtering_*: switch to codecpar

parent c0628919
...@@ -69,7 +69,12 @@ static int open_input_file(const char *filename) ...@@ -69,7 +69,12 @@ static int open_input_file(const char *filename)
return ret; return ret;
} }
audio_stream_index = ret; audio_stream_index = ret;
dec_ctx = fmt_ctx->streams[audio_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[audio_stream_index]->codecpar);
av_opt_set_int(dec_ctx, "refcounted_frames", 1, 0); av_opt_set_int(dec_ctx, "refcounted_frames", 1, 0);
/* init the audio decoder */ /* init the audio decoder */
...@@ -281,7 +286,7 @@ int main(int argc, char **argv) ...@@ -281,7 +286,7 @@ int main(int argc, char **argv)
} }
end: end:
avfilter_graph_free(&filter_graph); avfilter_graph_free(&filter_graph);
avcodec_close(dec_ctx); avcodec_free_context(&dec_ctx);
avformat_close_input(&fmt_ctx); avformat_close_input(&fmt_ctx);
av_frame_free(&frame); av_frame_free(&frame);
av_frame_free(&filt_frame); av_frame_free(&filt_frame);
......
...@@ -72,7 +72,12 @@ static int open_input_file(const char *filename) ...@@ -72,7 +72,12 @@ static int open_input_file(const char *filename)
return ret; return ret;
} }
video_stream_index = 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); av_opt_set_int(dec_ctx, "refcounted_frames", 1, 0);
/* init the video decoder */ /* init the video decoder */
...@@ -266,7 +271,7 @@ int main(int argc, char **argv) ...@@ -266,7 +271,7 @@ int main(int argc, char **argv)
} }
end: end:
avfilter_graph_free(&filter_graph); avfilter_graph_free(&filter_graph);
avcodec_close(dec_ctx); avcodec_free_context(&dec_ctx);
avformat_close_input(&fmt_ctx); avformat_close_input(&fmt_ctx);
av_frame_free(&frame); av_frame_free(&frame);
av_frame_free(&filt_frame); av_frame_free(&filt_frame);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment