summaryrefslogtreecommitdiff
path: root/libavcodec/v210enc.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-12-06 01:46:39 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-12-06 01:54:10 +0100
commit1d048f762d2fc4ede5316818f467e2f1d1065ac1 (patch)
tree3667fa5304938b04abb0b636f32ae7cfe0e55657 /libavcodec/v210enc.h
parente827f65618f601ae2016e6f8ac8851534ed346c8 (diff)
parent9a738c27dceb4b975784b23213a46f5cb560d1c2 (diff)
Merge commit '9a738c27dceb4b975784b23213a46f5cb560d1c2'
* commit '9a738c27dceb4b975784b23213a46f5cb560d1c2': v210enc: Add SIMD optimised 8-bit and 10-bit encoders Conflicts: libavcodec/v210enc.c libavcodec/v210enc.h libavcodec/x86/Makefile libavcodec/x86/v210enc.asm libavcodec/x86/v210enc_init.c tests/ref/vsynth/vsynth1-v210 tests/ref/vsynth/vsynth2-v210 See: 36091742d182b3ad4411aae22682354b3834a974 Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/v210enc.h')
-rw-r--r--libavcodec/v210enc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/v210enc.h b/libavcodec/v210enc.h
index ea6ae41c71..1186e2fe1d 100644
--- a/libavcodec/v210enc.h
+++ b/libavcodec/v210enc.h
@@ -24,8 +24,10 @@
#include "libavutil/pixfmt.h"
typedef struct {
- void (*pack_line_8)(const uint8_t *y, const uint8_t *u, const uint8_t *v, uint8_t *dst, ptrdiff_t width);
- void (*pack_line_10)(const uint16_t *y, const uint16_t *u, const uint16_t *v, uint8_t *dst, ptrdiff_t width);
+ void (*pack_line_8)(const uint8_t *y, const uint8_t *u,
+ const uint8_t *v, uint8_t *dst, ptrdiff_t width);
+ void (*pack_line_10)(const uint16_t *y, const uint16_t *u,
+ const uint16_t *v, uint8_t *dst, ptrdiff_t width);
} V210EncContext;
void ff_v210enc_init_x86(V210EncContext *s);