Commit 7f17f128 authored by Francois Cartegnie's avatar Francois Cartegnie

packetizer: h264: fix sps parsing for High444

Old profile, out of spec
ref: https://ffmpeg.org/pipermail/ffmpeg-devel/2012-October/132400.html

new sample:
samples/V-codecs/h264/lossless_timecode_HIGH444_IDC144.h264
parent 891fbd39
...@@ -423,6 +423,7 @@ int h264_parse_sps( const uint8_t *p_sps_buf, int i_sps_size, ...@@ -423,6 +423,7 @@ int h264_parse_sps( const uint8_t *p_sps_buf, int i_sps_size,
if( i_profile_idc == PROFILE_H264_HIGH || if( i_profile_idc == PROFILE_H264_HIGH ||
i_profile_idc == PROFILE_H264_HIGH_10 || i_profile_idc == PROFILE_H264_HIGH_10 ||
i_profile_idc == PROFILE_H264_HIGH_422 || i_profile_idc == PROFILE_H264_HIGH_422 ||
i_profile_idc == PROFILE_H264_HIGH_444 || /* Old one, no longer on spec */
i_profile_idc == PROFILE_H264_HIGH_444_PREDICTIVE || i_profile_idc == PROFILE_H264_HIGH_444_PREDICTIVE ||
i_profile_idc == PROFILE_H264_CAVLC_INTRA || i_profile_idc == PROFILE_H264_CAVLC_INTRA ||
i_profile_idc == PROFILE_H264_SVC_BASELINE || i_profile_idc == PROFILE_H264_SVC_BASELINE ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment