mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-20 14:31:09 +00:00
examples/filtering_audio: enable ref counted frames
Fixes accessing freed memory Signe-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9db6aaeb2c
commit
f2619cbd61
@ -70,6 +70,7 @@ static int open_input_file(const char *filename)
|
|||||||
}
|
}
|
||||||
audio_stream_index = ret;
|
audio_stream_index = ret;
|
||||||
dec_ctx = fmt_ctx->streams[audio_stream_index]->codec;
|
dec_ctx = fmt_ctx->streams[audio_stream_index]->codec;
|
||||||
|
av_opt_set_int(dec_ctx, "refcounted_frames", 1, 0);
|
||||||
|
|
||||||
/* init the audio decoder */
|
/* init the audio decoder */
|
||||||
if ((ret = avcodec_open2(dec_ctx, dec, NULL)) < 0) {
|
if ((ret = avcodec_open2(dec_ctx, dec, NULL)) < 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user