[FFmpeg-cvslog] h264: move last_slice_type reset into decode_slice_header

Michael Niedermayer git at videolan.org
Sat Mar 30 22:25:19 CET 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Mar 30 20:51:07 2013 +0100| [285c5f683806d59eeb5ebea0b65f14727fdb6c8c] | committer: Michael Niedermayer

h264: move last_slice_type reset into decode_slice_header

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

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

 libavcodec/h264.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 34bb3f2..35387fa 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -1772,9 +1772,7 @@ static int decode_update_thread_context(AVCodecContext *dst,
     copy_picture_range(h->delayed_pic, h1->delayed_pic,
                        MAX_DELAYED_PIC_COUNT + 2, h, h1);
 
-    h->last_slice_type = h1->last_slice_type;
     h->sync            = h1->sync;
-    memcpy(h->last_ref_count, h1->last_ref_count, sizeof(h->last_ref_count));
 
     if (context_reinitialized)
         h264_set_parameter_from_sps(h);
@@ -3560,6 +3558,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
             memset(h->slice_table, -1,
                 (h->mb_height * h->mb_stride - 1) * sizeof(*h->slice_table));
         }
+        h0->last_slice_type = -1;
     }
     if (h != h0 && (ret = clone_slice(h, h0)) < 0)
         return ret;



More information about the ffmpeg-cvslog mailing list