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(); |