summaryrefslogtreecommitdiff
path: root/libavcodec/ppc/hevcdsp_template.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-04-26 14:39:28 +0200
committerClément Bœsch <u@pkh.me>2017-04-26 14:39:28 +0200
commit3a033bc5cfaeec391a8258005e025ddf3971d8bc (patch)
tree2c86c1c92813a21266f83019c5c02151d733b66f /libavcodec/ppc/hevcdsp_template.c
parent40cc925f9321c3665341b5a9c209cdc810446890 (diff)
parent39929e55eb13eeb8dfbe1bc99301fecf6b8942dd (diff)
Merge commit '39929e55eb13eeb8dfbe1bc99301fecf6b8942dd'
* commit '39929e55eb13eeb8dfbe1bc99301fecf6b8942dd': ppc: hevcdsp: Use shorthands for vector types Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/ppc/hevcdsp_template.c')
-rw-r--r--libavcodec/ppc/hevcdsp_template.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ppc/hevcdsp_template.c b/libavcodec/ppc/hevcdsp_template.c
index f3a2ba3080..2b6411bae8 100644
--- a/libavcodec/ppc/hevcdsp_template.c
+++ b/libavcodec/ppc/hevcdsp_template.c
@@ -22,9 +22,9 @@ static void FUNC(ff_hevc_idct_4x4, BIT_DEPTH)(int16_t *coeffs, int col_limit)
{
const int shift = 7;
const int shift2 = 20 - BIT_DEPTH;
- vector int16_t src_01, src_23;
- vector int32_t res[4];
- vector int16_t res_packed[2];
+ vec_s16 src_01, src_23;
+ vec_s32 res[4];
+ vec_s16 res_packed[2];
src_01 = vec_ld(0, coeffs);
src_23 = vec_ld(16, coeffs);