summaryrefslogtreecommitdiffstats
path: root/ppapi/examples
diff options
context:
space:
mode:
authorhalton.huo@intel.com <halton.huo@intel.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-30 20:05:15 +0000
committerhalton.huo@intel.com <halton.huo@intel.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-30 20:05:15 +0000
commita25864446a293a803a25bf5dd7ac036c299f732c (patch)
treeaf9f96f689b0388a481c39bcb18557f925898838 /ppapi/examples
parent3ae7075693f9e267187b5272aace5858f679c94a (diff)
downloadchromium_src-a25864446a293a803a25bf5dd7ac036c299f732c.zip
chromium_src-a25864446a293a803a25bf5dd7ac036c299f732c.tar.gz
chromium_src-a25864446a293a803a25bf5dd7ac036c299f732c.tar.bz2
Use libva profile VAProfileH264Main instead of VAProfileH264Baseline.
The test data file of video_decode is in fact MAIN, not BASELINE. BUG=244382 TEST=ppapi_example_video_decode Review URL: https://chromiumcodereview.appspot.com/16090005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203207 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/examples')
-rw-r--r--ppapi/examples/video_decode/video_decode.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/examples/video_decode/video_decode.cc b/ppapi/examples/video_decode/video_decode.cc
index 9758f21..e6bcff8 100644
--- a/ppapi/examples/video_decode/video_decode.cc
+++ b/ppapi/examples/video_decode/video_decode.cc
@@ -270,7 +270,7 @@ void VideoDecodeDemoInstance::InitializeDecoders() {
for (int i = 0; i < kNumDecoders; ++i) {
DecoderClient* client = new DecoderClient(
this, new pp::VideoDecoder_Dev(
- this, *context_, PP_VIDEODECODER_H264PROFILE_BASELINE));
+ this, *context_, PP_VIDEODECODER_H264PROFILE_MAIN));
assert(!client->decoder()->is_null());
assert(video_decoders_.insert(std::make_pair(
client->decoder()->pp_resource(), client)).second);