1
|
1 /*
|
|
2 * motion_comp.c
|
10303
|
3 * Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org>
|
9852
|
4 * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
|
1
|
5 *
|
|
6 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
|
9852
|
7 * See http://libmpeg2.sourceforge.net/ for updates.
|
1
|
8 *
|
|
9 * mpeg2dec is free software; you can redistribute it and/or modify
|
|
10 * it under the terms of the GNU General Public License as published by
|
|
11 * the Free Software Foundation; either version 2 of the License, or
|
|
12 * (at your option) any later version.
|
|
13 *
|
|
14 * mpeg2dec is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 * GNU General Public License for more details.
|
|
18 *
|
|
19 * You should have received a copy of the GNU General Public License
|
|
20 * along with this program; if not, write to the Free Software
|
|
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
22 */
|
|
23
|
|
24 #include "config.h"
|
|
25
|
|
26 #include <inttypes.h>
|
|
27
|
9852
|
28 #include "mpeg2.h"
|
12932
|
29 #include "attributes.h"
|
1
|
30 #include "mpeg2_internal.h"
|
|
31
|
9852
|
32 mpeg2_mc_t mpeg2_mc;
|
1
|
33
|
9852
|
34 void mpeg2_mc_init (uint32_t accel)
|
1
|
35 {
|
13864
|
36 #if defined(ARCH_X86) || defined(ARCH_X86_64)
|
9852
|
37 if (accel & MPEG2_ACCEL_X86_MMXEXT)
|
|
38 mpeg2_mc = mpeg2_mc_mmxext;
|
|
39 else if (accel & MPEG2_ACCEL_X86_3DNOW)
|
|
40 mpeg2_mc = mpeg2_mc_3dnow;
|
|
41 else if (accel & MPEG2_ACCEL_X86_MMX)
|
|
42 mpeg2_mc = mpeg2_mc_mmx;
|
|
43 else
|
|
44 #endif
|
13196
|
45 #if defined(ARCH_PPC) && defined(HAVE_ALTIVEC)
|
9852
|
46 if (accel & MPEG2_ACCEL_PPC_ALTIVEC)
|
|
47 mpeg2_mc = mpeg2_mc_altivec;
|
|
48 else
|
|
49 #endif
|
|
50 #ifdef ARCH_ALPHA
|
|
51 if (accel & MPEG2_ACCEL_ALPHA)
|
|
52 mpeg2_mc = mpeg2_mc_alpha;
|
|
53 else
|
1
|
54 #endif
|
13196
|
55 #if defined(ARCH_SPARC) && defined(HAVE_VIS)
|
12932
|
56 if (accel & MPEG2_ACCEL_SPARC_VIS)
|
|
57 mpeg2_mc = mpeg2_mc_vis;
|
9852
|
58 else
|
1
|
59 #endif
|
9852
|
60 mpeg2_mc = mpeg2_mc_c;
|
1
|
61 }
|
|
62
|
|
63 #define avg2(a,b) ((a+b+1)>>1)
|
|
64 #define avg4(a,b,c,d) ((a+b+c+d+2)>>2)
|
|
65
|
9852
|
66 #define predict_o(i) (ref[i])
|
1
|
67 #define predict_x(i) (avg2 (ref[i], ref[i+1]))
|
|
68 #define predict_y(i) (avg2 (ref[i], (ref+stride)[i]))
|
9852
|
69 #define predict_xy(i) (avg4 (ref[i], ref[i+1], \
|
|
70 (ref+stride)[i], (ref+stride)[i+1]))
|
1
|
71
|
|
72 #define put(predictor,i) dest[i] = predictor (i)
|
|
73 #define avg(predictor,i) dest[i] = avg2 (predictor (i), dest[i])
|
|
74
|
36
|
75 /* mc function template */
|
1
|
76
|
9852
|
77 #define MC_FUNC(op,xy) \
|
|
78 static void MC_##op##_##xy##_16_c (uint8_t * dest, const uint8_t * ref, \
|
|
79 const int stride, int height) \
|
|
80 { \
|
|
81 do { \
|
|
82 op (predict_##xy, 0); \
|
|
83 op (predict_##xy, 1); \
|
|
84 op (predict_##xy, 2); \
|
|
85 op (predict_##xy, 3); \
|
|
86 op (predict_##xy, 4); \
|
|
87 op (predict_##xy, 5); \
|
|
88 op (predict_##xy, 6); \
|
|
89 op (predict_##xy, 7); \
|
|
90 op (predict_##xy, 8); \
|
|
91 op (predict_##xy, 9); \
|
|
92 op (predict_##xy, 10); \
|
|
93 op (predict_##xy, 11); \
|
|
94 op (predict_##xy, 12); \
|
|
95 op (predict_##xy, 13); \
|
|
96 op (predict_##xy, 14); \
|
|
97 op (predict_##xy, 15); \
|
|
98 ref += stride; \
|
|
99 dest += stride; \
|
|
100 } while (--height); \
|
|
101 } \
|
|
102 static void MC_##op##_##xy##_8_c (uint8_t * dest, const uint8_t * ref, \
|
|
103 const int stride, int height) \
|
|
104 { \
|
|
105 do { \
|
|
106 op (predict_##xy, 0); \
|
|
107 op (predict_##xy, 1); \
|
|
108 op (predict_##xy, 2); \
|
|
109 op (predict_##xy, 3); \
|
|
110 op (predict_##xy, 4); \
|
|
111 op (predict_##xy, 5); \
|
|
112 op (predict_##xy, 6); \
|
|
113 op (predict_##xy, 7); \
|
|
114 ref += stride; \
|
|
115 dest += stride; \
|
|
116 } while (--height); \
|
1
|
117 }
|
|
118
|
36
|
119 /* definitions of the actual mc functions */
|
1
|
120
|
9852
|
121 MC_FUNC (put,o)
|
|
122 MC_FUNC (avg,o)
|
1
|
123 MC_FUNC (put,x)
|
|
124 MC_FUNC (avg,x)
|
|
125 MC_FUNC (put,y)
|
|
126 MC_FUNC (avg,y)
|
|
127 MC_FUNC (put,xy)
|
|
128 MC_FUNC (avg,xy)
|
|
129
|
9852
|
130 MPEG2_MC_EXTERN (c)
|