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

Unified Diff: remoting/client/plugin/pepper_video_renderer_3d.cc

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: Better TODOs 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
« no previous file with comments | « ppapi/tests/test_video_encoder.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/pepper_video_renderer_3d.cc
diff --git a/remoting/client/plugin/pepper_video_renderer_3d.cc b/remoting/client/plugin/pepper_video_renderer_3d.cc
index 4c22b1439c6a824629c577d230bde08aef4a535b..2d89ee3348018b6015b881da4873d1e61550bc69 100644
--- a/remoting/client/plugin/pepper_video_renderer_3d.cc
+++ b/remoting/client/plugin/pepper_video_renderer_3d.cc
@@ -160,7 +160,7 @@ void PepperVideoRenderer3D::OnSessionConfig(
video_profile = PP_VIDEOPROFILE_VP8_ANY;
break;
case protocol::ChannelConfig::CODEC_VP9:
- video_profile = PP_VIDEOPROFILE_VP9_ANY;
+ video_profile = PP_VIDEOPROFILE_VP9_PROFILE3;
DaleCurtis 2016/03/09 18:49:47 Why?
servolk 2016/03/09 19:32:33 Well, previously we used VP9_ANY here, which meant
DaleCurtis 2016/03/09 21:48:47 I think your reasoning is sound, but was calling o
servolk 2016/03/09 21:52:40 Ok, I've made a change to use profile3 in ffmpeg_c
ddorwin 2016/03/09 22:20:05 IIUC, there is not currently a way to specify othe
servolk 2016/03/09 22:27:42 Yes, currently we won't use any other VP9 profiles
ddorwin 2016/03/09 23:30:09 My point is that any data that does not specify th
servolk 2016/03/09 23:42:10 I agree that most existing content is likely profi
servolk 2016/03/24 18:09:52 I've changed this to profile0 now, see the explana
break;
default:
NOTREACHED();
« no previous file with comments | « ppapi/tests/test_video_encoder.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698