annotate libavcodec/h264_idct.h @ 9:ea1ba68cf0ed
update to match api changes + add sscc produced source
| author |
Nina Engelhardt <nengel@mailbox.tu-berlin.de> |
| date |
Wed, 05 Jun 2013 14:43:26 +0200 |
| parents |
|
| children |
|
| rev |
line source |
|
nengel@2
|
1 #ifndef H264_IDCT_H
|
|
nengel@2
|
2 #define H264_IDCT_H
|
|
nengel@2
|
3
|
|
nengel@2
|
4 #include "avcodec.h"
|
|
nengel@2
|
5
|
|
nengel@2
|
6 void ff_h264_idct8_add_c(uint8_t *dst, DCTELEM *block, int stride);
|
|
nengel@2
|
7 void ff_h264_idct_add_c(uint8_t *dst, DCTELEM *block, int stride);
|
|
nengel@2
|
8 void ff_h264_idct8_dc_add_c(uint8_t *dst, DCTELEM *block, int stride);
|
|
nengel@2
|
9 void ff_h264_idct_dc_add_c(uint8_t *dst, DCTELEM *block, int stride);
|
|
nengel@2
|
10 void ff_h264_lowres_idct_add_c(uint8_t *dst, int stride, DCTELEM *block);
|
|
nengel@2
|
11 void ff_h264_lowres_idct_put_c(uint8_t *dst, int stride, DCTELEM *block);
|
|
nengel@2
|
12 void ff_h264_idct_add16_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
|
nengel@2
|
13 void ff_h264_idct_add16intra_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
|
nengel@2
|
14 void ff_h264_idct8_add4_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
|
nengel@2
|
15 void ff_h264_idct_add8_c(uint8_t **dest, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
|
nengel@2
|
16 void h264_luma_dc_dequant_idct_c(DCTELEM *block, int qmul);
|
|
nengel@2
|
17 void chroma_dc_dequant_idct_c(DCTELEM *block, int qmul);
|
|
nengel@2
|
18
|
|
nengel@2
|
19 #endif
|