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
|
|
|
|
*/
|
|
|
|
|
2006-09-30 18:47:15 +00:00
|
|
|
#ifndef VORBIS_H
|
|
|
|
#define 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];
|
|
|
|
extern const float * ff_vorbis_vwin[8];
|
2005-05-17 19:02:43 +00:00
|
|
|
|
2006-10-01 11:11:30 +00:00
|
|
|
typedef struct {
|
|
|
|
uint_fast16_t x;
|
|
|
|
uint_fast16_t sort;
|
|
|
|
uint_fast16_t low;
|
|
|
|
uint_fast16_t high;
|
|
|
|
} floor1_entry_t;
|
|
|
|
|
|
|
|
void ff_vorbis_ready_floor1_list(floor1_entry_t * 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)
|
|
|
|
int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, uint_fast32_t num);
|
2006-10-01 17:38:07 +00:00
|
|
|
void ff_vorbis_floor1_render_list(floor1_entry_t * list, int values, uint_fast16_t * y_list, int * flag, int multiplier, float * out, int samples);
|
2006-10-01 11:59:33 +00:00
|
|
|
|
|
|
|
#define ilog(i) av_log2(2*(i))
|
2006-10-01 11:11:30 +00:00
|
|
|
|
2006-09-30 18:47:15 +00:00
|
|
|
#endif
|