summaryrefslogtreecommitdiff
path: root/libavcodec/avdct.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/avdct.h')
-rw-r--r--libavcodec/avdct.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/avdct.h b/libavcodec/avdct.h
index 4c9d00f904..4190203c24 100644
--- a/libavcodec/avdct.h
+++ b/libavcodec/avdct.h
@@ -61,6 +61,10 @@ typedef struct AVDCT {
* must use AVOptions to set this field.
*/
int idct_algo;
+
+ void (*get_pixels)(int16_t *block /* align 16 */,
+ const uint8_t *pixels /* align 8 */,
+ int line_size);
} AVDCT;
/**