comparison vorbis.h @ 5830:1d83e9c34641 libavcodec

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents c8c591fe26f8
children 322023e630a6
comparison
equal deleted inserted replaced
5829:74db916a3715 5830:1d83e9c34641
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #ifndef VORBIS_H 21 #ifndef FFMPEG_VORBIS_H
22 #define VORBIS_H 22 #define FFMPEG_VORBIS_H
23 23
24 #include "avcodec.h" 24 #include "avcodec.h"
25 25
26 extern const float ff_vorbis_floor1_inverse_db_table[256]; 26 extern const float ff_vorbis_floor1_inverse_db_table[256];
27 extern const float * ff_vorbis_vwin[8]; 27 extern const float * ff_vorbis_vwin[8];
38 int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, uint_fast32_t num); 38 int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, uint_fast32_t num);
39 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); 39 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);
40 40
41 #define ilog(i) av_log2(2*(i)) 41 #define ilog(i) av_log2(2*(i))
42 42
43 #endif 43 #endif /* FFMPEG_VORBIS_H */