Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-02 22:59:24 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-08-04 01:34:35 +0400
commite680c731a213759a824420a94f0068f943d3788f (patch)
tree939587834ade2ec54d6bd917c8f617f7e6e20284 /libavcodec/avdct.h
parent9400603140db5f44f35942482a3435e4b67e7e79 (diff)
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.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;
/**