diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 20:59:24 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-03 23:34:35 +0200 |
commit | e680c731a213759a824420a94f0068f943d3788f (patch) | |
tree | 939587834ade2ec54d6bd917c8f617f7e6e20284 /libavcodec/avdct.h | |
parent | 9400603140db5f44f35942482a3435e4b67e7e79 (diff) | |
download | ffmpeg-e680c731a213759a824420a94f0068f943d3788f.tar.gz |
avcodec/avdct: Add get_pixels()
Suggested-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avdct.h')
-rw-r--r-- | libavcodec/avdct.h | 4 |
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; /** |