diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-23 02:11:44 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-23 02:11:44 +0000 |
commit | 71a418ccaceeea49dc8049b01a17a501e8070157 (patch) | |
tree | 28a9be5d04adb0d99e5acc28b037eda5933e8542 /media/omx | |
parent | 13347d1506a5a5174bbe39099dc93041f1d0a497 (diff) | |
download | chromium_src-71a418ccaceeea49dc8049b01a17a501e8070157.zip chromium_src-71a418ccaceeea49dc8049b01a17a501e8070157.tar.gz chromium_src-71a418ccaceeea49dc8049b01a17a501e8070157.tar.bz2 |
Use OpenMAX for video decoding in the media pipeline
This patch is to fix some issues when using OpenMAX video decoder
in the media pipeline. It will enable player_x11 to decode using
OpenMAX.
This still requires some more work to enable Chrome to use
OpenMAX for decoding.
Review URL: http://codereview.chromium.org/549124
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36936 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/omx')
-rw-r--r-- | media/omx/omx_codec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/media/omx/omx_codec.h b/media/omx/omx_codec.h index bb98a3d..e49fb4f 100644 --- a/media/omx/omx_codec.h +++ b/media/omx/omx_codec.h @@ -169,6 +169,8 @@ class OmxCodec : public base::RefCountedThreadSafe<OmxCodec> { }; }; + // Initialize an OmxCodec object that runs on |message_loop|. It is + // guaranteed that callbacks are executed on this message loop. explicit OmxCodec(MessageLoop* message_loop); virtual ~OmxCodec(); |