[FFmpeg-cvslog] h264: fix parsing of old lossless profile (profile_idc == 144)
Hendrik Leppkes
git at videolan.org
Sun Oct 14 16:51:10 CEST 2012
ffmpeg | branch: master | Hendrik Leppkes <h.leppkes at gmail.com> | Sun Oct 14 10:03:07 2012 +0200| [572781b25f98f99f2255404810ac33168bf28482] | committer: Michael Niedermayer
h264: fix parsing of old lossless profile (profile_idc == 144)
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=572781b25f98f99f2255404810ac33168bf28482
---
libavcodec/h264_ps.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c
index cdc6b07..2cf8365 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);
More information about the ffmpeg-cvslog
mailing list