diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2012-10-14 10:03:07 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-03-21 23:57:25 +0100 |
commit | 9b481654e1513475b133b45677d85516080d64fb (patch) | |
tree | 15a0f65bb611b67dbc5887bf64eaad583c36008e | |
parent | f2310fff5c7bf1ec815ba7ae6a87fc872a0d82aa (diff) | |
download | ffmpeg-9b481654e1513475b133b45677d85516080d64fb.tar.gz |
h264: fix parsing of old lossless profile (profile_idc == 144)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 572781b25f98f99f2255404810ac33168bf28482)
-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 02654c139a..8df7f70265 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); |