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

Unified Diff: ppapi/api/pp_codecs.idl

Issue 418193003: Using PROFILE_ANY for vp8 and vp9 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing compile failures Created 6 years, 5 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/api/pp_codecs.idl
diff --git a/ppapi/api/pp_codecs.idl b/ppapi/api/pp_codecs.idl
index 2558671c5ac9cfd6f55b4ee4f4492c7f2c5378d6..08578c00b438b9e54345acc3678ad0e62bf8ab40 100644
--- a/ppapi/api/pp_codecs.idl
+++ b/ppapi/api/pp_codecs.idl
@@ -18,9 +18,9 @@ enum PP_VideoProfile {
PP_VIDEOPROFILE_H264SCALABLEHIGH = 8,
PP_VIDEOPROFILE_H264STEREOHIGH = 9,
PP_VIDEOPROFILE_H264MULTIVIEWHIGH = 10,
- PP_VIDEOPROFILE_VP8MAIN = 11,
- PP_VIDEOPROFILE_VP9MAIN = 12,
- PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP9MAIN
+ PP_VIDEOPROFILE_VP8PROFILE_UNSPECIFIED = 11,
teravest 2014/07/31 15:35:28 Since these are only used by a dev channel API (PP
dmichael (off chromium) 2014/07/31 17:31:49 Totally fine here. Wouldn't even break backwards-c
bbudge 2014/07/31 18:11:15 Naming suggestion - this is a little redundant. Ho
+ PP_VIDEOPROFILE_VP9PROFILE_UNSPECIFIED = 12,
+ PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP9PROFILE_UNSPECIFIED
};
/**

Powered by Google App Engine
This is Rietveld 408576698