mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
h264: 2nd try at getting sm2v working
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
def8588fb5
commit
039f4ff4c2
@ -430,7 +430,7 @@ int ff_h264_decode_seq_parameter_set(H264Context *h){
|
||||
|
||||
sps->ref_frame_count= get_ue_golomb_31(&s->gb);
|
||||
if (h->s.avctx->codec_tag == MKTAG('S', 'M', 'V', '2'))
|
||||
sps->ref_frame_count= 2;
|
||||
sps->ref_frame_count= FFMAX(2, sps->ref_frame_count);
|
||||
if(sps->ref_frame_count > MAX_PICTURE_COUNT-2 || sps->ref_frame_count > 16U){
|
||||
av_log(h->s.avctx, AV_LOG_ERROR, "too many reference frames\n");
|
||||
goto fail;
|
||||
|
Loading…
Reference in New Issue
Block a user