comparison lzw.h @ 5830:1d83e9c34641 libavcodec

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