]> git.sesse.net Git - ffmpeg/commitdiff
cavsdec: check for value in get_ue_code()
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 24 Jan 2013 20:55:12 +0000 (21:55 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 24 Jan 2013 20:55:12 +0000 (21:55 +0100)
Fixes integer overflow and prints an error in case the value is
invalid.

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

index 9450ed137f8324f41fac182627ed957cab198935..fa60d6c0eb8450e537eae5beac7b8fb527e98d6e 100644 (file)
@@ -510,11 +510,15 @@ static inline void mv_pred_sym(AVSContext *h, cavs_vector *src,
 /** kth-order exponential golomb code */
 static inline int get_ue_code(GetBitContext *gb, int order)
 {
+    unsigned ret = get_ue_golomb(gb);
+    if (ret >= ((1U<<31)>>order)) {
+        av_log(NULL, AV_LOG_ERROR, "get_ue_code: value too larger\n");
+        return AVERROR_INVALIDDATA;
+    }
     if (order) {
-        int ret = get_ue_golomb(gb) << order;
-        return ret + get_bits(gb, order);
+        return (ret<<order) + get_bits(gb, order);
     }
-    return get_ue_golomb(gb);
+    return ret;
 }
 
 static inline int dequant(AVSContext *h, int16_t *level_buf, uint8_t *run_buf,