e2e52e85fa87f717c95c5a2f871341ae115a32b8
[melted] / src / modules / resample / filter_resample.c
1 /*
2 * filter_resample.c -- adjust audio sample frequency
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Dan Dennedy <dan@dennedy.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program 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
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #include "filter_resample.h"
22
23 #include <framework/mlt_frame.h>
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <samplerate.h>
28 #define __USE_ISOC99 1
29 #include <math.h>
30
31 #define BUFFER_LEN 20480
32 #define RESAMPLE_TYPE SRC_SINC_FASTEST
33
34 /** Get the audio.
35 */
36
37 static int resample_get_audio( mlt_frame frame, int16_t **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples )
38 {
39 // Get the properties of the a frame
40 mlt_properties properties = mlt_frame_properties( frame );
41 int output_rate = mlt_properties_get_int( properties, "resample.frequency" );
42 SRC_STATE *state = mlt_properties_get_data( properties, "resample.state", NULL );
43 SRC_DATA data;
44 float *input_buffer = mlt_properties_get_data( properties, "resample.input_buffer", NULL );
45 float *output_buffer = mlt_properties_get_data( properties, "resample.output_buffer", NULL );
46 int i;
47
48 if ( output_rate == 0 )
49 output_rate = *frequency;
50
51 // Restore the original get_audio
52 frame->get_audio = mlt_properties_get_data( properties, "resample.get_audio", NULL );
53
54 // Get the producer's audio
55 mlt_frame_get_audio( frame, buffer, format, frequency, channels, samples );
56
57 //fprintf( stderr, "resample_get_audio: output_rate %d\n", output_rate, *frequency );
58 // Return now if now work to do
59 if ( output_rate == *frequency )
60 return 0;
61
62 // Convert to floating point
63 for ( i = 0; i < *samples * *channels; ++i )
64 input_buffer[ i ] = ( float )( (*buffer)[ i ] ) / 32768;
65
66 // Resample
67 data.data_in = input_buffer;
68 data.data_out = output_buffer;
69 data.src_ratio = ( float ) output_rate / ( float ) *frequency;
70 data.input_frames = *samples;
71 data.output_frames = BUFFER_LEN / *channels;
72 data.end_of_input = 0;
73 i = src_process( state, &data );
74 if ( i == 0 )
75 {
76 if ( data.output_frames_gen > *samples )
77 {
78 *buffer = (int16_t*) malloc( data.output_frames_gen * *channels * 2 );
79 mlt_properties_set_data( properties, "audio", *buffer, *channels * data.output_frames_gen * 2, free, NULL );
80 }
81 *samples = data.output_frames_gen;
82 *frequency = output_rate;
83
84 // Convert from floating back to signed 16bit
85 for ( i = 0; i < *samples * *channels; ++i )
86 {
87 float sample = output_buffer[ i ];
88 if ( sample > 1.0 )
89 sample = 1.0;
90 if ( sample < -1.0 )
91 sample = -1.0;
92 if ( sample >= 0 )
93 (*buffer)[ i ] = lrint( 32767.0 * sample );
94 else
95 (*buffer)[ i ] = lrint( 32768.0 * sample );
96 }
97 }
98 else
99 fprintf( stderr, "resample_get_audio: %s %d,%d,%d\n", src_strerror( i ), *frequency, *samples, output_rate );
100
101 return 0;
102 }
103
104 /** Filter processing.
105 */
106
107 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
108 {
109 mlt_properties properties = mlt_filter_properties( this );
110 mlt_properties frame_props = mlt_frame_properties( frame );
111
112 // Propogate the frequency property if supplied
113 if ( mlt_properties_get( properties, "frequency" ) != NULL )
114 mlt_properties_set_int( frame_props, "resample.frequency", mlt_properties_get_int( properties, "frequency" ) );
115
116 // Propogate the other properties
117 mlt_properties_set_int( frame_props, "resample.channels", mlt_properties_get_int( properties, "channels" ) );
118 mlt_properties_set_data( frame_props, "resample.state", mlt_properties_get_data( properties, "state", NULL ), 0, NULL, NULL );
119 mlt_properties_set_data( frame_props, "resample.input_buffer", mlt_properties_get_data( properties, "input_buffer", NULL ), 0, NULL, NULL );
120 mlt_properties_set_data( frame_props, "resample.output_buffer", mlt_properties_get_data( properties, "output_buffer", NULL ), 0, NULL, NULL );
121
122 // Backup the original get_audio (it's still needed)
123 mlt_properties_set_data( frame_props, "resample.get_audio", frame->get_audio, 0, NULL, NULL );
124
125 // Override the get_audio method
126 frame->get_audio = resample_get_audio;
127
128 return frame;
129 }
130
131 /** Constructor for the filter.
132 */
133
134 mlt_filter filter_resample_init( char *arg )
135 {
136 mlt_filter this = calloc( sizeof( struct mlt_filter_s ), 1 );
137 if ( this != NULL && mlt_filter_init( this, NULL ) == 0 )
138 {
139 int error;
140 SRC_STATE *state = src_new( RESAMPLE_TYPE, 2 /* channels */, &error );
141 if ( error == 0 )
142 {
143 this->process = filter_process;
144 if ( arg != NULL )
145 mlt_properties_set_int( mlt_filter_properties( this ), "frequency", atoi( arg ) );
146 mlt_properties_set_int( mlt_filter_properties( this ), "channels", 2 );
147 mlt_properties_set_data( mlt_filter_properties( this ), "state", state, 0, (mlt_destructor)src_delete, NULL );
148 mlt_properties_set_data( mlt_filter_properties( this ), "input_buffer",
149 malloc( BUFFER_LEN ), BUFFER_LEN, free, NULL );
150 mlt_properties_set_data( mlt_filter_properties( this ), "output_buffer",
151 malloc( BUFFER_LEN ), BUFFER_LEN, free, NULL );
152 }
153 else
154 {
155 fprintf( stderr, "filter_resample_init: %s\n", src_strerror( error ) );
156 }
157 }
158 return this;
159 }
160