mirror of https://git.ffmpeg.org/ffmpeg.git
Added entry for H.264 DCT to the DSP context.
Originally committed as revision 7247 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3edeab8209
commit
f1862127f5
|
@ -383,6 +383,7 @@ typedef struct DSPContext {
|
||||||
void (*h264_idct8_add)(uint8_t *dst, DCTELEM *block, int stride);
|
void (*h264_idct8_add)(uint8_t *dst, DCTELEM *block, int stride);
|
||||||
void (*h264_idct_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
|
void (*h264_idct_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
|
||||||
void (*h264_idct8_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
|
void (*h264_idct8_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
|
||||||
|
void (*h264_dct)(DCTELEM block[4][4]);
|
||||||
|
|
||||||
/* snow wavelet */
|
/* snow wavelet */
|
||||||
void (*vertical_compose97i)(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, DWTELEM *b3, DWTELEM *b4, DWTELEM *b5, int width);
|
void (*vertical_compose97i)(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, DWTELEM *b3, DWTELEM *b4, DWTELEM *b5, int width);
|
||||||
|
|
Loading…
Reference in New Issue