Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Unified Diff: ppapi/c/pp_codecs.h

Issue 1769593002: Add 4 VP9 profiles to the media::VideoCodecProfile enum. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@hevc-codec-7
Patch Set: Use VP9 profile0 by default instead of profile3 Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/c/pp_codecs.h
diff --git a/ppapi/c/pp_codecs.h b/ppapi/c/pp_codecs.h
index 10d72d0d9020cd17d28bc92e1147c91cd885b588..622a6401a2021cc5e505a9d3629a040847e7928c 100644
--- a/ppapi/c/pp_codecs.h
+++ b/ppapi/c/pp_codecs.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From pp_codecs.idl modified Fri Sep 18 10:42:55 2015. */
+/* From pp_codecs.idl modified Fri Mar 4 11:31:56 2016. */
#ifndef PPAPI_C_PP_CODECS_H_
#define PPAPI_C_PP_CODECS_H_
@@ -38,8 +38,11 @@ typedef enum {
PP_VIDEOPROFILE_H264STEREOHIGH = 9,
PP_VIDEOPROFILE_H264MULTIVIEWHIGH = 10,
PP_VIDEOPROFILE_VP8_ANY = 11,
- PP_VIDEOPROFILE_VP9_ANY = 12,
- PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP9_ANY
+ PP_VIDEOPROFILE_VP9_PROFILE0 = 12,
+ PP_VIDEOPROFILE_VP9_PROFILE1 = 13,
+ PP_VIDEOPROFILE_VP9_PROFILE2 = 14,
+ PP_VIDEOPROFILE_VP9_PROFILE3 = 15,
+ PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP9_PROFILE3
} PP_VideoProfile;
/**

Powered by Google App Engine
This is Rietveld 408576698