]> git.sesse.net Git - ffmpeg/commitdiff
doc/examples/filtering_audio: Remove setting deprecated refcounted_frames
authorJun Zhao <mypopydev@gmail.com>
Sat, 21 Apr 2018 07:36:59 +0000 (15:36 +0800)
committerJun Zhao <jun.zhao@intel.com>
Sun, 22 Apr 2018 07:39:22 +0000 (15:39 +0800)
When use new decode APIs(avcodec_send_packet/avcodec_receive_frame),
don't need to setting the deprecated field refcounted_frames.

Reviewed-by: wm4 <nfxjfg@googlemail.com>
Signed-off-by: Jun Zhao <mypopydev@gmail.com>
doc/examples/filtering_audio.c

index b109dbcb96d70e747a80a40de9334309852924e8..834b137cd93fb89b3e83fc8a15f18a5c5193c1b9 100644 (file)
@@ -74,7 +74,6 @@ static int open_input_file(const char *filename)
     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);
 
     /* init the audio decoder */
     if ((ret = avcodec_open2(dec_ctx, dec, NULL)) < 0) {