summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-30 20:51:07 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-30 20:57:31 +0100
commit285c5f683806d59eeb5ebea0b65f14727fdb6c8c (patch)
tree4343d4524d9967914ba02b9c75eef96c6e8ed042 /libavcodec/h264.c
parent11c3381ce3c353a4dadf9def6232e7604b0c5d2b (diff)
h264: move last_slice_type reset into decode_slice_header
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 34bb3f2f8a..35387fac5f 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;