]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ppc/hevcdsp_template.c
Merge commit 'f8a42d4f260db3eae4399fa8bd8c8c2c1d38f23a'
[ffmpeg] / libavcodec / ppc / hevcdsp_template.c
index f3a2ba3080f7ce777d377e0f1c6a125b8578223f..2b6411bae8e2fcc08d25ff15bc44d71b354bc735 100644 (file)
@@ -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);