summaryrefslogtreecommitdiffstats
path: root/media/base/media.h
diff options
context:
space:
mode:
Diffstat (limited to 'media/base/media.h')
-rw-r--r--media/base/media.h8
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_