OSDN Git Service

avcodec/h264_ps: Move truncation check from VUI to SPS
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 8 Apr 2015 20:18:35 +0000 (22:18 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 8 Apr 2015 20:19:56 +0000 (22:19 +0200)
This more completely checks for truncation

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

index 362b8ea..ac316ac 100644 (file)
@@ -241,12 +241,6 @@ static inline int decode_vui_parameters(H264Context *h, SPS *sps)
         }
     }
 
-    if (get_bits_left(&h->gb) < 0) {
-        av_log(h->avctx, AV_LOG_ERROR,
-               "Overread VUI by %d bits\n", -get_bits_left(&h->gb));
-        return AVERROR_INVALIDDATA;
-    }
-
     return 0;
 }
 
@@ -523,6 +517,12 @@ int ff_h264_decode_seq_parameter_set(H264Context *h)
             goto fail;
     }
 
+    if (get_bits_left(&h->gb) < 0) {
+        av_log(h->avctx, AV_LOG_ERROR,
+               "Overread %s by %d bits\n", sps->vui_parameters_present_flag ? "VUI" : "SPS", -get_bits_left(&h->gb));
+        goto fail;
+    }
+
     if (!sps->sar.den)
         sps->sar.den = 1;