]> git.sesse.net Git - ffmpeg/commitdiff
h264dec: fix dropped initial SEI recovery point
authorJohn Stebbins <stebbins@jetheaddev.com>
Thu, 23 Feb 2017 21:22:56 +0000 (14:22 -0700)
committerJohn Stebbins <stebbins@jetheaddev.com>
Fri, 24 Feb 2017 15:24:13 +0000 (08:24 -0700)
libavcodec/h264dec.c

index 5137039188bc238829e7a630667ff5a061b7ec23..6d7aa7b53ca4fbada29f041cdde1ff76cf4fd289 100644 (file)
@@ -452,7 +452,6 @@ void ff_h264_flush_change(H264Context *h)
     if (h->cur_pic_ptr)
         h->cur_pic_ptr->reference = 0;
     h->first_field = 0;
-    ff_h264_sei_uninit(&h->sei);
     h->recovery_frame = -1;
     h->frame_recovered = 0;
 }
@@ -466,6 +465,7 @@ static void flush_dpb(AVCodecContext *avctx)
     memset(h->delayed_pic, 0, sizeof(h->delayed_pic));
 
     ff_h264_flush_change(h);
+    ff_h264_sei_uninit(&h->sei);
 
     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++)
         ff_h264_unref_picture(h, &h->DPB[i]);