summaryrefslogtreecommitdiffstats
path: root/media/base/media.h
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-20 20:55:06 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-20 20:55:06 +0000
commit51ce34eab4a225db84827701a42ccad0850edcd4 (patch)
treeee4d4ceee9c7e8cdd3b788b68d427a427c6b6e88 /media/base/media.h
parent1045d07f06e346e7513a50a96d115446c3943bb8 (diff)
downloadchromium_src-51ce34eab4a225db84827701a42ccad0850edcd4.zip
chromium_src-51ce34eab4a225db84827701a42ccad0850edcd4.tar.gz
chromium_src-51ce34eab4a225db84827701a42ccad0850edcd4.tar.bz2
Remove GetVp8CxAlgoAddress hack
libvpx has introduced vpx_codec_vp8_cx() and vpx_codec_vp8_dx() use them instead. BUG=None TEST=None Review URL: http://codereview.chromium.org/5831006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69745 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/media.h')
-rw-r--r--media/base/media.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/media/base/media.h b/media/base/media.h
index 21dc6c2..3d1a83a 100644
--- a/media/base/media.h
+++ b/media/base/media.h
@@ -25,18 +25,6 @@ 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.
-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_