Commit 927f29a6 authored by Johann's avatar Johann Committed by Code Review
Browse files

Merge "fix implicit declarations"

Showing with 8 additions and 0 deletions
...@@ -12,6 +12,14 @@ ...@@ -12,6 +12,14 @@
#include "idct.h" #include "idct.h"
#include "dequantize.h" #include "dequantize.h"
void vp8_dequant_dc_idct_add_c(short *input, short *dq, unsigned char *pred,
unsigned char *dest, int pitch, int stride,
int Dc);
void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *pred,
unsigned char *dest, int pitch, int stride);
void vp8_dc_only_idct_add_c(short input_dc, unsigned char *pred_ptr,
unsigned char *dst_ptr, int pitch, int stride);
void vp8_dequant_dc_idct_add_y_block_c void vp8_dequant_dc_idct_add_y_block_c
(short *q, short *dq, unsigned char *pre, (short *q, short *dq, unsigned char *pre,
unsigned char *dst, int stride, char *eobs, short *dc) unsigned char *dst, int stride, char *eobs, short *dc)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment