Mercurial > mplayer.hg
annotate libmpeg2/libmpeg-0.4.1.diff @ 22809:09f97d0161ba
Handle X-QT extradata in a slightly more correct way
| author | cehoyos |
|---|---|
| date | Mon, 26 Mar 2007 09:35:03 +0000 |
| parents | 1658f7d97b27 |
| children | f0ddd02aec27 |
| rev | line source |
|---|---|
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
1 --- include/attributes.h 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
2 +++ libmpeg2/attributes.h 2006-06-16 20:12:50.000000000 +0200 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
3 @@ -25,7 +29,7 @@ |
| 13147 | 4 #ifdef ATTRIBUTE_ALIGNED_MAX |
| 5 #define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align))) | |
| 6 #else | |
| 7 -#define ATTR_ALIGN(align) | |
| 8 +#define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((16 < align) ? 16 : align))) | |
| 9 #endif | |
| 10 | |
| 11 #ifdef HAVE_BUILTIN_EXPECT | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
12 --- libmpeg2/cpu_accel.c 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
13 +++ libmpeg2/cpu_accel.c 2006-06-16 20:12:50.000000000 +0200 |
| 19026 | 14 @@ -22,6 +26,7 @@ |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
15 */ |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
16 |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
17 #include "config.h" |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
18 +#include "cpudetect.h" |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
19 |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
20 #include <inttypes.h> |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
21 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
22 @@ -30,9 +35,17 @@ |
| 13864 | 23 #include "mpeg2_internal.h" |
| 24 | |
| 25 #ifdef ACCEL_DETECT | |
| 26 -#ifdef ARCH_X86 | |
| 27 +#if defined(ARCH_X86) || defined(ARCH_X86_64) | |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
28 + |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
29 +/* MPlayer imports libmpeg2 as decoder, which detects MMX / 3DNow! |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
30 + * instructions via assembly. However, it is regarded as duplicaed work |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
31 + * in MPlayer, so that we enforce to use MPlayer's implementation. |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
32 + */ |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
33 +#define USE_MPLAYER_CPUDETECT |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
34 + |
| 13864 | 35 static inline uint32_t arch_accel (void) |
| 36 { | |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
37 +#if !defined(USE_MPLAYER_CPUDETECT) |
| 13864 | 38 uint32_t eax, ebx, ecx, edx; |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
39 int AMD; |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
40 uint32_t caps; |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
41 @@ -105,10 +118,24 @@ |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
42 caps |= MPEG2_ACCEL_X86_MMXEXT; |
| 13864 | 43 |
| 44 return caps; | |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
45 +#else /* USE_MPLAYER_CPUDETECT: Use MPlayer's cpu capability property */ |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
46 + caps = 0; |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
47 + if (gCpuCaps.hasMMX) |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
48 + caps |= MPEG2_ACCEL_X86_MMX; |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
49 + if (gCpuCaps.hasSSE2) |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
50 + caps |= MPEG2_ACCEL_X86_SSE2; |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
51 + if (gCpuCaps.hasMMX2) |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
52 + caps |= MPEG2_ACCEL_X86_MMXEXT; |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
53 + if (gCpuCaps.has3DNow) |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
54 + caps |= MPEG2_ACCEL_X86_3DNOW; |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
55 + |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
56 + return caps; |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
57 + |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
58 +#endif /* USE_MPLAYER_CPUDETECT */ |
| 13020 | 59 } |
| 13864 | 60 -#endif /* ARCH_X86 */ |
| 61 +#endif /* ARCH_X86 || ARCH_X86_64 */ | |
| 13020 | 62 |
| 63 -#if defined(ARCH_PPC) || defined(ARCH_SPARC) | |
| 64 +#if defined(ARCH_PPC) || (defined(ARCH_SPARC) && defined(HAVE_VIS)) | |
| 65 #include <signal.h> | |
| 66 #include <setjmp.h> | |
| 67 | |
| 21377 | 68 @@ -166,10 +166,10 @@ |
| 69 | |
| 70 canjump = 1; | |
| 71 | |
| 72 -#ifdef HAVE_ALTIVEC_H /* gnu */ | |
| 73 -#define VAND(a,b,c) "vand " #a "," #b "," #c "\n\t" | |
| 74 -#else /* apple */ | |
| 75 +#if defined( __APPLE_CC__ ) && defined( __APPLE_ALTIVEC__ ) /* apple */ | |
| 76 #define VAND(a,b,c) "vand v" #a ",v" #b ",v" #c "\n\t" | |
| 77 +#else /* gnu */ | |
| 78 +#define VAND(a,b,c) "vand " #a "," #b "," #c "\n\t" | |
| 79 #endif | |
| 80 asm volatile ("mtspr 256, %0\n\t" | |
| 81 VAND (0, 0, 0) | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
82 @@ -195,6 +222,7 @@ |
| 12937 | 83 #ifdef ARCH_ALPHA |
| 84 static inline uint32_t arch_accel (void) | |
| 85 { | |
| 86 +#ifdef CAN_COMPILE_ALPHA_MVI | |
| 87 uint64_t no_mvi; | |
| 88 | |
| 89 asm volatile ("amask %1, %0" | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
90 @@ -202,6 +230,9 @@ |
| 12937 | 91 : "rI" (256)); /* AMASK_MVI */ |
| 92 return no_mvi ? MPEG2_ACCEL_ALPHA : (MPEG2_ACCEL_ALPHA | | |
| 93 MPEG2_ACCEL_ALPHA_MVI); | |
| 94 +#else | |
| 95 + return MPEG2_ACCEL_ALPHA; | |
| 96 +#endif | |
| 97 } | |
| 98 #endif /* ARCH_ALPHA */ | |
| 99 #endif /* ACCEL_DETECT */ | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
100 @@ -212,7 +243,7 @@ |
| 13864 | 101 |
| 102 accel = 0; | |
| 103 #ifdef ACCEL_DETECT | |
| 104 -#if defined (ARCH_X86) || defined (ARCH_PPC) || defined (ARCH_ALPHA) || defined (ARCH_SPARC) | |
| 105 +#if defined (ARCH_X86) || defined (ARCH_X86_64) || defined (ARCH_PPC) || defined (ARCH_ALPHA) || defined (ARCH_SPARC) | |
| 106 accel = arch_accel (); | |
| 107 #endif | |
| 108 #endif | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
109 --- libmpeg2/cpu_state.c 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
110 +++ libmpeg2/cpu_state.c 2006-06-16 20:12:50.000000000 +0200 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
111 @@ -29,14 +33,14 @@ |
| 13864 | 112 #include "mpeg2.h" |
| 113 #include "attributes.h" | |
| 114 #include "mpeg2_internal.h" | |
| 115 -#ifdef ARCH_X86 | |
| 116 +#if defined(ARCH_X86) || defined(ARCH_X86_64) | |
| 117 #include "mmx.h" | |
| 118 #endif | |
| 119 | |
| 120 void (* mpeg2_cpu_state_save) (cpu_state_t * state) = NULL; | |
| 121 void (* mpeg2_cpu_state_restore) (cpu_state_t * state) = NULL; | |
| 122 | |
| 123 -#ifdef ARCH_X86 | |
| 124 +#if defined(ARCH_X86) || defined(ARCH_X86_64) | |
| 125 static void state_restore_mmx (cpu_state_t * state) | |
| 126 { | |
| 127 emms (); | |
| 21571 | 128 @@ -48,18 +48,18 @@ |
| 129 #endif | |
| 130 | |
| 131 -#ifdef ARCH_PPC | |
| 132 +#if defined(ARCH_PPC) && defined(HAVE_ALTIVEC) | |
| 133 -#ifdef HAVE_ALTIVEC_H /* gnu */ | |
| 134 -#define LI(a,b) "li " #a "," #b "\n\t" | |
| 135 -#define STVX0(a,b,c) "stvx " #a ",0," #c "\n\t" | |
| 136 -#define STVX(a,b,c) "stvx " #a "," #b "," #c "\n\t" | |
| 137 -#define LVX0(a,b,c) "lvx " #a ",0," #c "\n\t" | |
| 138 -#define LVX(a,b,c) "lvx " #a "," #b "," #c "\n\t" | |
| 139 -#else /* apple */ | |
| 140 +#if defined( __APPLE_CC__ ) && defined( __APPLE_ALTIVEC__ ) /* apple */ | |
| 141 #define LI(a,b) "li r" #a "," #b "\n\t" | |
| 142 #define STVX0(a,b,c) "stvx v" #a ",0,r" #c "\n\t" | |
| 143 #define STVX(a,b,c) "stvx v" #a ",r" #b ",r" #c "\n\t" | |
| 144 #define LVX0(a,b,c) "lvx v" #a ",0,r" #c "\n\t" | |
| 145 #define LVX(a,b,c) "lvx v" #a ",r" #b ",r" #c "\n\t" | |
| 146 +#else /* gnu */ | |
| 147 +#define LI(a,b) "li " #a "," #b "\n\t" | |
| 148 +#define STVX0(a,b,c) "stvx " #a ",0," #c "\n\t" | |
| 149 +#define STVX(a,b,c) "stvx " #a "," #b "," #c "\n\t" | |
| 150 +#define LVX0(a,b,c) "lvx " #a ",0," #c "\n\t" | |
| 151 +#define LVX(a,b,c) "lvx " #a "," #b "," #c "\n\t" | |
| 152 #endif | |
| 153 | |
| 154 static void state_save_altivec (cpu_state_t * state) | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
155 @@ -115,12 +119,12 @@ |
| 13864 | 156 |
| 157 void mpeg2_cpu_state_init (uint32_t accel) | |
| 158 { | |
| 159 -#ifdef ARCH_X86 | |
| 160 +#if defined(ARCH_X86) || defined(ARCH_X86_64) | |
| 161 if (accel & MPEG2_ACCEL_X86_MMX) { | |
| 12937 | 162 mpeg2_cpu_state_restore = state_restore_mmx; |
| 163 } | |
| 164 #endif | |
| 165 -#ifdef ARCH_PPC | |
| 166 +#if defined(ARCH_PPC) && defined(HAVE_ALTIVEC) | |
| 167 if (accel & MPEG2_ACCEL_PPC_ALTIVEC) { | |
| 168 mpeg2_cpu_state_save = state_save_altivec; | |
| 169 mpeg2_cpu_state_restore = state_restore_altivec; | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
170 --- libmpeg2/decode.c 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
171 +++ libmpeg2/decode.c 2006-06-16 20:12:50.000000000 +0200 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
172 @@ -351,6 +355,15 @@ |
| 12937 | 173 fbuf->buf[1] = buf[1]; |
| 174 fbuf->buf[2] = buf[2]; | |
| 175 fbuf->id = id; | |
| 176 + // HACK! FIXME! At first I frame, copy pointers to prediction frame too! | |
| 177 + if (mpeg2dec->custom_fbuf && !mpeg2dec->fbuf[1]->buf[0]){ | |
| 178 + mpeg2dec->fbuf[1]->buf[0]=buf[0]; | |
| 179 + mpeg2dec->fbuf[1]->buf[1]=buf[1]; | |
| 180 + mpeg2dec->fbuf[1]->buf[2]=buf[2]; | |
| 181 + mpeg2dec->fbuf[1]->id=NULL; | |
| 182 + } | |
| 183 +// printf("libmpeg2: FBUF 0:%p 1:%p 2:%p\n", | |
| 184 +// mpeg2dec->fbuf[0]->buf[0],mpeg2dec->fbuf[1]->buf[0],mpeg2dec->fbuf[2]->buf[0]); | |
| 185 } | |
| 186 | |
| 187 void mpeg2_custom_fbuf (mpeg2dec_t * mpeg2dec, int custom_fbuf) | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
188 --- libmpeg2/header.c 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
189 +++ libmpeg2/header.c 2006-06-16 20:12:50.000000000 +0200 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
190 @@ -100,6 +104,9 @@ |
| 12937 | 191 mpeg2dec->decoder.convert = NULL; |
| 192 mpeg2dec->decoder.convert_id = NULL; | |
| 193 mpeg2dec->picture = mpeg2dec->pictures; | |
| 194 + memset(&mpeg2dec->fbuf_alloc[0].fbuf, 0, sizeof(mpeg2_fbuf_t)); | |
| 195 + memset(&mpeg2dec->fbuf_alloc[1].fbuf, 0, sizeof(mpeg2_fbuf_t)); | |
| 196 + memset(&mpeg2dec->fbuf_alloc[2].fbuf, 0, sizeof(mpeg2_fbuf_t)); | |
| 197 mpeg2dec->fbuf[0] = &mpeg2dec->fbuf_alloc[0].fbuf; | |
| 198 mpeg2dec->fbuf[1] = &mpeg2dec->fbuf_alloc[1].fbuf; | |
| 199 mpeg2dec->fbuf[2] = &mpeg2dec->fbuf_alloc[2].fbuf; | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
200 @@ -551,6 +558,7 @@ |
| 12937 | 201 if (!(mpeg2dec->sequence.flags & SEQ_FLAG_PROGRESSIVE_SEQUENCE)) { |
| 202 picture->nb_fields = (buffer[3] & 2) ? 3 : 2; | |
| 203 flags |= (buffer[3] & 128) ? PIC_FLAG_TOP_FIELD_FIRST : 0; | |
| 204 + flags |= (buffer[3] & 2) ? PIC_FLAG_REPEAT_FIRST_FIELD : 0; | |
| 205 } else | |
| 206 picture->nb_fields = (buffer[3]&2) ? ((buffer[3]&128) ? 6 : 4) : 2; | |
| 207 break; | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
208 @@ -799,6 +807,7 @@ |
| 12937 | 209 mpeg2dec->scaled[index] = mpeg2dec->q_scale_type; |
| 210 for (i = 0; i < 32; i++) { | |
| 211 k = mpeg2dec->q_scale_type ? non_linear_scale[i] : (i << 1); | |
| 13147 | 212 + decoder->quantizer_scales[i] = k; |
| 12937 | 213 for (j = 0; j < 64; j++) |
| 214 decoder->quantizer_prescale[index][i][j] = | |
| 215 k * mpeg2dec->quantizer_matrix[index][j]; | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
216 --- libmpeg2/idct.c 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
217 +++ libmpeg2/idct.c 2006-06-16 20:12:50.000000000 +0200 |
| 19259 | 218 @@ -239,12 +239,15 @@ |
| 13864 | 219 |
| 220 void mpeg2_idct_init (uint32_t accel) | |
| 221 { | |
| 222 -#ifdef ARCH_X86 | |
| 19259 | 223 +#ifdef HAVE_MMX2 |
| 13864 | 224 if (accel & MPEG2_ACCEL_X86_MMXEXT) { |
| 225 mpeg2_idct_copy = mpeg2_idct_copy_mmxext; | |
| 226 mpeg2_idct_add = mpeg2_idct_add_mmxext; | |
| 19259 | 227 mpeg2_idct_mmx_init (); |
| 228 - } else if (accel & MPEG2_ACCEL_X86_MMX) { | |
| 229 + } else | |
| 230 +#endif | |
| 231 +#ifdef HAVE_MMX | |
| 232 + if (accel & MPEG2_ACCEL_X86_MMX) { | |
| 233 mpeg2_idct_copy = mpeg2_idct_copy_mmx; | |
| 234 mpeg2_idct_add = mpeg2_idct_add_mmx; | |
| 235 mpeg2_idct_mmx_init (); | |
| 236 @@ -254,11 +261,14 @@ | |
| 13864 | 237 } else |
| 238 #endif | |
| 239 #ifdef ARCH_ALPHA | |
| 240 +#ifdef CAN_COMPILE_ALPHA_MVI | |
| 241 if (accel & MPEG2_ACCEL_ALPHA_MVI) { | |
| 242 mpeg2_idct_copy = mpeg2_idct_copy_mvi; | |
| 243 mpeg2_idct_add = mpeg2_idct_add_mvi; | |
| 244 mpeg2_idct_alpha_init (); | |
| 245 - } else if (accel & MPEG2_ACCEL_ALPHA) { | |
| 246 + } else | |
| 247 +#endif | |
| 248 + if (accel & MPEG2_ACCEL_ALPHA) { | |
| 249 int i; | |
| 250 | |
| 251 mpeg2_idct_copy = mpeg2_idct_copy_alpha; | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
252 --- libmpeg2/idct_alpha.c 2006-06-16 20:12:26.000000000 +0200 |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
253 +++ libmpeg2/idct_alpha.c 2006-06-16 20:12:50.000000000 +0200 |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
254 @@ -157,6 +161,7 @@ |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
255 block[8*7] = (a0 - b0) >> 17; |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
256 } |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
257 |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
258 +#ifdef CAN_COMPILE_ALPHA_MVI |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
259 void mpeg2_idct_copy_mvi (int16_t * block, uint8_t * dest, const int stride) |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
260 { |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
261 uint64_t clampmask; |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
262 @@ -289,6 +294,7 @@ |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
263 stq (p7, dest + 7 * stride); |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
264 } |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
265 } |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
266 +#endif |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
267 |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
268 void mpeg2_idct_copy_alpha (int16_t * block, uint8_t * dest, const int stride) |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
269 { |
|
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
270 --- libmpeg2/idct_mmx.c 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
271 +++ libmpeg2/idct_mmx.c 2006-06-16 20:12:50.000000000 +0200 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
272 @@ -23,7 +27,7 @@ |
| 13864 | 273 |
| 274 #include "config.h" | |
| 12937 | 275 |
| 13864 | 276 -#ifdef ARCH_X86 |
| 277 +#if defined(ARCH_X86) || defined(ARCH_X86_64) | |
| 278 | |
| 279 #include <inttypes.h> | |
| 12937 | 280 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
281 --- libmpeg2/motion_comp.c 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
282 +++ libmpeg2/motion_comp.c 2006-06-16 20:12:50.000000000 +0200 |
| 19259 | 283 @@ -37,16 +37,22 @@ |
| 13864 | 284 |
| 285 void mpeg2_mc_init (uint32_t accel) | |
| 12937 | 286 { |
| 13864 | 287 -#ifdef ARCH_X86 |
| 19259 | 288 +#ifdef HAVE_MMX2 |
| 13864 | 289 if (accel & MPEG2_ACCEL_X86_MMXEXT) |
| 290 mpeg2_mc = mpeg2_mc_mmxext; | |
| 19259 | 291 - else if (accel & MPEG2_ACCEL_X86_3DNOW) |
| 292 + else | |
| 293 +#endif | |
| 294 +#ifdef HAVE_3DNOW | |
| 295 + if (accel & MPEG2_ACCEL_X86_3DNOW) | |
| 296 mpeg2_mc = mpeg2_mc_3dnow; | |
| 297 - else if (accel & MPEG2_ACCEL_X86_MMX) | |
| 298 + else | |
| 299 +#endif | |
| 300 +#ifdef HAVE_MMX | |
| 301 + if (accel & MPEG2_ACCEL_X86_MMX) | |
| 14730 | 302 mpeg2_mc = mpeg2_mc_mmx; |
| 21526 | 303 else |
| 12937 | 304 #endif |
| 14730 | 305 -#ifdef ARCH_PPC |
| 306 +#if defined(ARCH_PPC) && defined(HAVE_ALTIVEC) | |
| 12937 | 307 if (accel & MPEG2_ACCEL_PPC_ALTIVEC) |
| 308 mpeg2_mc = mpeg2_mc_altivec; | |
| 309 else | |
| 19259 | 310 @@ -52,7 +62,7 @@ |
| 12937 | 311 mpeg2_mc = mpeg2_mc_alpha; |
| 13020 | 312 else |
| 313 #endif | |
| 14730 | 314 -#ifdef ARCH_SPARC |
| 315 +#if defined(ARCH_SPARC) && defined(HAVE_VIS) | |
| 13020 | 316 if (accel & MPEG2_ACCEL_SPARC_VIS) |
| 317 mpeg2_mc = mpeg2_mc_vis; | |
| 318 else | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
319 --- libmpeg2/motion_comp_mmx.c 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
320 +++ libmpeg2/motion_comp_mmx.c 2006-06-16 20:12:50.000000000 +0200 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
321 @@ -23,7 +27,7 @@ |
| 13864 | 322 |
| 323 #include "config.h" | |
| 324 | |
| 325 -#ifdef ARCH_X86 | |
| 326 +#if defined(ARCH_X86) || defined(ARCH_X86_64) | |
| 327 | |
| 328 #include <inttypes.h> | |
| 329 | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
330 --- include/mpeg2.h 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
331 +++ libmpeg2/mpeg2.h 2006-06-16 20:12:50.000000000 +0200 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
332 @@ -82,6 +86,7 @@ |
| 13147 | 333 #define PIC_FLAG_COMPOSITE_DISPLAY 32 |
| 334 #define PIC_FLAG_SKIP 64 | |
| 335 #define PIC_FLAG_TAGS 128 | |
| 336 +#define PIC_FLAG_REPEAT_FIRST_FIELD 256 | |
| 337 #define PIC_MASK_COMPOSITE_DISPLAY 0xfffff000 | |
| 338 | |
| 339 typedef struct mpeg2_picture_s { | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
340 @@ -154,6 +159,7 @@ |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
341 #define MPEG2_ACCEL_X86_MMX 1 |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
342 #define MPEG2_ACCEL_X86_3DNOW 2 |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
343 #define MPEG2_ACCEL_X86_MMXEXT 4 |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
344 +#define MPEG2_ACCEL_X86_SSE2 8 |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
345 #define MPEG2_ACCEL_PPC_ALTIVEC 1 |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
346 #define MPEG2_ACCEL_ALPHA 1 |
|
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
347 #define MPEG2_ACCEL_ALPHA_MVI 2 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
348 --- libmpeg2/mpeg2_internal.h 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
349 +++ libmpeg2/mpeg2_internal.h 2006-06-16 20:12:50.000000000 +0200 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
350 @@ -144,6 +148,12 @@ |
| 12937 | 351 int second_field; |
| 352 | |
| 353 int mpeg1; | |
| 354 + | |
| 355 + /* for MPlayer: */ | |
| 13147 | 356 + int quantizer_scales[32]; |
| 12937 | 357 + int quantizer_scale; |
| 358 + char* quant_store; | |
| 359 + int quant_stride; | |
| 360 }; | |
| 361 | |
| 362 typedef struct { | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
363 @@ -214,6 +224,10 @@ |
| 13147 | 364 int8_t q_scale_type, scaled[4]; |
| 365 uint8_t quantizer_matrix[4][64]; | |
| 366 uint8_t new_quantizer_matrix[4][64]; | |
| 367 + | |
| 368 + /* for MPlayer: */ | |
| 369 + unsigned char *pending_buffer; | |
| 370 + int pending_length; | |
| 371 }; | |
| 372 | |
| 373 typedef struct { | |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
374 --- libmpeg2/slice.c 2006-06-16 20:12:26.000000000 +0200 |
|
18730
93241711b635
sync with 18730 (Use MPlayer's CPU detection module instead of libmpeg2's)
gpoirier
parents:
14730
diff
changeset
|
375 +++ libmpeg2/slice.c 2006-06-16 20:12:50.000000000 +0200 |
|
19024
4733c3e4f353
Update with latest changes and make diff apply cleanly.
diego
parents:
18783
diff
changeset
|
376 @@ -142,6 +146,7 @@ |
| 13147 | 377 |
| 378 quantizer_scale_code = UBITS (bit_buf, 5); | |
| 379 DUMPBITS (bit_buf, bits, 5); | |
| 380 + decoder->quantizer_scale = decoder->quantizer_scales[quantizer_scale_code]; | |
| 381 | |
| 382 decoder->quantizer_matrix[0] = | |
| 383 decoder->quantizer_prescale[0][quantizer_scale_code]; | |
| 20640 | 384 @@ -1568,6 +1569,18 @@ |
| 12937 | 385 |
| 386 #define NEXT_MACROBLOCK \ | |
| 387 do { \ | |
| 20640 | 388 + if(decoder->quant_store) { \ |
| 389 + if (decoder->picture_structure == TOP_FIELD) \ | |
| 390 + decoder->quant_store[2*decoder->quant_stride*(decoder->v_offset>>4) \ | |
| 391 + +(decoder->offset>>4)] = decoder->quantizer_scale; \ | |
| 392 + else if (decoder->picture_structure == BOTTOM_FIELD) \ | |
| 393 + decoder->quant_store[2*decoder->quant_stride*(decoder->v_offset>>4) \ | |
| 394 + + decoder->quant_stride \ | |
| 395 + +(decoder->offset>>4)] = decoder->quantizer_scale; \ | |
| 396 + else \ | |
| 12937 | 397 + decoder->quant_store[decoder->quant_stride*(decoder->v_offset>>4) \ |
| 398 + +(decoder->offset>>4)] = decoder->quantizer_scale; \ | |
| 20640 | 399 + } \ |
| 12937 | 400 decoder->offset += 16; \ |
| 401 if (decoder->offset == decoder->width) { \ | |
| 402 do { /* just so we can use the break statement */ \ | |
|
21923
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
403 @@ -1604,6 +1604,12 @@ |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
404 } \ |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
405 } while (0) |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
406 |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
407 +static void motion_dummy (mpeg2_decoder_t * const decoder, |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
408 + motion_t * const motion, |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
409 + mpeg2_mc_fct * const * const table) |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
410 +{ |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
411 +} |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
412 + |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
413 void mpeg2_init_fbuf (mpeg2_decoder_t * decoder, uint8_t * current_fbuf[3], |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
414 uint8_t * forward_fbuf[3], uint8_t * backward_fbuf[3]) |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
415 { |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
416 @@ -1661,7 +1667,9 @@ |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
417 |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
418 if (decoder->mpeg1) { |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
419 decoder->motion_parser[0] = motion_zero_420; |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
420 + decoder->motion_parser[MC_FIELD] = motion_dummy; |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
421 decoder->motion_parser[MC_FRAME] = motion_mp1; |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
422 + decoder->motion_parser[MC_DMV] = motion_dummy; |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
423 decoder->motion_parser[4] = motion_reuse_420; |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
424 } else if (decoder->picture_structure == FRAME_PICTURE) { |
|
1658f7d97b27
fix crash with http://sam.zoy.org/zzuf/lol-mplayer.m2v
henry
parents:
21571
diff
changeset
|
425 if (decoder->chroma_format == 0) { |
| 21534 | 426 --- libmpeg2/idct.c 2006-06-16 20:12:26.000000000 +0200 |
| 427 +++ libmpeg2/idct.c 2006-06-16 20:12:50.000000000 +0200 | |
| 428 @@ -253,7 +253,7 @@ | |
| 429 mpeg2_idct_mmx_init (); | |
| 430 } else | |
| 431 #endif | |
| 432 -#ifdef ARCH_PPC | |
| 433 +#if defined(ARCH_PPC) && defined(HAVE_ALTIVEC) | |
| 434 if (accel & MPEG2_ACCEL_PPC_ALTIVEC) { | |
| 435 mpeg2_idct_copy = mpeg2_idct_copy_altivec; | |
| 436 mpeg2_idct_add = mpeg2_idct_add_altivec; | |
| 21571 | 437 --- libmpeg2/idct_altivec.c 2004/08/02 11:26:43 12933 |
| 438 +++ libmpeg2/idct_altivec.c 2005/05/15 20:11:34 15484 | |
| 439 @@ -41,7 +41,7 @@ | |
| 440 typedef vector signed int vector_s32_t; | |
| 441 typedef vector unsigned int vector_u32_t; | |
| 442 | |
| 443 -#if defined(HAVE_ALTIVEC_H) && (__GNUC__ * 100 + __GNUC_MINOR__ < 303) | |
| 444 +#if defined( HAVE_ALTIVEC_H ) && !defined( __APPLE_ALTIVEC__ ) && (__GNUC__ * 100 + __GNUC_MINOR__ < 303) | |
| 445 /* work around gcc <3.3 vec_mergel bug */ | |
| 446 static inline vector_s16_t my_vec_mergel (vector_s16_t const A, | |
| 447 vector_s16_t const B) | |
| 448 @@ -56,10 +56,10 @@ | |
| 449 #define vec_mergel my_vec_mergel | |
| 450 #endif | |
| 451 | |
| 452 -#ifdef HAVE_ALTIVEC_H /* gnu */ | |
| 453 -#define VEC_S16(a,b,c,d,e,f,g,h) {a, b, c, d, e, f, g, h} | |
| 454 -#else /* apple */ | |
| 455 +#if defined( __APPLE_CC__ ) && defined( __APPLE_ALTIVEC__ ) /* apple */ | |
| 456 #define VEC_S16(a,b,c,d,e,f,g,h) (vector_s16_t) (a, b, c, d, e, f, g, h) | |
| 457 +#else /* gnu */ | |
| 458 +#define VEC_S16(a,b,c,d,e,f,g,h) {a, b, c, d, e, f, g, h} | |
| 459 #endif | |
| 460 | |
| 461 static const vector_s16_t constants ATTR_ALIGN(16) = |
