| 
									
										
										
										
											2006-09-10 14:02:42 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2006-09-30 18:47:15 +00:00
										 |  |  |  * copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org> | 
					
						
							| 
									
										
										
										
											2006-09-10 14:02:42 +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 | 
					
						
							| 
									
										
										
										
											2006-09-10 14:02:42 +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. | 
					
						
							| 
									
										
										
										
											2006-09-10 14:02:42 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2006-09-10 14:02:42 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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-09-10 14:02:42 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-31 07:39:47 +00:00
										 |  |  | #ifndef AVCODEC_VORBIS_H
 | 
					
						
							|  |  |  | #define AVCODEC_VORBIS_H
 | 
					
						
							| 
									
										
										
										
											2005-05-17 19:02:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-01 13:45:17 +00:00
										 |  |  | #include "avcodec.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-30 18:47:15 +00:00
										 |  |  | extern const float ff_vorbis_floor1_inverse_db_table[256]; | 
					
						
							| 
									
										
										
										
											2008-06-24 20:01:31 +00:00
										 |  |  | extern const float * const ff_vorbis_vwin[8]; | 
					
						
							| 
									
										
										
										
											2010-01-29 13:51:25 +00:00
										 |  |  | extern const uint8_t ff_vorbis_channel_layout_offsets[8][8]; | 
					
						
							| 
									
										
										
										
											2010-06-27 09:25:05 +00:00
										 |  |  | extern const uint8_t ff_vorbis_encoding_channel_layout_offsets[8][8]; | 
					
						
							| 
									
										
										
										
											2011-11-25 12:51:57 +00:00
										 |  |  | extern const uint64_t ff_vorbis_channel_layouts[9]; | 
					
						
							| 
									
										
										
										
											2005-05-17 19:02:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-01 11:11:30 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2011-04-29 16:08:20 +02:00
										 |  |  |     uint16_t x; | 
					
						
							|  |  |  |     uint16_t sort; | 
					
						
							|  |  |  |     uint16_t low; | 
					
						
							|  |  |  |     uint16_t high; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  | } vorbis_floor1_entry; | 
					
						
							| 
									
										
										
										
											2006-10-01 11:11:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  | void ff_vorbis_ready_floor1_list(vorbis_floor1_entry * list, int values); | 
					
						
							| 
									
										
										
										
											2006-10-01 11:59:33 +00:00
										 |  |  | unsigned int ff_vorbis_nth_root(unsigned int x, unsigned int n); // x^(1/n)
 | 
					
						
							| 
									
										
										
										
											2011-04-29 20:12:48 +02:00
										 |  |  | int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, unsigned num); | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | void ff_vorbis_floor1_render_list(vorbis_floor1_entry * list, int values, | 
					
						
							| 
									
										
										
										
											2011-04-29 16:08:20 +02:00
										 |  |  |                                   uint16_t *y_list, int *flag, | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |                                   int multiplier, float * out, int samples); | 
					
						
							| 
									
										
										
										
											2010-03-06 22:36:45 +00:00
										 |  |  | void vorbis_inverse_coupling(float *mag, float *ang, int blocksize); | 
					
						
							| 
									
										
										
										
											2006-10-01 11:59:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define ilog(i) av_log2(2*(i))
 | 
					
						
							| 
									
										
										
										
											2006-10-01 11:11:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-31 07:39:47 +00:00
										 |  |  | #endif /* AVCODEC_VORBIS_H */
 |