diff options
author | Janne Grunau <janne-ffmpeg@jannau.net> | 2011-02-01 21:56:13 +0100 |
---|---|---|
committer | Janne Grunau <janne-ffmpeg@jannau.net> | 2011-02-08 13:20:56 +0100 |
commit | 440b61691db2166abac3f58e01da1d4722f1f1e4 (patch) | |
tree | 0deeec7918c59c94789b1826600ab4ccd8a34d6d /libavcodec/h264.c | |
parent | 9409c3811c90975f2208216a0c5b820186e1e87b (diff) | |
download | ffmpeg-440b61691db2166abac3f58e01da1d4722f1f1e4.tar.gz |
h264: define FF_PROFILE_H264_HIGH_444 to the correct value
It was removed in fe9a3fb since it had the wrong value. Add profile name
for it.
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index b84430a1d7..e6f9ec9b8d 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -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" }, |