Browse Source

h264_ps: check log2_max_frame_num for validity.

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

+ 6
- 0
libavcodec/h264_ps.c View File

@@ -371,6 +371,12 @@ int ff_h264_decode_seq_parameter_set(H264Context *h){
}

sps->log2_max_frame_num= get_ue_golomb(&s->gb) + 4;
if (sps->log2_max_frame_num < 4 || sps->log2_max_frame_num > 16) {
av_log(h->s.avctx, AV_LOG_ERROR, "illegal log2_max_frame_num %d\n",
sps->log2_max_frame_num);
goto fail;
}

sps->poc_type= get_ue_golomb_31(&s->gb);

if(sps->poc_type == 0){ //FIXME #define


Loading…
Cancel
Save