Merge "fix implicit declarations"

This commit is contained in:
Johann 2010-10-27 09:59:28 -07:00 коммит произвёл Code Review
Родитель 787733d855 b90a072f10
Коммит 927f29a644
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -12,6 +12,14 @@
#include "idct.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
(short *q, short *dq, unsigned char *pre,
unsigned char *dst, int stride, char *eobs, short *dc)