diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-01-01 16:25:01 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-01-01 16:25:50 +0100 |
commit | e76064172098582148665df15484ae5d4e5194a9 (patch) | |
tree | 4b4fc134ad23cf84c95393c3d6508af767da8194 /libavcodec/profiles.c | |
parent | 5e8b05345243cdec3ca01116ce130da812ffed3d (diff) | |
download | ffmpeg-e76064172098582148665df15484ae5d4e5194a9.tar.gz |
lavc: add vp9 profiles to AVCodecDescriptor
Diffstat (limited to 'libavcodec/profiles.c')
-rw-r--r-- | libavcodec/profiles.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/profiles.c b/libavcodec/profiles.c index fa6baedfeb..94069fd692 100644 --- a/libavcodec/profiles.c +++ b/libavcodec/profiles.c @@ -121,4 +121,12 @@ const AVProfile ff_vc1_profiles[] = { { FF_PROFILE_UNKNOWN }, }; +const AVProfile ff_vp9_profiles[] = { + { FF_PROFILE_VP9_0, "Profile 0" }, + { FF_PROFILE_VP9_1, "Profile 1" }, + { FF_PROFILE_VP9_2, "Profile 2" }, + { FF_PROFILE_VP9_3, "Profile 3" }, + { FF_PROFILE_UNKNOWN }, +}; + #endif /* !CONFIG_SMALL */ |