[FFmpeg-devel] [PATCH 4/6] h264/field_end move progress report code after error concealment.
Michael Niedermayer
michaelni at gmx.at
Tue Feb 19 20:48:03 CET 2013
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
---
libavcodec/h264.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 8969d5a..5f8619d 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2710,10 +2710,6 @@ static int field_end(H264Context *h, int in_setup)
int err = 0;
h->mb_y = 0;
- if (!in_setup && !h->droppable)
- ff_thread_report_progress(&h->cur_pic_ptr->f, INT_MAX,
- h->picture_structure == PICT_BOTTOM_FIELD);
-
if (CONFIG_H264_VDPAU_DECODER &&
h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
ff_vdpau_h264_set_reference_frames(h);
@@ -2757,6 +2753,9 @@ static int field_end(H264Context *h, int in_setup)
h->er.next_pic = h->ref_count[1] ? &h->ref_list[1][0] : NULL;
ff_er_frame_end(&h->er);
}
+ if (!in_setup && !h->droppable)
+ ff_thread_report_progress(&h->cur_pic_ptr->f, INT_MAX,
+ h->picture_structure == PICT_BOTTOM_FIELD);
emms_c();
h->current_slice = 0;
--
1.7.9.5
More information about the ffmpeg-devel
mailing list