diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2005-06-02 21:15:20 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2005-06-02 21:15:20 +0000 |
commit | 43efd19a88bee63d50f568be5ede9d8c1f1dc091 (patch) | |
tree | 99e1880bf2fd4fe75a2d0ba3d478a073d3be3f64 /libavcodec/dsputil.h | |
parent | 20ffdcf9c09f6b9cb4265735ea8a323439b66a8f (diff) | |
download | ffmpeg-43efd19a88bee63d50f568be5ede9d8c1f1dc091.tar.gz |
decode H.264 with 8x8 transform.
deblocking is still incorrect with 8x8+cavlc
Originally committed as revision 4339 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 80ae97ac43..c1c70e415a 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -50,6 +50,7 @@ void ff_fdct_mmx(DCTELEM *block); void ff_fdct_mmx2(DCTELEM *block); void ff_fdct_sse2(DCTELEM *block); +void ff_h264_idct8_add_c(uint8_t *dst, DCTELEM *block, int stride); void ff_h264_idct_add_c(uint8_t *dst, DCTELEM *block, int stride); void ff_h264_lowres_idct_add_c(uint8_t *dst, int stride, DCTELEM *block); void ff_h264_lowres_idct_put_c(uint8_t *dst, int stride, DCTELEM *block); @@ -325,6 +326,7 @@ typedef struct DSPContext { #define RECON_SHIFT 6 void (*h264_idct_add)(uint8_t *dst, DCTELEM *block, int stride); + void (*h264_idct8_add)(uint8_t *dst, DCTELEM *block, int stride); } DSPContext; void dsputil_static_init(void); |