mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 17:32:06 +00:00
h264: define FF_PROFILE_H264_HIGH_444 to the correct value
It was removed infe9a3fb
since it had the wrong value. Add profile name for it. (cherry picked from commit440b61691d
)
This commit is contained in:
parent
9b8bb626dc
commit
154f7bb062
@ -2281,6 +2281,7 @@ typedef struct AVCodecContext {
|
||||
#define FF_PROFILE_H264_HIGH_10_INTRA (110|FF_PROFILE_H264_INTRA)
|
||||
#define FF_PROFILE_H264_HIGH_422 122
|
||||
#define FF_PROFILE_H264_HIGH_422_INTRA (122|FF_PROFILE_H264_INTRA)
|
||||
#define FF_PROFILE_H264_HIGH_444 144
|
||||
#define FF_PROFILE_H264_HIGH_444_PREDICTIVE 244
|
||||
#define FF_PROFILE_H264_HIGH_444_INTRA (244|FF_PROFILE_H264_INTRA)
|
||||
#define FF_PROFILE_H264_CAVLC_444 44
|
||||
|
@ -3396,6 +3396,7 @@ static const AVProfile profiles[] = {
|
||||
{ FF_PROFILE_H264_HIGH_10_INTRA, "High 10 Intra" },
|
||||
{ FF_PROFILE_H264_HIGH_422, "High 4:2:2" },
|
||||
{ FF_PROFILE_H264_HIGH_422_INTRA, "High 4:2:2 Intra" },
|
||||
{ FF_PROFILE_H264_HIGH_444, "High 4:4:4" },
|
||||
{ FF_PROFILE_H264_HIGH_444_PREDICTIVE, "High 4:4:4 Predictive" },
|
||||
{ FF_PROFILE_H264_HIGH_444_INTRA, "High 4:4:4 Intra" },
|
||||
{ FF_PROFILE_H264_CAVLC_444, "CAVLC 4:4:4" },
|
||||
|
Loading…
Reference in New Issue
Block a user