mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Merge commit '985f34b756'
* commit '985f34b756':
utils: fix avcodec_flush_buffers pre-reference counting compatibility
Conflicts:
libavcodec/utils.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
a4a2e894fc
1 changed files with 3 additions and 0 deletions
|
|
@ -2666,6 +2666,9 @@ void avcodec_flush_buffers(AVCodecContext *avctx)
|
|||
|
||||
avctx->pts_correction_last_pts =
|
||||
avctx->pts_correction_last_dts = INT64_MIN;
|
||||
|
||||
if (!avctx->refcounted_frames)
|
||||
av_frame_unref(&avctx->internal->to_free);
|
||||
}
|
||||
|
||||
int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue