| Index: media/ffmpeg/ffmpeg_common.cc
|
| diff --git a/media/ffmpeg/ffmpeg_common.cc b/media/ffmpeg/ffmpeg_common.cc
|
| index 5f52fe95bad8f2d03deb889a2e0ef88b7016e32f..3b92d3db706728c61084a88bf284bb9e56d748f3 100644
|
| --- a/media/ffmpeg/ffmpeg_common.cc
|
| +++ b/media/ffmpeg/ffmpeg_common.cc
|
| @@ -382,9 +382,9 @@ void AVStreamToVideoDecoderConfig(
|
|
|
| VideoCodecProfile profile = VIDEO_CODEC_PROFILE_UNKNOWN;
|
| if (codec == kCodecVP8)
|
| - profile = VP8PROFILE_MAIN;
|
| + profile = VP8PROFILE_ANY;
|
| else if (codec == kCodecVP9)
|
| - profile = VP9PROFILE_MAIN;
|
| + profile = VP9PROFILE_ANY;
|
| else
|
| profile = ProfileIDToVideoCodecProfile(stream->codec->profile);
|
|
|
|
|