changeset 8403:c9918d072bdb libavcodec

Document new idct requirements.
author michael
date Fri, 19 Dec 2008 09:34:18 +0000
parents 0199857f9000
children 60b6a780100b
files dsputil.h
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/dsputil.h	Fri Dec 19 09:21:54 2008 +0000
+++ b/dsputil.h	Fri Dec 19 09:34:18 2008 +0000
@@ -442,6 +442,10 @@
 #define EDGE_WIDTH 16
 
     /* h264 functions */
+    /* 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);