You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Merge commit '282c6a1a0ef3e8c8e180c15b39cfe5b89704d848'
* commit '282c6a1a0ef3e8c8e180c15b39cfe5b89704d848': mpegvideo: make ff_release_unused_pictures() static Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -1359,16 +1359,14 @@ av_cold void ff_init_vlc_rl(RLTable *rl)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ff_release_unused_pictures(MpegEncContext*s, int remove_current)
|
static void release_unused_pictures(MpegEncContext *s)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
/* release non reference frames */
|
/* release non reference frames */
|
||||||
for (i = 0; i < MAX_PICTURE_COUNT; i++) {
|
for (i = 0; i < MAX_PICTURE_COUNT; i++) {
|
||||||
if (!s->picture[i].reference &&
|
if (!s->picture[i].reference)
|
||||||
(remove_current || &s->picture[i] != s->current_picture_ptr)) {
|
|
||||||
ff_mpeg_unref_picture(s, &s->picture[i]);
|
ff_mpeg_unref_picture(s, &s->picture[i]);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1492,7 +1490,7 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
|
|||||||
ff_mpeg_unref_picture(s, &s->current_picture);
|
ff_mpeg_unref_picture(s, &s->current_picture);
|
||||||
|
|
||||||
if (!s->encoding) {
|
if (!s->encoding) {
|
||||||
ff_release_unused_pictures(s, 1);
|
release_unused_pictures(s);
|
||||||
|
|
||||||
if (s->current_picture_ptr &&
|
if (s->current_picture_ptr &&
|
||||||
s->current_picture_ptr->f.buf[0] == NULL) {
|
s->current_picture_ptr->f.buf[0] == NULL) {
|
||||||
|
@@ -824,7 +824,6 @@ void ff_print_debug_info2(AVCodecContext *avctx, Picture *p, AVFrame *pict, uint
|
|||||||
int ff_mpv_export_qp_table(MpegEncContext *s, AVFrame *f, Picture *p, int qp_type);
|
int ff_mpv_export_qp_table(MpegEncContext *s, AVFrame *f, Picture *p, int qp_type);
|
||||||
|
|
||||||
void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix);
|
void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix);
|
||||||
void ff_release_unused_pictures(MpegEncContext *s, int remove_current);
|
|
||||||
int ff_find_unused_picture(MpegEncContext *s, int shared);
|
int ff_find_unused_picture(MpegEncContext *s, int shared);
|
||||||
void ff_denoise_dct(MpegEncContext *s, int16_t *block);
|
void ff_denoise_dct(MpegEncContext *s, int16_t *block);
|
||||||
int ff_update_duplicate_context(MpegEncContext *dst, MpegEncContext *src);
|
int ff_update_duplicate_context(MpegEncContext *dst, MpegEncContext *src);
|
||||||
|
Reference in New Issue
Block a user