diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libavcodec/h264_idct.h	Tue Sep 25 15:55:33 2012 +0200
     1.3 @@ -0,0 +1,19 @@
     1.4 +#ifndef H264_IDCT_H
     1.5 +#define H264_IDCT_H
     1.6 +
     1.7 +#include "avcodec.h"
     1.8 +
     1.9 +void ff_h264_idct8_add_c(uint8_t *dst, DCTELEM *block, int stride);
    1.10 +void ff_h264_idct_add_c(uint8_t *dst, DCTELEM *block, int stride);
    1.11 +void ff_h264_idct8_dc_add_c(uint8_t *dst, DCTELEM *block, int stride);
    1.12 +void ff_h264_idct_dc_add_c(uint8_t *dst, DCTELEM *block, int stride);
    1.13 +void ff_h264_lowres_idct_add_c(uint8_t *dst, int stride, DCTELEM *block);
    1.14 +void ff_h264_lowres_idct_put_c(uint8_t *dst, int stride, DCTELEM *block);
    1.15 +void ff_h264_idct_add16_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
    1.16 +void ff_h264_idct_add16intra_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
    1.17 +void ff_h264_idct8_add4_c(uint8_t *dst, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
    1.18 +void ff_h264_idct_add8_c(uint8_t **dest, const int *blockoffset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
    1.19 +void h264_luma_dc_dequant_idct_c(DCTELEM *block, int qmul);
    1.20 +void chroma_dc_dequant_idct_c(DCTELEM *block, int qmul);
    1.21 +
    1.22 +#endif