comparison mjpeg.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 7a73d76aaaa0
children 04423b2f6e0b
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
28 /** 28 /**
29 * @file mjpeg.h 29 * @file mjpeg.h
30 * MJPEG encoder and decoder. 30 * MJPEG encoder and decoder.
31 */ 31 */
32 32
33 #ifndef FFMPEG_MJPEG_H 33 #ifndef AVCODEC_MJPEG_H
34 #define FFMPEG_MJPEG_H 34 #define AVCODEC_MJPEG_H
35 35
36 #include "avcodec.h" 36 #include "avcodec.h"
37 #include "bitstream.h" 37 #include "bitstream.h"
38 38
39 39
150 150
151 void ff_mjpeg_build_huffman_codes(uint8_t *huff_size, uint16_t *huff_code, 151 void ff_mjpeg_build_huffman_codes(uint8_t *huff_size, uint16_t *huff_code,
152 const uint8_t *bits_table, 152 const uint8_t *bits_table,
153 const uint8_t *val_table); 153 const uint8_t *val_table);
154 154
155 #endif /* FFMPEG_MJPEG_H */ 155 #endif /* AVCODEC_MJPEG_H */