1
|
1 /*
|
|
2 * motion_comp.c
|
9852
|
3 * Copyright (C) 2000-2002 Michel Lespinasse <walken@zoy.org>
|
|
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"
|
1
|
29 #include "mpeg2_internal.h"
|
|
30
|
9852
|
31 mpeg2_mc_t mpeg2_mc;
|
1
|
32
|
9852
|
33 void mpeg2_mc_init (uint32_t accel)
|
1
|
34 {
|
|
35 #ifdef ARCH_X86
|
9852
|
36 if (accel & MPEG2_ACCEL_X86_MMXEXT)
|
|
37 mpeg2_mc = mpeg2_mc_mmxext;
|
|
38 else if (accel & MPEG2_ACCEL_X86_3DNOW)
|
|
39 mpeg2_mc = mpeg2_mc_3dnow;
|
|
40 else if (accel & MPEG2_ACCEL_X86_MMX)
|
|
41 mpeg2_mc = mpeg2_mc_mmx;
|
|
42 else
|
|
43 #endif
|
|
44 #ifdef ARCH_PPC
|
|
45 if (accel & MPEG2_ACCEL_PPC_ALTIVEC)
|
|
46 mpeg2_mc = mpeg2_mc_altivec;
|
|
47 else
|
|
48 #endif
|
|
49 #ifdef ARCH_ALPHA
|
|
50 if (accel & MPEG2_ACCEL_ALPHA)
|
|
51 mpeg2_mc = mpeg2_mc_alpha;
|
|
52 else
|
1
|
53 #endif
|
|
54 #ifdef LIBMPEG2_MLIB
|
9852
|
55 if (accel & MPEG2_ACCEL_MLIB)
|
|
56 mpeg2_mc = mpeg2_mc_mlib;
|
|
57 else
|
1
|
58 #endif
|
9852
|
59 mpeg2_mc = mpeg2_mc_c;
|
1
|
60 }
|
|
61
|
|
62 #define avg2(a,b) ((a+b+1)>>1)
|
|
63 #define avg4(a,b,c,d) ((a+b+c+d+2)>>2)
|
|
64
|
9852
|
65 #define predict_o(i) (ref[i])
|
1
|
66 #define predict_x(i) (avg2 (ref[i], ref[i+1]))
|
|
67 #define predict_y(i) (avg2 (ref[i], (ref+stride)[i]))
|
9852
|
68 #define predict_xy(i) (avg4 (ref[i], ref[i+1], \
|
|
69 (ref+stride)[i], (ref+stride)[i+1]))
|
1
|
70
|
|
71 #define put(predictor,i) dest[i] = predictor (i)
|
|
72 #define avg(predictor,i) dest[i] = avg2 (predictor (i), dest[i])
|
|
73
|
36
|
74 /* mc function template */
|
1
|
75
|
9852
|
76 #define MC_FUNC(op,xy) \
|
|
77 static void MC_##op##_##xy##_16_c (uint8_t * dest, const uint8_t * ref, \
|
|
78 const int stride, int height) \
|
|
79 { \
|
|
80 do { \
|
|
81 op (predict_##xy, 0); \
|
|
82 op (predict_##xy, 1); \
|
|
83 op (predict_##xy, 2); \
|
|
84 op (predict_##xy, 3); \
|
|
85 op (predict_##xy, 4); \
|
|
86 op (predict_##xy, 5); \
|
|
87 op (predict_##xy, 6); \
|
|
88 op (predict_##xy, 7); \
|
|
89 op (predict_##xy, 8); \
|
|
90 op (predict_##xy, 9); \
|
|
91 op (predict_##xy, 10); \
|
|
92 op (predict_##xy, 11); \
|
|
93 op (predict_##xy, 12); \
|
|
94 op (predict_##xy, 13); \
|
|
95 op (predict_##xy, 14); \
|
|
96 op (predict_##xy, 15); \
|
|
97 ref += stride; \
|
|
98 dest += stride; \
|
|
99 } while (--height); \
|
|
100 } \
|
|
101 static void MC_##op##_##xy##_8_c (uint8_t * dest, const uint8_t * ref, \
|
|
102 const int stride, int height) \
|
|
103 { \
|
|
104 do { \
|
|
105 op (predict_##xy, 0); \
|
|
106 op (predict_##xy, 1); \
|
|
107 op (predict_##xy, 2); \
|
|
108 op (predict_##xy, 3); \
|
|
109 op (predict_##xy, 4); \
|
|
110 op (predict_##xy, 5); \
|
|
111 op (predict_##xy, 6); \
|
|
112 op (predict_##xy, 7); \
|
|
113 ref += stride; \
|
|
114 dest += stride; \
|
|
115 } while (--height); \
|
1
|
116 }
|
|
117
|
36
|
118 /* definitions of the actual mc functions */
|
1
|
119
|
9852
|
120 MC_FUNC (put,o)
|
|
121 MC_FUNC (avg,o)
|
1
|
122 MC_FUNC (put,x)
|
|
123 MC_FUNC (avg,x)
|
|
124 MC_FUNC (put,y)
|
|
125 MC_FUNC (avg,y)
|
|
126 MC_FUNC (put,xy)
|
|
127 MC_FUNC (avg,xy)
|
|
128
|
9852
|
129 MPEG2_MC_EXTERN (c)
|