diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-05-14 17:15:46 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-06-12 20:27:53 +0200 |
commit | 90f469aa2b98a868cdbe35170c24272de10e1341 (patch) | |
tree | 21ebd7632a2e52995fd8eebfc8736ede90fea853 /libavcodec/profiles.c | |
parent | 61f168ae348f94f39e7afc6971654455a5de0e4d (diff) | |
download | ffmpeg-90f469aa2b98a868cdbe35170c24272de10e1341.tar.gz |
lavc: add H.264 MVC profiles
Diffstat (limited to 'libavcodec/profiles.c')
-rw-r--r-- | libavcodec/profiles.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/profiles.c b/libavcodec/profiles.c index c03106c8e1..d5c5df2e56 100644 --- a/libavcodec/profiles.c +++ b/libavcodec/profiles.c @@ -59,6 +59,8 @@ const AVProfile ff_h264_profiles[] = { { 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" }, + { FF_PROFILE_H264_MULTIVIEW_HIGH, "Multiview High" }, + { FF_PROFILE_H264_STEREO_HIGH, "Stereo High" }, { FF_PROFILE_UNKNOWN }, }; |