[FFmpeg-cvslog] h264: Fix code to also handle pix format changes.

Michael Niedermayer git at videolan.org
Thu Dec 20 12:57:29 CET 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Dec 20 12:52:16 2012 +0100| [a9275b4f6938ef5954a7c3d5b86787eac600611c] | committer: Michael Niedermayer

h264: Fix code to also handle pix format changes.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a9275b4f6938ef5954a7c3d5b86787eac600611c
---

 libavcodec/h264.c |   11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index a44e7b6..a312325 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2730,6 +2730,13 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
         h->current_sps_id = h->pps.sps_id;
         h->sps            = *h0->sps_buffers[h->pps.sps_id];
 
+        if (s->mb_width  != h->sps.mb_width ||
+            s->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) ||
+            s->avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
+            h->cur_chroma_format_idc != h->sps.chroma_format_idc
+        )
+            needs_reinit = 1;
+
         if ((ret = h264_set_parameter_from_sps(h)) < 0)
             return ret;
     }
@@ -2738,10 +2745,6 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
     s->avctx->level   = h->sps.level_idc;
     s->avctx->refs    = h->sps.ref_frame_count;
 
-    if (s->mb_width  != h->sps.mb_width ||
-        s->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag))
-        needs_reinit = 1;
-
     must_reinit = (s->context_initialized &&
                     (   16*h->sps.mb_width != s->avctx->coded_width
                      || 16*h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) != s->avctx->coded_height



More information about the ffmpeg-cvslog mailing list