Module: libav
Branch: release/12
Commit: ddfec6f07431d1f354726a6069f4fa24162ac250

Author:    Anton Khirnov <[email protected]>
Committer: Sean McGovern <[email protected]>
Date:      Wed Dec 28 11:05:25 2016 +0100

h264dec: initialize field_started to 0 on each decode call

It might be incorrectly set to 1 if the previous call exited with an
error.

Bug-Id: 1019
CC: [email protected]
(cherry picked from commit b76f6a76c6312dc551d7c37c6ded36bea7973c74)
Signed-off-by: Sean McGovern <[email protected]>

---

 libavcodec/h264dec.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c
index 6c50ce3..d918fb9 100644
--- a/libavcodec/h264dec.c
+++ b/libavcodec/h264dec.c
@@ -520,6 +520,7 @@ static int decode_nal_units(H264Context *h, const uint8_t 
*buf, int buf_size)
 
     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS)) {
         h->current_slice = 0;
+        h->field_started = 0;
         if (!h->first_field)
             h->cur_pic_ptr = NULL;
         ff_h264_sei_uninit(&h->sei);

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to