comparison golomb.h @ 5830:1d83e9c34641 libavcodec

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents e12027d324cc
children 3ec34b551aae
comparison
equal deleted inserted replaced
5829:74db916a3715 5830:1d83e9c34641
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 AVCODEC_GOLOMB_H 30 #ifndef FFMPEG_GOLOMB_H
31 #define AVCODEC_GOLOMB_H 31 #define FFMPEG_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 // AVCODEC_GOLOMB_H 507 #endif /* FFMPEG_GOLOMB_H */