summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-05-13 14:42:45 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-05-13 14:42:45 -0700
commit4a17238bc9e48056653aa50b85afd4f06d265c90 (patch)
treec4b5561a6ff85e287ea4ac78a129ee9c686c6cf3 /vp9
parent089ed30d072e6f9ebd2403d84569c64a90ce190c (diff)
downloadlibvpx-4a17238bc9e48056653aa50b85afd4f06d265c90.tar
libvpx-4a17238bc9e48056653aa50b85afd4f06d265c90.tar.gz
libvpx-4a17238bc9e48056653aa50b85afd4f06d265c90.tar.bz2
libvpx-4a17238bc9e48056653aa50b85afd4f06d265c90.zip
Moving vp9_decode_frame declaration to vp9_decodframe.h.
Change-Id: Ia7a772718a4b11b413c36d4280df8668e19c9084
Diffstat (limited to 'vp9')
-rw-r--r--vp9/decoder/vp9_decodframe.h2
-rw-r--r--vp9/decoder/vp9_onyxd_int.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/vp9/decoder/vp9_decodframe.h b/vp9/decoder/vp9_decodframe.h
index 3aaae65bd..00b6d674d 100644
--- a/vp9/decoder/vp9_decodframe.h
+++ b/vp9/decoder/vp9_decodframe.h
@@ -13,7 +13,9 @@
#define VP9_DECODER_VP9_DECODFRAME_H_
struct VP9Common;
+struct VP9Decompressor;
void vp9_init_dequantizer(struct VP9Common *pc);
+int vp9_decode_frame(struct VP9Decompressor *cpi, const uint8_t **p_data_end);
#endif // VP9_DECODER_VP9_DECODFRAME_H_
diff --git a/vp9/decoder/vp9_onyxd_int.h b/vp9/decoder/vp9_onyxd_int.h
index a7d444e15..86985700c 100644
--- a/vp9/decoder/vp9_onyxd_int.h
+++ b/vp9/decoder/vp9_onyxd_int.h
@@ -41,8 +41,6 @@ typedef struct VP9Decompressor {
int initial_height;
} VP9D_COMP;
-int vp9_decode_frame(VP9D_COMP *cpi, const uint8_t **p_data_end);
-
#if CONFIG_DEBUG
#define CHECK_MEM_ERROR(lval,expr) do {\