diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2011-01-14 21:48:33 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2011-01-14 21:48:33 +0000 |
commit | bd11c7a1a810280c481a34d677f756d80d11692f (patch) | |
tree | 351dc9228fe41616e6e6a9dd02a0a54bce8f0fbc /libavcodec/h264dsp.h | |
parent | 0d1d01cf7067235adf314da0a3a339f573ba8ccc (diff) | |
download | ffmpeg-bd11c7a1a810280c481a34d677f756d80d11692f.tar.gz |
Remove outdated comment in h264dsp.h
Since we no longer have non-transposed scantables, the problem it warns about
no longer exists.
Originally committed as revision 26339 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264dsp.h')
-rw-r--r-- | libavcodec/h264dsp.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/h264dsp.h b/libavcodec/h264dsp.h index 9f16480d56..2491c90bbb 100644 --- a/libavcodec/h264dsp.h +++ b/libavcodec/h264dsp.h @@ -57,10 +57,6 @@ typedef struct H264DSPContext{ int bidir, int edges, int step, int mask_mv0, int mask_mv1, int field); /* IDCT */ - /* NOTE!!! if you implement any of h264_idct8_add, h264_idct8_add4 then you must implement all of them - NOTE!!! if you implement any of h264_idct_add, h264_idct_add16, h264_idct_add16intra, h264_idct_add8 then you must implement all of them - The reason for above, is that no 2 out of one list may use a different permutation. - */ void (*h264_idct_add)(uint8_t *dst/*align 4*/, DCTELEM *block/*align 16*/, int stride); void (*h264_idct8_add)(uint8_t *dst/*align 8*/, DCTELEM *block/*align 16*/, int stride); void (*h264_idct_dc_add)(uint8_t *dst/*align 4*/, DCTELEM *block/*align 16*/, int stride); |