diff options
| author | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
| commit | f7813a5324be39d13ab536c245d15dfc602a7849 (patch) | |
| tree | fad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/simple_idct.h | |
| parent | b7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff) | |
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/simple_idct.h')
| -rw-r--r-- | ffmpeg/libavcodec/simple_idct.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ffmpeg/libavcodec/simple_idct.h b/ffmpeg/libavcodec/simple_idct.h index 3fec5e0..7c0734b 100644 --- a/ffmpeg/libavcodec/simple_idct.h +++ b/ffmpeg/libavcodec/simple_idct.h @@ -37,6 +37,11 @@ void ff_simple_idct_8(int16_t *block); void ff_simple_idct_put_10(uint8_t *dest, int line_size, int16_t *block); void ff_simple_idct_add_10(uint8_t *dest, int line_size, int16_t *block); void ff_simple_idct_10(int16_t *block); + +void ff_simple_idct_put_12(uint8_t *dest, int line_size, int16_t *block); +void ff_simple_idct_add_12(uint8_t *dest, int line_size, int16_t *block); +void ff_simple_idct_12(int16_t *block); + /** * Special version of ff_simple_idct_10() which does dequantization * and scales by a factor of 2 more between the two IDCTs to account |
