comparison golomb.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 3ec34b551aae
children 4f0e33b1a228
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
25 * @brief 25 * @brief
26 * exp golomb vlc stuff 26 * exp golomb vlc stuff
27 * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi 27 * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi
28 */ 28 */
29 29
30 #ifndef FFMPEG_GOLOMB_H 30 #ifndef AVCODEC_GOLOMB_H
31 #define FFMPEG_GOLOMB_H 31 #define AVCODEC_GOLOMB_H
32 32
33 #include <stdint.h> 33 #include <stdint.h>
34 #include "bitstream.h" 34 #include "bitstream.h"
35 35
36 #define INVALID_VLC 0x80000000 36 #define INVALID_VLC 0x80000000
502 v ^= (v>>31); 502 v ^= (v>>31);
503 503
504 set_ur_golomb_jpegls(pb, v, k, limit, esc_len); 504 set_ur_golomb_jpegls(pb, v, k, limit, esc_len);
505 } 505 }
506 506
507 #endif /* FFMPEG_GOLOMB_H */ 507 #endif /* AVCODEC_GOLOMB_H */