view libavcodec/h264_idct.h @ 6:55fb61482128

VSs working
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Wed, 06 Mar 2013 14:35:39 +0100
parents
children
line source
1 #ifndef H264_IDCT_H
2 #define H264_IDCT_H
4 #include "avcodec.h"
6 void ff_h264_idct8_add_c(uint8_t *dst, DCTELEM *block, int stride);
7 void ff_h264_idct_add_c(uint8_t *dst, DCTELEM *block, int stride);
8 void ff_h264_idct8_dc_add_c(uint8_t *dst, DCTELEM *block, int stride);
9 void ff_h264_idct_dc_add_c(uint8_t *dst, DCTELEM *block, int stride);
10 void ff_h264_lowres_idct_add_c(uint8_t *dst, int stride, DCTELEM *block);
11 void ff_h264_lowres_idct_put_c(uint8_t *dst, int stride, DCTELEM *block);
12 void ff_h264_idct_add16_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
13 void ff_h264_idct_add16intra_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
14 void ff_h264_idct8_add4_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
15 void ff_h264_idct_add8_c(uint8_t **dest, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
16 void h264_luma_dc_dequant_idct_c(DCTELEM *block, int qmul);
17 void chroma_dc_dequant_idct_c(DCTELEM *block, int qmul);
19 #endif