summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_decodeframe.h
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2013-11-15 12:48:43 -0800
committerYaowu Xu <yaowu@google.com>2013-11-15 12:48:43 -0800
commit49cbe4580d4f02cd55a72c6442f33a249321e605 (patch)
tree9ff8756e24ca76cdf0438ef4ba300480423b9041 /vp9/decoder/vp9_decodeframe.h
parent6f25c15d231b0ceda21fa9aa67c1bc4b9fb13159 (diff)
downloadlibvpx-49cbe4580d4f02cd55a72c6442f33a249321e605.tar
libvpx-49cbe4580d4f02cd55a72c6442f33a249321e605.tar.gz
libvpx-49cbe4580d4f02cd55a72c6442f33a249321e605.tar.bz2
libvpx-49cbe4580d4f02cd55a72c6442f33a249321e605.zip
Renamed two files
from vp9_decodframe.{c,h} to vp9_decodeframe.{c,h} Change-Id: I21ac4b14fc90246e3f16bd90c52c12d126d791f8
Diffstat (limited to 'vp9/decoder/vp9_decodeframe.h')
-rw-r--r--vp9/decoder/vp9_decodeframe.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/vp9/decoder/vp9_decodeframe.h b/vp9/decoder/vp9_decodeframe.h
new file mode 100644
index 000000000..7245a9845
--- /dev/null
+++ b/vp9/decoder/vp9_decodeframe.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+
+#ifndef VP9_DECODER_VP9_DECODEFRAME_H_
+#define VP9_DECODER_VP9_DECODEFRAME_H_
+
+struct VP9Common;
+struct VP9Decompressor;
+
+void vp9_init_dequantizer(struct VP9Common *cm);
+int vp9_decode_frame(struct VP9Decompressor *cpi, const uint8_t **p_data_end);
+
+#endif // VP9_DECODER_VP9_DECODEFRAME_H_