diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2012-10-14 10:03:07 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-14 16:04:10 +0200 |
commit | 572781b25f98f99f2255404810ac33168bf28482 (patch) | |
tree | f6c574d23280de63c189cc3df0ea1129c98c1f61 /libavcodec | |
parent | 6bf43441f0a77ed7a4ed0e40ef732ec11cedf73d (diff) | |
download | ffmpeg-572781b25f98f99f2255404810ac33168bf28482.tar.gz |
h264: fix parsing of old lossless profile (profile_idc == 144)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264_ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c index cdc6b079b6..2cf836524b 100644 --- a/libavcodec/h264_ps.c +++ b/libavcodec/h264_ps.c @@ -367,7 +367,7 @@ int ff_h264_decode_seq_parameter_set(H264Context *h){ if(sps->profile_idc == 100 || sps->profile_idc == 110 || sps->profile_idc == 122 || sps->profile_idc == 244 || sps->profile_idc == 44 || sps->profile_idc == 83 || sps->profile_idc == 86 || sps->profile_idc == 118 || - sps->profile_idc == 128 ) { + sps->profile_idc == 128 || sps->profile_idc == 144) { sps->chroma_format_idc= get_ue_golomb_31(&s->gb); if (sps->chroma_format_idc > 3U) { av_log(h->s.avctx, AV_LOG_ERROR, "chroma_format_idc %d is illegal\n", sps->chroma_format_idc); |