diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-28 22:19:48 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-28 22:19:48 +0000 |
commit | df10bf173f91818f1f03d409ec8d60265b44675f (patch) | |
tree | 27dc201712833ce527da84b15e0e4df73bdd56ec /media/base/media.h | |
parent | b045a7405237ec931bf137f2c555960fa64a9523 (diff) | |
download | chromium_src-df10bf173f91818f1f03d409ec8d60265b44675f.zip chromium_src-df10bf173f91818f1f03d409ec8d60265b44675f.tar.gz chromium_src-df10bf173f91818f1f03d409ec8d60265b44675f.tar.bz2 |
Implement VP8 encoder for chromoting
Added EncoderVp8 with test for chromoting.
TEST=remoting_unittests
BUG=50235
Review URL: http://codereview.chromium.org/3005036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/media.h')
-rw-r--r-- | media/base/media.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/media/base/media.h b/media/base/media.h index 3d1a83a..fd3269e 100644 --- a/media/base/media.h +++ b/media/base/media.h @@ -25,6 +25,14 @@ bool InitializeMediaLibrary(const FilePath& module_dir); // Returns true if OpenMAX was successfully initialized and loaded. 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(); + } // namespace media #endif // MEDIA_BASE_MEDIA_H_ |