| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  audio_rb_resampler.cpp                                               */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-01-01 22:01:57 +01:00
										 |  |  | /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2017-04-08 00:11:42 +02:00
										 |  |  | /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | #include "audio_rb_resampler.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int AudioRBResampler::get_channel_count() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!rb) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return channels; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | template <int C> | 
					
						
							|  |  |  | uint32_t AudioRBResampler::_resample(int32_t *p_dest, int p_todo, int32_t p_increment) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	uint32_t read = offset & MIX_FRAC_MASK; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (int i = 0; i < p_todo; i++) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		offset = (offset + p_increment) & (((1 << (rb_bits + MIX_FRAC_BITS)) - 1)); | 
					
						
							|  |  |  | 		read += p_increment; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		uint32_t pos = offset >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 		uint32_t frac = offset & MIX_FRAC_MASK; | 
					
						
							|  |  |  | #ifndef FAST_AUDIO
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ERR_FAIL_COND_V(pos >= rb_len, 0); | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		uint32_t pos_next = (pos + 1) & rb_mask; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		//printf("rb pos %i\n",pos);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// since this is a template with a known compile time value (C), conditionals go away when compiling.
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (C == 1) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			int32_t v0 = rb[pos]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			int32_t v0n = rb[pos_next]; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | #ifndef FAST_AUDIO
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			v0 += (v0n - v0) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			v0 <<= 16; | 
					
						
							|  |  |  | 			p_dest[i] = v0; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (C == 2) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			int32_t v0 = rb[(pos << 1) + 0]; | 
					
						
							|  |  |  | 			int32_t v1 = rb[(pos << 1) + 1]; | 
					
						
							|  |  |  | 			int32_t v0n = rb[(pos_next << 1) + 0]; | 
					
						
							|  |  |  | 			int32_t v1n = rb[(pos_next << 1) + 1]; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef FAST_AUDIO
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			v0 += (v0n - v0) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 			v1 += (v1n - v1) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			v0 <<= 16; | 
					
						
							|  |  |  | 			v1 <<= 16; | 
					
						
							|  |  |  | 			p_dest[(i << 1) + 0] = v0; | 
					
						
							|  |  |  | 			p_dest[(i << 1) + 1] = v1; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (C == 4) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			int32_t v0 = rb[(pos << 2) + 0]; | 
					
						
							|  |  |  | 			int32_t v1 = rb[(pos << 2) + 1]; | 
					
						
							|  |  |  | 			int32_t v2 = rb[(pos << 2) + 2]; | 
					
						
							|  |  |  | 			int32_t v3 = rb[(pos << 2) + 3]; | 
					
						
							|  |  |  | 			int32_t v0n = rb[(pos_next << 2) + 0]; | 
					
						
							|  |  |  | 			int32_t v1n = rb[(pos_next << 2) + 1]; | 
					
						
							|  |  |  | 			int32_t v2n = rb[(pos_next << 2) + 2]; | 
					
						
							|  |  |  | 			int32_t v3n = rb[(pos_next << 2) + 3]; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef FAST_AUDIO
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			v0 += (v0n - v0) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 			v1 += (v1n - v1) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 			v2 += (v2n - v2) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 			v3 += (v3n - v3) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			v0 <<= 16; | 
					
						
							|  |  |  | 			v1 <<= 16; | 
					
						
							|  |  |  | 			v2 <<= 16; | 
					
						
							|  |  |  | 			v3 <<= 16; | 
					
						
							|  |  |  | 			p_dest[(i << 2) + 0] = v0; | 
					
						
							|  |  |  | 			p_dest[(i << 2) + 1] = v1; | 
					
						
							|  |  |  | 			p_dest[(i << 2) + 2] = v2; | 
					
						
							|  |  |  | 			p_dest[(i << 2) + 3] = v3; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (C == 6) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			int32_t v0 = rb[(pos * 6) + 0]; | 
					
						
							|  |  |  | 			int32_t v1 = rb[(pos * 6) + 1]; | 
					
						
							|  |  |  | 			int32_t v2 = rb[(pos * 6) + 2]; | 
					
						
							|  |  |  | 			int32_t v3 = rb[(pos * 6) + 3]; | 
					
						
							|  |  |  | 			int32_t v4 = rb[(pos * 6) + 4]; | 
					
						
							|  |  |  | 			int32_t v5 = rb[(pos * 6) + 5]; | 
					
						
							|  |  |  | 			int32_t v0n = rb[(pos_next * 6) + 0]; | 
					
						
							|  |  |  | 			int32_t v1n = rb[(pos_next * 6) + 1]; | 
					
						
							|  |  |  | 			int32_t v2n = rb[(pos_next * 6) + 2]; | 
					
						
							|  |  |  | 			int32_t v3n = rb[(pos_next * 6) + 3]; | 
					
						
							|  |  |  | 			int32_t v4n = rb[(pos_next * 6) + 4]; | 
					
						
							|  |  |  | 			int32_t v5n = rb[(pos_next * 6) + 5]; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef FAST_AUDIO
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			v0 += (v0n - v0) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 			v1 += (v1n - v1) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 			v2 += (v2n - v2) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 			v3 += (v3n - v3) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 			v4 += (v4n - v4) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							|  |  |  | 			v5 += (v5n - v5) * (int32_t)frac >> MIX_FRAC_BITS; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			v0 <<= 16; | 
					
						
							|  |  |  | 			v1 <<= 16; | 
					
						
							|  |  |  | 			v2 <<= 16; | 
					
						
							|  |  |  | 			v3 <<= 16; | 
					
						
							|  |  |  | 			v4 <<= 16; | 
					
						
							|  |  |  | 			v5 <<= 16; | 
					
						
							|  |  |  | 			p_dest[(i * 6) + 0] = v0; | 
					
						
							|  |  |  | 			p_dest[(i * 6) + 1] = v1; | 
					
						
							|  |  |  | 			p_dest[(i * 6) + 2] = v2; | 
					
						
							|  |  |  | 			p_dest[(i * 6) + 3] = v3; | 
					
						
							|  |  |  | 			p_dest[(i * 6) + 4] = v4; | 
					
						
							|  |  |  | 			p_dest[(i * 6) + 5] = v5; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return read >> MIX_FRAC_BITS; //rb_read_pos=offset>>MIX_FRAC_BITS;
 | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool AudioRBResampler::mix(int32_t *p_dest, int p_frames) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!rb) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	int write_pos_cache = rb_write_pos; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	int32_t increment = (src_mix_rate * MIX_FRAC_LEN) / target_mix_rate; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int rb_todo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (write_pos_cache == rb_read_pos) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		return false; //out of buffer
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	} else if (rb_read_pos < write_pos_cache) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		rb_todo = write_pos_cache - rb_read_pos; //-1?
 | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		rb_todo = (rb_len - rb_read_pos) + write_pos_cache; //-1?
 | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	int todo = MIN(((int64_t(rb_todo) << MIX_FRAC_BITS) / increment) + 1, p_frames); | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		uint32_t read = 0; | 
					
						
							|  |  |  | 		switch (channels) { | 
					
						
							|  |  |  | 			case 1: read = _resample<1>(p_dest, todo, increment); break; | 
					
						
							|  |  |  | 			case 2: read = _resample<2>(p_dest, todo, increment); break; | 
					
						
							|  |  |  | 			case 4: read = _resample<4>(p_dest, todo, increment); break; | 
					
						
							|  |  |  | 			case 6: read = _resample<6>(p_dest, todo, increment); break; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-27 21:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		//end of stream, fadeout
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		int remaining = p_frames - todo; | 
					
						
							|  |  |  | 		if (remaining && todo > 0) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			//print_line("fadeout");
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int c = 0; c < channels; c++) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				for (int i = 0; i < todo; i++) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					int32_t samp = p_dest[i * channels + c] >> 8; | 
					
						
							|  |  |  | 					uint32_t mul = (todo - i) * 256 / todo; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 					//print_line("mul: "+itos(i)+" "+itos(mul));
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_dest[i * channels + c] = samp * mul; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		//zero out what remains there to avoid glitches
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = todo * channels; i < int(p_frames) * channels; i++) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_dest[i] = 0; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (read > rb_todo) | 
					
						
							|  |  |  | 			read = rb_todo; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		rb_read_pos = (rb_read_pos + read) & rb_mask; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error AudioRBResampler::setup(int p_channels, int p_src_mix_rate, int p_target_mix_rate, int p_buffer_msec, int p_minbuff_needed) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ERR_FAIL_COND_V(p_channels != 1 && p_channels != 2 && p_channels != 4 && p_channels != 6, ERR_INVALID_PARAMETER); | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	//float buffering_sec = int(GLOBAL_DEF("audio/stream_buffering_ms",500))/1000.0;
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	int desired_rb_bits = nearest_shift(MAX((p_buffer_msec / 1000.0) * p_src_mix_rate, p_minbuff_needed)); | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bool recreate = !rb; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (rb && (uint32_t(desired_rb_bits) != rb_bits || channels != uint32_t(p_channels))) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 		//recreate
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memdelete_arr(rb); | 
					
						
							|  |  |  | 		memdelete_arr(read_buf); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		recreate = true; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (recreate) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		channels = p_channels; | 
					
						
							|  |  |  | 		rb_bits = desired_rb_bits; | 
					
						
							|  |  |  | 		rb_len = (1 << rb_bits); | 
					
						
							|  |  |  | 		rb_mask = rb_len - 1; | 
					
						
							|  |  |  | 		rb = memnew_arr(int16_t, rb_len * p_channels); | 
					
						
							|  |  |  | 		read_buf = memnew_arr(int16_t, rb_len * p_channels); | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	src_mix_rate = p_src_mix_rate; | 
					
						
							|  |  |  | 	target_mix_rate = p_target_mix_rate; | 
					
						
							|  |  |  | 	offset = 0; | 
					
						
							|  |  |  | 	rb_read_pos = 0; | 
					
						
							|  |  |  | 	rb_write_pos = 0; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	//avoid maybe strange noises upon load
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (int i = 0; i < (rb_len * channels); i++) { | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		rb[i] = 0; | 
					
						
							|  |  |  | 		read_buf[i] = 0; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AudioRBResampler::clear() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!rb) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//should be stopped at this point but just in case
 | 
					
						
							|  |  |  | 	if (rb) { | 
					
						
							|  |  |  | 		memdelete_arr(rb); | 
					
						
							|  |  |  | 		memdelete_arr(read_buf); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	rb = NULL; | 
					
						
							|  |  |  | 	offset = 0; | 
					
						
							|  |  |  | 	rb_read_pos = 0; | 
					
						
							|  |  |  | 	rb_write_pos = 0; | 
					
						
							|  |  |  | 	read_buf = NULL; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AudioRBResampler::AudioRBResampler() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	rb = NULL; | 
					
						
							|  |  |  | 	offset = 0; | 
					
						
							|  |  |  | 	read_buf = NULL; | 
					
						
							|  |  |  | 	rb_read_pos = 0; | 
					
						
							|  |  |  | 	rb_write_pos = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rb_bits = 0; | 
					
						
							|  |  |  | 	rb_len = 0; | 
					
						
							|  |  |  | 	rb_mask = 0; | 
					
						
							|  |  |  | 	read_buff_len = 0; | 
					
						
							|  |  |  | 	channels = 0; | 
					
						
							|  |  |  | 	src_mix_rate = 0; | 
					
						
							|  |  |  | 	target_mix_rate = 0; | 
					
						
							| 
									
										
										
										
											2015-09-09 18:50:52 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AudioRBResampler::~AudioRBResampler() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (rb) { | 
					
						
							|  |  |  | 		memdelete_arr(rb); | 
					
						
							|  |  |  | 		memdelete_arr(read_buf); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |