summaryrefslogtreecommitdiff
path: root/libavcodec/mips/hevc_macros_msa.h
diff options
context:
space:
mode:
authorKaustubh Raste <kaustubh.raste@imgtec.com>2017-11-09 10:47:28 +0530
committerMichael Niedermayer <michael@niedermayer.cc>2017-11-14 20:48:36 +0100
commite5f66a9ea40cf463ef40631b4704607182ceee3c (patch)
treed4e7cefd0e5c67a0fc0133874dad81b503b366c8 /libavcodec/mips/hevc_macros_msa.h
parent034e1f82d924bb3038873798b2cc8d84f9701f62 (diff)
avcodec/mips: cleanup unused macros
Signed-off-by: Kaustubh Raste <kaustubh.raste@imgtec.com> Reviewed-by: Manojkumar Bhosale <Manojkumar.Bhosale@imgtec.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/mips/hevc_macros_msa.h')
-rw-r--r--libavcodec/mips/hevc_macros_msa.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/libavcodec/mips/hevc_macros_msa.h b/libavcodec/mips/hevc_macros_msa.h
index 27c69ff89a..ea53812b64 100644
--- a/libavcodec/mips/hevc_macros_msa.h
+++ b/libavcodec/mips/hevc_macros_msa.h
@@ -21,43 +21,6 @@
#ifndef AVCODEC_MIPS_HEVC_MACROS_MSA_H
#define AVCODEC_MIPS_HEVC_MACROS_MSA_H
-#define HEVC_PCK_SW_SB2(in0, in1, out) \
-{ \
- v8i16 tmp0_m; \
- \
- tmp0_m = __msa_pckev_h((v8i16) in0, (v8i16) in1); \
- out = (v4i32) __msa_pckev_b((v16i8) tmp0_m, (v16i8) tmp0_m); \
-}
-
-#define HEVC_PCK_SW_SB4(in0, in1, in2, in3, out) \
-{ \
- v8i16 tmp0_m, tmp1_m; \
- \
- PCKEV_H2_SH(in0, in1, in2, in3, tmp0_m, tmp1_m); \
- out = (v4i32) __msa_pckev_b((v16i8) tmp1_m, (v16i8) tmp0_m); \
-}
-
-#define HEVC_PCK_SW_SB8(in0, in1, in2, in3, in4, in5, in6, in7, out0, out1) \
-{ \
- v8i16 tmp0_m, tmp1_m, tmp2_m, tmp3_m; \
- \
- PCKEV_H4_SH(in0, in1, in2, in3, in4, in5, in6, in7, \
- tmp0_m, tmp1_m, tmp2_m, tmp3_m); \
- PCKEV_B2_SW(tmp1_m, tmp0_m, tmp3_m, tmp2_m, out0, out1); \
-}
-
-#define HEVC_PCK_SW_SB12(in0, in1, in2, in3, in4, in5, in6, in7, \
- in8, in9, in10, in11, out0, out1, out2) \
-{ \
- v8i16 tmp0_m, tmp1_m, tmp2_m, tmp3_m, tmp4_m, tmp5_m; \
- \
- PCKEV_H4_SH(in0, in1, in2, in3, in4, in5, in6, in7, \
- tmp0_m, tmp1_m, tmp2_m, tmp3_m); \
- PCKEV_H2_SH(in8, in9, in10, in11, tmp4_m, tmp5_m); \
- PCKEV_B2_SW(tmp1_m, tmp0_m, tmp3_m, tmp2_m, out0, out1); \
- out2 = (v4i32) __msa_pckev_b((v16i8) tmp5_m, (v16i8) tmp4_m); \
-}
-
#define HEVC_FILT_8TAP_SH(in0, in1, in2, in3, \
filt0, filt1, filt2, filt3) \
( { \