]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/h264_parser: Avoid adding SEI to the global header
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 12 Nov 2014 02:27:26 +0000 (03:27 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 12 Nov 2014 02:28:15 +0000 (03:28 +0100)
Only consider SEI when no PPS has been found yet

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/h264_parser.c

index d0592ad5f81eb734e74c767f4860048085e6be77..6e87efabe8babef2a766b103534a0604faba20a1 100644 (file)
@@ -519,16 +519,19 @@ static int h264_split(AVCodecContext *avctx,
     int i;
     uint32_t state = -1;
     int has_sps    = 0;
+    int has_pps    = 0;
 
     for (i = 0; i <= buf_size; i++) {
         if ((state & 0xFFFFFF1F) == 0x107)
             has_sps = 1;
+        if ((state & 0xFFFFFF1F) == 0x108)
+            has_pps = 1;
         /*  if ((state&0xFFFFFF1F) == 0x101 ||
          *     (state&0xFFFFFF1F) == 0x102 ||
          *     (state&0xFFFFFF1F) == 0x105) {
          *  }
          */
-        if ((state & 0xFFFFFF00) == 0x100 && (state & 0xFFFFFF1F) != 0x106 &&
+        if ((state & 0xFFFFFF00) == 0x100 && ((state & 0xFFFFFF1F) != 0x106 || has_pps) &&
             (state & 0xFFFFFF1F) != 0x107 && (state & 0xFFFFFF1F) != 0x108 &&
             (state & 0xFFFFFF1F) != 0x109 && (state & 0xFFFFFF1F) != 0x10d &&
             (state & 0xFFFFFF1F) != 0x10f) {