Mercurial > cgi-bin > hgwebdir.cgi > PR > Applications > VSs > VSs__H264__App
view libavcodec/h264_idct.h @ 2:897f711a7157
rearrange to work with autoconf
| author | Nina Engelhardt <nengel@mailbox.tu-berlin.de> |
|---|---|
| date | Tue, 25 Sep 2012 15:55:33 +0200 |
| 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
