comparison lzw.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 dfdff1ca78a7
children 04423b2f6e0b
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
25 * @brief LZW decoding routines 25 * @brief LZW decoding routines
26 * @author Fabrice Bellard 26 * @author Fabrice Bellard
27 * Modified for use in TIFF by Konstantin Shishkov 27 * Modified for use in TIFF by Konstantin Shishkov
28 */ 28 */
29 29
30 #ifndef FFMPEG_LZW_H 30 #ifndef AVCODEC_LZW_H
31 #define FFMPEG_LZW_H 31 #define AVCODEC_LZW_H
32 32
33 #include "bitstream.h" 33 #include "bitstream.h"
34 34
35 enum FF_LZW_MODES{ 35 enum FF_LZW_MODES{
36 FF_LZW_GIF, 36 FF_LZW_GIF,
54 54
55 void ff_lzw_encode_init(struct LZWEncodeState * s, uint8_t * outbuf, int outsize, int maxbits); 55 void ff_lzw_encode_init(struct LZWEncodeState * s, uint8_t * outbuf, int outsize, int maxbits);
56 int ff_lzw_encode(struct LZWEncodeState * s, const uint8_t * inbuf, int insize); 56 int ff_lzw_encode(struct LZWEncodeState * s, const uint8_t * inbuf, int insize);
57 int ff_lzw_encode_flush(struct LZWEncodeState * s); 57 int ff_lzw_encode_flush(struct LZWEncodeState * s);
58 58
59 #endif /* FFMPEG_LZW_H */ 59 #endif /* AVCODEC_LZW_H */