comparison vorbis.h @ 7760:c4a4495715dd libavcodec

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents 322023e630a6
children ddecbc18fe94
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
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 FFMPEG_VORBIS_H 21 #ifndef AVCODEC_VORBIS_H
22 #define FFMPEG_VORBIS_H 22 #define AVCODEC_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 * const ff_vorbis_vwin[8]; 27 extern const float * const 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 /* FFMPEG_VORBIS_H */ 43 #endif /* AVCODEC_VORBIS_H */