summaryrefslogtreecommitdiff
path: root/vp9/encoder/encodeintra.h
diff options
context:
space:
mode:
authorJim Bankoski <jimbankoski@google.com>2012-11-24 19:33:58 -0800
committerJim Bankoski <jimbankoski@google.com>2012-11-24 19:33:58 -0800
commit510557e2eb058c7f939a7109eaaf6b03d9054390 (patch)
treebabacbbac5813177c654035c16ea78a2fc4f598b /vp9/encoder/encodeintra.h
parent91d703b2b21f40f27dceb57481a5bb92f5ece1d1 (diff)
downloadlibvpx-510557e2eb058c7f939a7109eaaf6b03d9054390.tar
libvpx-510557e2eb058c7f939a7109eaaf6b03d9054390.tar.gz
libvpx-510557e2eb058c7f939a7109eaaf6b03d9054390.tar.bz2
libvpx-510557e2eb058c7f939a7109eaaf6b03d9054390.zip
removed the idct rtcd idct calls
More cleanup to do after this, but this is a good chunk of removing rtcd. Change-Id: I551db75e341a0a85c3ad650df1e9a60dc305681a
Diffstat (limited to 'vp9/encoder/encodeintra.h')
-rw-r--r--vp9/encoder/encodeintra.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/vp9/encoder/encodeintra.h b/vp9/encoder/encodeintra.h
index 38b42b71e..9326ad657 100644
--- a/vp9/encoder/encodeintra.h
+++ b/vp9/encoder/encodeintra.h
@@ -14,14 +14,12 @@
#include "onyx_int.h"
int vp9_encode_intra(VP9_COMP *cpi, MACROBLOCK *x, int use_16x16_pred);
-void vp9_encode_intra16x16mby(const VP9_ENCODER_RTCD *, MACROBLOCK *x);
-void vp9_encode_intra16x16mbuv(const VP9_ENCODER_RTCD *, MACROBLOCK *x);
-void vp9_encode_intra4x4mby(const VP9_ENCODER_RTCD *, MACROBLOCK *mb);
-void vp9_encode_intra4x4block(const VP9_ENCODER_RTCD *rtcd,
- MACROBLOCK *x, int ib);
-void vp9_encode_intra8x8mby(const VP9_ENCODER_RTCD *rtcd, MACROBLOCK *x);
-void vp9_encode_intra8x8mbuv(const VP9_ENCODER_RTCD *rtcd, MACROBLOCK *x);
-void vp9_encode_intra8x8(const VP9_ENCODER_RTCD *rtcd,
- MACROBLOCK *x, int ib);
+void vp9_encode_intra16x16mby(MACROBLOCK *x);
+void vp9_encode_intra16x16mbuv(MACROBLOCK *x);
+void vp9_encode_intra4x4mby(MACROBLOCK *mb);
+void vp9_encode_intra4x4block(MACROBLOCK *x, int ib);
+void vp9_encode_intra8x8mby(MACROBLOCK *x);
+void vp9_encode_intra8x8mbuv(MACROBLOCK *x);
+void vp9_encode_intra8x8(MACROBLOCK *x, int ib);
#endif // __ENCODEINTRA_H_