Browse Source

avcodec/h264_ps: Move truncation check from VUI to SPS

This more completely checks for truncation

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 32e06c485b)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4.9
Michael Niedermayer 11 years ago
parent
commit
cf80856cbc
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      libavcodec/h264_ps.c

+ 6
- 6
libavcodec/h264_ps.c View File

@@ -261,12 +261,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;
}

@@ -543,6 +537,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;



Loading…
Cancel
Save