| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2007-07-17 12:57:50 +00:00
										 |  |  |  * samplerate conversion for both audio and video | 
					
						
							| 
									
										
										
										
											2009-01-19 15:46:40 +00:00
										 |  |  |  * Copyright (c) 2000 Fabrice Bellard | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2002-05-25 22:45:33 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2002-05-25 22:45:33 +00:00
										 |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2002-05-25 22:45:33 +00:00
										 |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2006-01-12 22:43:26 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2003-03-06 11:32:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2007-07-17 12:57:50 +00:00
										 |  |  |  * samplerate conversion for both audio and video | 
					
						
							| 
									
										
										
										
											2003-03-06 11:32:04 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | #include "avcodec.h"
 | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  | #include "audioconvert.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-26 14:25:22 +00:00
										 |  |  | #include "libavutil/opt.h"
 | 
					
						
							| 
									
										
										
										
											2011-02-07 14:37:08 +01:00
										 |  |  | #include "libavutil/samplefmt.h"
 | 
					
						
							| 
									
										
										
										
											2003-03-11 12:09:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  | #define MAX_CHANNELS 8
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-17 15:43:23 +00:00
										 |  |  | struct AVResampleContext; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  | static const char *context_to_name(void *ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return "audioresample"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const AVOption options[] = {{NULL}}; | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  | static const AVClass audioresample_context_class = { | 
					
						
							|  |  |  |     "ReSampleContext", context_to_name, options, LIBAVUTIL_VERSION_INT | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | struct ReSampleContext { | 
					
						
							| 
									
										
										
										
											2004-06-17 15:43:23 +00:00
										 |  |  |     struct AVResampleContext *resample_context; | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     short *temp[MAX_CHANNELS]; | 
					
						
							| 
									
										
										
										
											2004-06-17 15:43:23 +00:00
										 |  |  |     int temp_len; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     float ratio; | 
					
						
							|  |  |  |     /* channel convert */ | 
					
						
							|  |  |  |     int input_channels, output_channels, filter_channels; | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |     AVAudioConvert *convert_ctx[2]; | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     enum AVSampleFormat sample_fmt[2]; ///< input and output sample format
 | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     unsigned sample_size[2];           ///< size of one sample in sample_fmt
 | 
					
						
							|  |  |  |     short *buffer[2];                  ///< buffers used for conversion to S16
 | 
					
						
							|  |  |  |     unsigned buffer_size[2];           ///< sizes of allocated buffers
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* n1: number of samples */ | 
					
						
							|  |  |  | static void stereo_to_mono(short *output, short *input, int n1) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     short *p, *q; | 
					
						
							|  |  |  |     int n = n1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p = input; | 
					
						
							|  |  |  |     q = output; | 
					
						
							|  |  |  |     while (n >= 4) { | 
					
						
							|  |  |  |         q[0] = (p[0] + p[1]) >> 1; | 
					
						
							|  |  |  |         q[1] = (p[2] + p[3]) >> 1; | 
					
						
							|  |  |  |         q[2] = (p[4] + p[5]) >> 1; | 
					
						
							|  |  |  |         q[3] = (p[6] + p[7]) >> 1; | 
					
						
							|  |  |  |         q += 4; | 
					
						
							|  |  |  |         p += 8; | 
					
						
							|  |  |  |         n -= 4; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     while (n > 0) { | 
					
						
							|  |  |  |         q[0] = (p[0] + p[1]) >> 1; | 
					
						
							|  |  |  |         q++; | 
					
						
							|  |  |  |         p += 2; | 
					
						
							|  |  |  |         n--; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* n1: number of samples */ | 
					
						
							|  |  |  | static void mono_to_stereo(short *output, short *input, int n1) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     short *p, *q; | 
					
						
							|  |  |  |     int n = n1; | 
					
						
							|  |  |  |     int v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p = input; | 
					
						
							|  |  |  |     q = output; | 
					
						
							|  |  |  |     while (n >= 4) { | 
					
						
							|  |  |  |         v = p[0]; q[0] = v; q[1] = v; | 
					
						
							|  |  |  |         v = p[1]; q[2] = v; q[3] = v; | 
					
						
							|  |  |  |         v = p[2]; q[4] = v; q[5] = v; | 
					
						
							|  |  |  |         v = p[3]; q[6] = v; q[7] = v; | 
					
						
							|  |  |  |         q += 8; | 
					
						
							|  |  |  |         p += 4; | 
					
						
							|  |  |  |         n -= 4; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     while (n > 0) { | 
					
						
							|  |  |  |         v = p[0]; q[0] = v; q[1] = v; | 
					
						
							|  |  |  |         q += 2; | 
					
						
							|  |  |  |         p += 1; | 
					
						
							|  |  |  |         n--; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-23 17:22:02 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  | 5.1 to stereo input: [fl, fr, c, lfe, rl, rr] | 
					
						
							|  |  |  | - Left = front_left + rear_gain * rear_left + center_gain * center | 
					
						
							|  |  |  | - Right = front_right + rear_gain * rear_right + center_gain * center | 
					
						
							|  |  |  | Where rear_gain is usually around 0.5-1.0 and | 
					
						
							|  |  |  |       center_gain is almost always 0.7 (-3 dB) | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | static void surround_to_stereo(short **output, short *input, int channels, int samples) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     short l, r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < samples; i++) { | 
					
						
							| 
									
										
										
										
											2011-09-01 02:15:39 +02:00
										 |  |  |         int fl,fr,c,rl,rr; | 
					
						
							| 
									
										
										
										
											2011-05-23 17:22:02 +02:00
										 |  |  |         fl = input[0]; | 
					
						
							|  |  |  |         fr = input[1]; | 
					
						
							|  |  |  |         c = input[2]; | 
					
						
							| 
									
										
										
										
											2011-09-01 02:15:39 +02:00
										 |  |  |         // lfe = input[3];
 | 
					
						
							| 
									
										
										
										
											2011-05-23 17:22:02 +02:00
										 |  |  |         rl = input[4]; | 
					
						
							|  |  |  |         rr = input[5]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         l = av_clip_int16(fl + (0.5 * rl) + (0.7 * c)); | 
					
						
							|  |  |  |         r = av_clip_int16(fr + (0.5 * rr) + (0.7 * c)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* output l & r. */ | 
					
						
							|  |  |  |         *output[0]++ = l; | 
					
						
							|  |  |  |         *output[1]++ = r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* increment input. */ | 
					
						
							|  |  |  |         input += channels; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  | static void deinterleave(short **output, short *input, int channels, int samples) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     int i, j; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     for (i = 0; i < samples; i++) { | 
					
						
							|  |  |  |         for (j = 0; j < channels; j++) { | 
					
						
							|  |  |  |             *output[j]++ = *input++; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  | static void interleave(short *output, short **input, int channels, int samples) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     int i, j; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     for (i = 0; i < samples; i++) { | 
					
						
							|  |  |  |         for (j = 0; j < channels; j++) { | 
					
						
							|  |  |  |             *output++ = *input[j]++; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-20 07:57:00 +00:00
										 |  |  | static void ac3_5p1_mux(short *output, short *input1, short *input2, int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     short l, r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) { | 
					
						
							|  |  |  |         l = *input1++; | 
					
						
							|  |  |  |         r = *input2++; | 
					
						
							|  |  |  |         *output++ = l;                  /* left */ | 
					
						
							|  |  |  |         *output++ = (l / 2) + (r / 2);  /* center */ | 
					
						
							|  |  |  |         *output++ = r;                  /* right */ | 
					
						
							|  |  |  |         *output++ = 0;                  /* left surround */ | 
					
						
							|  |  |  |         *output++ = 0;                  /* right surroud */ | 
					
						
							|  |  |  |         *output++ = 0;                  /* low freq */ | 
					
						
							| 
									
										
										
										
											2003-08-20 07:57:00 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 11:26:43 +02:00
										 |  |  | #define SUPPORT_RESAMPLE(ch1, ch2, ch3, ch4, ch5, ch6, ch7, ch8) \
 | 
					
						
							|  |  |  |     ch8<<7 | ch7<<6 | ch6<<5 | ch5<<4 | ch4<<3 | ch3<<2 | ch2<<1 | ch1<<0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const uint8_t supported_resampling[MAX_CHANNELS] = { | 
					
						
							| 
									
										
										
										
											2011-09-01 20:25:32 +02:00
										 |  |  |     // output ch:    1  2  3  4  5  6  7  8
 | 
					
						
							| 
									
										
										
										
											2011-06-08 11:26:43 +02:00
										 |  |  |     SUPPORT_RESAMPLE(1, 1, 0, 0, 0, 0, 0, 0), // 1 input channel
 | 
					
						
							|  |  |  |     SUPPORT_RESAMPLE(1, 1, 0, 0, 0, 1, 0, 0), // 2 input channels
 | 
					
						
							|  |  |  |     SUPPORT_RESAMPLE(0, 0, 1, 0, 0, 0, 0, 0), // 3 input channels
 | 
					
						
							|  |  |  |     SUPPORT_RESAMPLE(0, 0, 0, 1, 0, 0, 0, 0), // 4 input channels
 | 
					
						
							|  |  |  |     SUPPORT_RESAMPLE(0, 0, 0, 0, 1, 0, 0, 0), // 5 input channels
 | 
					
						
							|  |  |  |     SUPPORT_RESAMPLE(0, 1, 0, 0, 0, 1, 0, 0), // 6 input channels
 | 
					
						
							|  |  |  |     SUPPORT_RESAMPLE(0, 0, 0, 0, 0, 0, 1, 0), // 7 input channels
 | 
					
						
							|  |  |  |     SUPPORT_RESAMPLE(0, 0, 0, 0, 0, 0, 0, 1), // 8 input channels
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  | ReSampleContext *av_audio_resample_init(int output_channels, int input_channels, | 
					
						
							|  |  |  |                                         int output_rate, int input_rate, | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |                                         enum AVSampleFormat sample_fmt_out, | 
					
						
							|  |  |  |                                         enum AVSampleFormat sample_fmt_in, | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |                                         int filter_length, int log2_phase_count, | 
					
						
							|  |  |  |                                         int linear, double cutoff) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     ReSampleContext *s; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     if (input_channels > MAX_CHANNELS) { | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |         av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |                "Resampling with input channels greater than %d is unsupported.\n", | 
					
						
							|  |  |  |                MAX_CHANNELS); | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-06-08 11:26:43 +02:00
										 |  |  |     if (!(supported_resampling[input_channels-1] & (1<<(output_channels-1)))) { | 
					
						
							|  |  |  |         int i; | 
					
						
							|  |  |  |         av_log(NULL, AV_LOG_ERROR, "Unsupported audio resampling. Allowed " | 
					
						
							|  |  |  |                "output channels for %d input channel%s", input_channels, | 
					
						
							|  |  |  |                input_channels > 1 ? "s:" : ":"); | 
					
						
							|  |  |  |         for (i = 0; i < MAX_CHANNELS; i++) | 
					
						
							|  |  |  |             if (supported_resampling[input_channels-1] & (1<<i)) | 
					
						
							|  |  |  |                 av_log(NULL, AV_LOG_ERROR, " %d", i + 1); | 
					
						
							|  |  |  |         av_log(NULL, AV_LOG_ERROR, "\n"); | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2011-05-10 15:10:31 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s = av_mallocz(sizeof(ReSampleContext)); | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     if (!s) { | 
					
						
							| 
									
										
										
										
											2007-12-15 10:03:49 +00:00
										 |  |  |         av_log(NULL, AV_LOG_ERROR, "Can't allocate memory for resample context.\n"); | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->ratio = (float)output_rate / (float)input_rate; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     s->input_channels = input_channels; | 
					
						
							|  |  |  |     s->output_channels = output_channels; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     s->filter_channels = s->input_channels; | 
					
						
							|  |  |  |     if (s->output_channels < s->filter_channels) | 
					
						
							|  |  |  |         s->filter_channels = s->output_channels; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     s->sample_fmt[0]  = sample_fmt_in; | 
					
						
							|  |  |  |     s->sample_fmt[1]  = sample_fmt_out; | 
					
						
							| 
									
										
										
										
											2011-06-07 13:40:22 -04:00
										 |  |  |     s->sample_size[0] = av_get_bytes_per_sample(s->sample_fmt[0]); | 
					
						
							|  |  |  |     s->sample_size[1] = av_get_bytes_per_sample(s->sample_fmt[1]); | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     if (s->sample_fmt[0] != AV_SAMPLE_FMT_S16) { | 
					
						
							|  |  |  |         if (!(s->convert_ctx[0] = av_audio_convert_alloc(AV_SAMPLE_FMT_S16, 1, | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |                                                          s->sample_fmt[0], 1, NULL, 0))) { | 
					
						
							|  |  |  |             av_log(s, AV_LOG_ERROR, | 
					
						
							|  |  |  |                    "Cannot convert %s sample format to s16 sample format\n", | 
					
						
							| 
									
										
										
										
											2010-11-03 20:19:34 +00:00
										 |  |  |                    av_get_sample_fmt_name(s->sample_fmt[0])); | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |             av_free(s); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     if (s->sample_fmt[1] != AV_SAMPLE_FMT_S16) { | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |         if (!(s->convert_ctx[1] = av_audio_convert_alloc(s->sample_fmt[1], 1, | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |                                                          AV_SAMPLE_FMT_S16, 1, NULL, 0))) { | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |             av_log(s, AV_LOG_ERROR, | 
					
						
							|  |  |  |                    "Cannot convert s16 sample format to %s sample format\n", | 
					
						
							| 
									
										
										
										
											2010-11-03 20:19:34 +00:00
										 |  |  |                    av_get_sample_fmt_name(s->sample_fmt[1])); | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |             av_audio_convert_free(s->convert_ctx[0]); | 
					
						
							|  |  |  |             av_free(s); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     s->resample_context = av_resample_init(output_rate, input_rate, | 
					
						
							|  |  |  |                                            filter_length, log2_phase_count, | 
					
						
							|  |  |  |                                            linear, cutoff); | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-11 08:16:08 +00:00
										 |  |  |     *(const AVClass**)s->resample_context = &audioresample_context_class; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     return s; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* resample audio. 'nb_samples' is the number of input samples */ | 
					
						
							|  |  |  | /* XXX: optimize it ! */ | 
					
						
							|  |  |  | int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i, nb_samples1; | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     short *bufin[MAX_CHANNELS]; | 
					
						
							|  |  |  |     short *bufout[MAX_CHANNELS]; | 
					
						
							|  |  |  |     short *buftmp2[MAX_CHANNELS], *buftmp3[MAX_CHANNELS]; | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |     short *output_bak = NULL; | 
					
						
							| 
									
										
										
										
											2001-08-13 21:48:05 +00:00
										 |  |  |     int lenout; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-30 14:15:31 +00:00
										 |  |  |     if (s->input_channels == s->output_channels && s->ratio == 1.0 && 0) { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         /* nothing to do */ | 
					
						
							|  |  |  |         memcpy(output, input, nb_samples * s->input_channels * sizeof(short)); | 
					
						
							|  |  |  |         return nb_samples; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     if (s->sample_fmt[0] != AV_SAMPLE_FMT_S16) { | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |         int istride[1] = { s->sample_size[0] }; | 
					
						
							|  |  |  |         int ostride[1] = { 2 }; | 
					
						
							|  |  |  |         const void *ibuf[1] = { input }; | 
					
						
							|  |  |  |         void       *obuf[1]; | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |         unsigned input_size = nb_samples * s->input_channels * 2; | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!s->buffer_size[0] || s->buffer_size[0] < input_size) { | 
					
						
							|  |  |  |             av_free(s->buffer[0]); | 
					
						
							|  |  |  |             s->buffer_size[0] = input_size; | 
					
						
							|  |  |  |             s->buffer[0] = av_malloc(s->buffer_size[0]); | 
					
						
							|  |  |  |             if (!s->buffer[0]) { | 
					
						
							| 
									
										
										
										
											2009-06-11 08:14:50 +00:00
										 |  |  |                 av_log(s->resample_context, AV_LOG_ERROR, "Could not allocate buffer\n"); | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         obuf[0] = s->buffer[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (av_audio_convert(s->convert_ctx[0], obuf, ostride, | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |                              ibuf, istride, nb_samples * s->input_channels) < 0) { | 
					
						
							|  |  |  |             av_log(s->resample_context, AV_LOG_ERROR, | 
					
						
							|  |  |  |                    "Audio sample format conversion failed\n"); | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |         input = s->buffer[0]; | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-09 01:00:44 +02:00
										 |  |  |     lenout= 2*s->output_channels*nb_samples * s->ratio + 16; | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     if (s->sample_fmt[1] != AV_SAMPLE_FMT_S16) { | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |         output_bak = output; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 15:26:45 +02:00
										 |  |  |         if (!s->buffer_size[1] || s->buffer_size[1] < 2*lenout) { | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |             av_free(s->buffer[1]); | 
					
						
							| 
									
										
										
										
											2011-10-27 15:26:45 +02:00
										 |  |  |             s->buffer_size[1] = 2*lenout; | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |             s->buffer[1] = av_malloc(s->buffer_size[1]); | 
					
						
							|  |  |  |             if (!s->buffer[1]) { | 
					
						
							| 
									
										
										
										
											2009-06-11 08:14:50 +00:00
										 |  |  |                 av_log(s->resample_context, AV_LOG_ERROR, "Could not allocate buffer\n"); | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         output = s->buffer[1]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-13 21:48:05 +00:00
										 |  |  |     /* XXX: move those malloc to resample init code */ | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     for (i = 0; i < s->filter_channels; i++) { | 
					
						
							|  |  |  |         bufin[i] = av_malloc((nb_samples + s->temp_len) * sizeof(short)); | 
					
						
							| 
									
										
										
										
											2004-06-17 15:43:23 +00:00
										 |  |  |         memcpy(bufin[i], s->temp[i], s->temp_len * sizeof(short)); | 
					
						
							|  |  |  |         buftmp2[i] = bufin[i] + s->temp_len; | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |         bufout[i] = av_malloc(lenout * sizeof(short)); | 
					
						
							| 
									
										
										
										
											2004-06-17 15:43:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     if (s->input_channels == 2 && s->output_channels == 1) { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         buftmp3[0] = output; | 
					
						
							|  |  |  |         stereo_to_mono(buftmp2[0], input, nb_samples); | 
					
						
							| 
									
										
										
										
											2003-08-20 07:57:00 +00:00
										 |  |  |     } else if (s->output_channels >= 2 && s->input_channels == 1) { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         buftmp3[0] = bufout[0]; | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |         memcpy(buftmp2[0], input, nb_samples * sizeof(short)); | 
					
						
							| 
									
										
										
										
											2011-05-23 17:22:02 +02:00
										 |  |  |     } else if (s->input_channels == 6 && s->output_channels ==2) { | 
					
						
							|  |  |  |         buftmp3[0] = bufout[0]; | 
					
						
							|  |  |  |         buftmp3[1] = bufout[1]; | 
					
						
							|  |  |  |         surround_to_stereo(buftmp2, input, s->input_channels, nb_samples); | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     } else if (s->output_channels >= s->input_channels && s->input_channels >= 2) { | 
					
						
							|  |  |  |         for (i = 0; i < s->input_channels; i++) { | 
					
						
							|  |  |  |             buftmp3[i] = bufout[i]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         deinterleave(buftmp2, input, s->input_channels, nb_samples); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         buftmp3[0] = output; | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |         memcpy(buftmp2[0], input, nb_samples * sizeof(short)); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-17 15:43:23 +00:00
										 |  |  |     nb_samples += s->temp_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     /* resample each channel */ | 
					
						
							|  |  |  |     nb_samples1 = 0; /* avoid warning */ | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |     for (i = 0; i < s->filter_channels; i++) { | 
					
						
							| 
									
										
										
										
											2004-06-17 15:43:23 +00:00
										 |  |  |         int consumed; | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |         int is_last = i + 1 == s->filter_channels; | 
					
						
							| 
									
										
										
										
											2004-06-17 15:43:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |         nb_samples1 = av_resample(s->resample_context, buftmp3[i], bufin[i], | 
					
						
							|  |  |  |                                   &consumed, nb_samples, lenout, is_last); | 
					
						
							|  |  |  |         s->temp_len = nb_samples - consumed; | 
					
						
							|  |  |  |         s->temp[i] = av_realloc(s->temp[i], s->temp_len * sizeof(short)); | 
					
						
							|  |  |  |         memcpy(s->temp[i], bufin[i] + consumed, s->temp_len * sizeof(short)); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->output_channels == 2 && s->input_channels == 1) { | 
					
						
							|  |  |  |         mono_to_stereo(output, buftmp3[0], nb_samples1); | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     } else if (s->output_channels == 6 && s->input_channels == 2) { | 
					
						
							| 
									
										
										
										
											2003-08-20 07:57:00 +00:00
										 |  |  |         ac3_5p1_mux(output, buftmp3[0], buftmp3[1], nb_samples1); | 
					
						
							| 
									
										
										
										
											2011-05-23 17:22:02 +02:00
										 |  |  |     } else if ((s->output_channels == s->input_channels && s->input_channels >= 2) || | 
					
						
							|  |  |  |                (s->output_channels == 2 && s->input_channels == 6)) { | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |         interleave(output, buftmp3, s->output_channels, nb_samples1); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     if (s->sample_fmt[1] != AV_SAMPLE_FMT_S16) { | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |         int istride[1] = { 2 }; | 
					
						
							|  |  |  |         int ostride[1] = { s->sample_size[1] }; | 
					
						
							|  |  |  |         const void *ibuf[1] = { output }; | 
					
						
							|  |  |  |         void       *obuf[1] = { output_bak }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (av_audio_convert(s->convert_ctx[1], obuf, ostride, | 
					
						
							| 
									
										
										
										
											2011-05-10 16:58:01 -07:00
										 |  |  |                              ibuf, istride, nb_samples1 * s->output_channels) < 0) { | 
					
						
							|  |  |  |             av_log(s->resample_context, AV_LOG_ERROR, | 
					
						
							|  |  |  |                    "Audio sample format convertion failed\n"); | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     for (i = 0; i < s->filter_channels; i++) { | 
					
						
							| 
									
										
										
										
											2004-06-18 02:45:09 +00:00
										 |  |  |         av_free(bufin[i]); | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |         av_free(bufout[i]); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-08-13 21:48:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     return nb_samples1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void audio_resample_close(ReSampleContext *s) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2004-06-17 15:43:23 +00:00
										 |  |  |     av_resample_close(s->resample_context); | 
					
						
							| 
									
										
										
										
											2011-05-10 14:24:05 -07:00
										 |  |  |     for (i = 0; i < s->filter_channels; i++) | 
					
						
							|  |  |  |         av_freep(&s->temp[i]); | 
					
						
							| 
									
										
										
										
											2009-02-11 22:57:10 +00:00
										 |  |  |     av_freep(&s->buffer[0]); | 
					
						
							|  |  |  |     av_freep(&s->buffer[1]); | 
					
						
							|  |  |  |     av_audio_convert_free(s->convert_ctx[0]); | 
					
						
							|  |  |  |     av_audio_convert_free(s->convert_ctx[1]); | 
					
						
							| 
									
										
										
										
											2002-05-18 23:03:29 +00:00
										 |  |  |     av_free(s); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | } |