summaryrefslogtreecommitdiff
path: root/gst-libs/gst/resample/dtos.c
blob: d3ca4de6723b3636f28ae3ba630a708e82e722db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/* Resampling library
 * Copyright (C) <2001> David A. Schleef <ds@schleef.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */


#include <string.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>

/*#include <ml.h> */
#include <resample.h>
#include <config.h>



#define short_to_double_table
/*#define short_to_double_altivec */
#define short_to_double_unroll

#ifdef short_to_double_table
static float ints_high[256];
static float ints_low[256];

void conv_double_short_table(double *dest, short *src, int n)
{
	static int init = 0;
	int i;
	unsigned int idx;
	if(!init){
		for(i=0;i<256;i++){
			ints_high[i]=256.0*((i<128)?i:i-256);
			ints_low[i]=i;
		}
		init = 1;
	}

	if(n&1){
		idx = (unsigned short)*src++;
		*dest++ = ints_high[(idx>>8)] + ints_low[(idx&0xff)];
		n-=1;
	}
	for(i=0;i<n;i+=2){
		idx = (unsigned short)*src++;
		*dest++ = ints_high[(idx>>8)] + ints_low[(idx&0xff)];
		idx = (unsigned short)*src++;
		*dest++ = ints_high[(idx>>8)] + ints_low[(idx&0xff)];
	}
}

#endif

#ifdef short_to_double_unroll
void conv_double_short_unroll(double *dest, short *src, int n)
{
	if(n&1){
		*dest++ = *src++;
		n--;
	}
	if(n&2){
		*dest++ = *src++;
		*dest++ = *src++;
		n-=2;
	}
	while(n>0){
		*dest++ = *src++;
		*dest++ = *src++;
		*dest++ = *src++;
		*dest++ = *src++;
		n-=4;
	}
}
#endif

void conv_double_short_ref(double *dest, short *src, int n)
{
	int i;
	for(i=0;i<n;i++){
		dest[i]=src[i];
	}
}

#ifdef HAVE_CPU_PPC
#if 0
static union { int i[4]; float f[4]; } av_tmp __attribute__ ((__aligned__ (16)));

void conv_double_short_altivec(double *dest, short *src, int n)
{
	int i;

	for(i=0;i<n;i+=4){
		av_tmp.i[0] = src[0];
		av_tmp.i[1] = src[1];
		av_tmp.i[2] = src[2];
		av_tmp.i[3] = src[3];

		asm(
		"	lvx 0,0,%0\n"
		"	vcfsx 1,0,0\n"
		"	stvx 1,0,%0\n"
		: : "r" (&av_tmp)
		);

		dest[0]=av_tmp.f[0];
		dest[1]=av_tmp.f[1];
		dest[2]=av_tmp.f[2];
		dest[3]=av_tmp.f[3];
		src += 4;
		dest += 4;
	}
}
#endif
#endif



/* double to short */

void conv_short_double_ref(short *dest, double *src, int n)
{
	int i;
	double x;

	for(i=0;i<n;i++){
		x = *src++;
		if(x<-32768.0)x=-32768.0;
		if(x>32767.0)x=32767.0;
		*dest++ = rint(x);
	}
}

#ifdef HAVE_CPU_PPC
void conv_short_double_ppcasm(short *dest, double *src, int n)
{
	int tmp[2];
	double min = -32768.0;
	double max = 32767.0;
	double ftmp0, ftmp1;

	asm __volatile__(
	"\taddic. %3,%3,-8\n"
	"\taddic. %6,%6,-2\n"
	"loop:\n"
	"\tlfdu %0,8(%3)\n"
	"\tfsub %1,%0,%4\n"
	"\tfsel %0,%1,%0,%4\n"
	"\tfsub %1,%0,%5\n"
	"\tfsel %0,%1,%5,%0\n"
	"\tfctiw %1,%0\n"
	"\taddic. 5,5,-1\n"
	"\tstfd %1,0(%2)\n"
	"\tlhz 9,6(%2)\n"
	"\tsthu 9,2(%6)\n"
	"\tbne loop\n"
	: "=&f" (ftmp0), "=&f" (ftmp1)
	: "b" (tmp), "r" (src), "f" (min), "f" (max), "r" (dest)
	: "r9", "r5" );

}
#endif


void conv_double_short_dstr(double *dest, short *src, int n, int dstr)
{
	int i;
	void *d = dest;
	for(i=0;i<n;i++){
		(*(double *)d)=*src++;
		d += dstr;
	}
}

void conv_short_double_sstr(short *dest, double *src, int n, int sstr)
{
	int i;
	double x;
	void *s = src;

	for(i=0;i<n;i++){
		x = *(double *)s;
		if(x<-32768.0)x=-32768.0;
		if(x>32767.0)x=32767.0;
		*dest++ = rint(x);
		s += sstr;
	}
}