diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-29 17:34:32 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-29 17:34:32 +0000 |
commit | 622b788650a636236c3842f1287126fc60fb80ed (patch) | |
tree | da3e6045ec78f3c4929a6f11779bb8ac21b5adb1 /media/base/media.h | |
parent | 3190f36c2f7ac99d06a07b3df1e12ac36fc11d08 (diff) | |
download | chromium_src-622b788650a636236c3842f1287126fc60fb80ed.zip chromium_src-622b788650a636236c3842f1287126fc60fb80ed.tar.gz chromium_src-622b788650a636236c3842f1287126fc60fb80ed.tar.bz2 |
VP8 decoder for chromoting
Added DecoderVp8 and unit test for chromoting.
TEST=remoting_unittests
BUG=50235
Review URL: http://codereview.chromium.org/3032047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60960 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/media.h')
-rw-r--r-- | media/base/media.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/media/base/media.h b/media/base/media.h index fd3269e..21dc6c2 100644 --- a/media/base/media.h +++ b/media/base/media.h @@ -27,12 +27,16 @@ bool InitializeOpenMaxLibrary(const FilePath& module_dir); // This is temporary to get the address of vpx_codec_vp8_cx_algo in FFmpeg. // This method should only be called after media library is loaded. - // TODO(hclam): Remove this after we have a getter function for the same // purpose in libvpx. -// See bug: http://code.google.com/p/webm/issues/detail?id=169 void* GetVp8CxAlgoAddress(); +// This is temporary to get the address of vpx_codec_vp8_dx_algo in FFmpeg. +// This method should only be called after media library is loaded. +// TODO(hclam): Remove this after we have a getter function for the same +// purpose in libvpx. +void* GetVp8DxAlgoAddress(); + } // namespace media #endif // MEDIA_BASE_MEDIA_H_ |