diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-09-02 04:52:00 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-09-02 04:52:00 +0000 |
commit | e34350a376d4c28a6770e34fe4afb42a28fc00f0 (patch) | |
tree | 98814635e0faca8ca0589488f4e09b67f62006d3 /libavcodec/dsputil.h | |
parent | f7e89c73e30540e65859cccdbae4b719be8080c0 (diff) | |
download | ffmpeg-e34350a376d4c28a6770e34fe4afb42a28fc00f0.tar.gz |
New function for chroma MC (will be used in VC-1)
Originally committed as revision 6150 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 3e47901dc0..204ee08895 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -270,6 +270,8 @@ typedef struct DSPContext { * h264 Chram MC */ h264_chroma_mc_func put_h264_chroma_pixels_tab[3]; + /* This is really one func used in VC-1 decoding */ + h264_chroma_mc_func put_no_rnd_h264_chroma_pixels_tab[3]; h264_chroma_mc_func avg_h264_chroma_pixels_tab[3]; qpel_mc_func put_h264_qpel_pixels_tab[4][16]; |