]> git.sesse.net Git - ffmpeg/blob - libswresample/rematrix_template.c
Merge commit 'c74f81786d434dfaf9b3dff06aa96bfd23d0127b'
[ffmpeg] / libswresample / rematrix_template.c
1 /*
2  * Copyright (C) 2011-2012 Michael Niedermayer (michaelni@gmx.at)
3  *
4  * This file is part of libswresample
5  *
6  * libswresample is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * libswresample is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with libswresample; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #if defined(TEMPLATE_REMATRIX_FLT)
22 #    define ONE (1.0)
23 #    define R(x) x
24 #    define SAMPLE float
25 #    define COEFF float
26 #    define INTER float
27 #    define RENAME(x) x ## _float
28 #elif defined(TEMPLATE_REMATRIX_DBL)
29 #    define ONE (1.0)
30 #    define R(x) x
31 #    define SAMPLE double
32 #    define COEFF double
33 #    define INTER double
34 #    define RENAME(x) x ## _double
35 #elif defined(TEMPLATE_REMATRIX_S16)
36 #    define ONE (-32768)
37 #    define R(x) (((x) + 16384)>>15)
38 #    define SAMPLE int16_t
39 #    define COEFF int
40 #    define INTER int
41 #    define RENAME(x) x ## _s16
42 #endif
43
44 typedef void (RENAME(mix_any_func_type))(SAMPLE **out, const SAMPLE **in1, COEFF *coeffp, integer len);
45
46 static void RENAME(sum2)(SAMPLE *out, const SAMPLE *in1, const SAMPLE *in2, COEFF *coeffp, integer index1, integer index2, integer len){
47     int i;
48     COEFF coeff1 = coeffp[index1];
49     COEFF coeff2 = coeffp[index2];
50
51     for(i=0; i<len; i++)
52         out[i] = R(coeff1*in1[i] + coeff2*in2[i]);
53 }
54
55 static void RENAME(copy)(SAMPLE *out, const SAMPLE *in, COEFF *coeffp, integer index, integer len){
56     int i;
57     COEFF coeff = coeffp[index];
58     for(i=0; i<len; i++)
59         out[i] = R(coeff*in[i]);
60 }
61
62 static void RENAME(mix6to2)(SAMPLE **out, const SAMPLE **in, COEFF *coeffp, integer len){
63     int i;
64
65     for(i=0; i<len; i++) {
66         INTER t = in[2][i]*coeffp[0*6+2] + in[3][i]*coeffp[0*6+3];
67         out[0][i] = R(t + in[0][i]*coeffp[0*6+0] + in[4][i]*coeffp[0*6+4]);
68         out[1][i] = R(t + in[1][i]*coeffp[1*6+1] + in[5][i]*coeffp[1*6+5]);
69     }
70 }
71
72 static void RENAME(mix8to2)(SAMPLE **out, const SAMPLE **in, COEFF *coeffp, integer len){
73     int i;
74
75     for(i=0; i<len; i++) {
76         INTER t = in[2][i]*coeffp[0*8+2] + in[3][i]*coeffp[0*8+3];
77         out[0][i] = R(t + in[0][i]*coeffp[0*8+0] + in[4][i]*coeffp[0*8+4] + in[6][i]*coeffp[0*8+6]);
78         out[1][i] = R(t + in[1][i]*coeffp[1*8+1] + in[5][i]*coeffp[1*8+5] + in[7][i]*coeffp[1*8+7]);
79     }
80 }
81
82 static RENAME(mix_any_func_type) *RENAME(get_mix_any_func)(SwrContext *s){
83     if(   s->out_ch_layout == AV_CH_LAYOUT_STEREO && (s->in_ch_layout == AV_CH_LAYOUT_5POINT1 || s->in_ch_layout == AV_CH_LAYOUT_5POINT1_BACK)
84        && s->matrix[0][2] == s->matrix[1][2] && s->matrix[0][3] == s->matrix[1][3]
85        && !s->matrix[0][1] && !s->matrix[0][5] && !s->matrix[1][0] && !s->matrix[1][4]
86     )
87         return RENAME(mix6to2);
88
89     if(   s->out_ch_layout == AV_CH_LAYOUT_STEREO && s->in_ch_layout == AV_CH_LAYOUT_7POINT1
90        && s->matrix[0][2] == s->matrix[1][2] && s->matrix[0][3] == s->matrix[1][3]
91        && !s->matrix[0][1] && !s->matrix[0][5] && !s->matrix[1][0] && !s->matrix[1][4]
92        && !s->matrix[0][7] && !s->matrix[1][6]
93     )
94         return RENAME(mix8to2);
95
96     return NULL;
97 }
98
99 #undef ONE
100 #undef R
101 #undef SAMPLE
102 #undef COEFF
103 #undef INTER
104 #undef RENAME