Commit 5571774f authored by l.gombos@samsung.com's avatar l.gombos@samsung.com

Fix the no proprietary codecs build for android.

Fix the android build when proprietary_codecs is 0 (USE_PROPRIETARY_CODECS is not defined).

Review URL: https://codereview.chromium.org/387863007

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282983 0039d316-1c4b-4281-b951-d872f2087c98
parent 7735dfb0
...@@ -25,7 +25,7 @@ static SupportedKeySystemResponse QueryKeySystemSupport( ...@@ -25,7 +25,7 @@ static SupportedKeySystemResponse QueryKeySystemSupport(
SupportedKeySystemResponse response; SupportedKeySystemResponse response;
request.key_system = key_system; request.key_system = key_system;
request.codecs = content::EME_CODEC_WEBM_ALL | content::EME_CODEC_MP4_ALL; request.codecs = content::EME_CODEC_ALL;
content::RenderThread::Get()->Send( content::RenderThread::Get()->Send(
new ChromeViewHostMsg_QueryKeySystemSupport(request, &response)); new ChromeViewHostMsg_QueryKeySystemSupport(request, &response));
DCHECK(!(response.compositing_codecs & ~content::EME_CODEC_ALL)) DCHECK(!(response.compositing_codecs & ~content::EME_CODEC_ALL))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment