comparison mjpegenc.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 1d83e9c34641
children 04423b2f6e0b
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
28 /** 28 /**
29 * @file mjpegenc.h 29 * @file mjpegenc.h
30 * MJPEG encoder. 30 * MJPEG encoder.
31 */ 31 */
32 32
33 #ifndef FFMPEG_MJPEGENC_H 33 #ifndef AVCODEC_MJPEGENC_H
34 #define FFMPEG_MJPEGENC_H 34 #define AVCODEC_MJPEGENC_H
35 35
36 #include "dsputil.h" 36 #include "dsputil.h"
37 #include "mpegvideo.h" 37 #include "mpegvideo.h"
38 38
39 typedef struct MJpegContext { 39 typedef struct MJpegContext {
55 void ff_mjpeg_encode_stuffing(PutBitContext *pbc); 55 void ff_mjpeg_encode_stuffing(PutBitContext *pbc);
56 void ff_mjpeg_encode_dc(MpegEncContext *s, int val, 56 void ff_mjpeg_encode_dc(MpegEncContext *s, int val,
57 uint8_t *huff_size, uint16_t *huff_code); 57 uint8_t *huff_size, uint16_t *huff_code);
58 void ff_mjpeg_encode_mb(MpegEncContext *s, DCTELEM block[6][64]); 58 void ff_mjpeg_encode_mb(MpegEncContext *s, DCTELEM block[6][64]);
59 59
60 #endif /* FFMPEG_MJPEGENC_H */ 60 #endif /* AVCODEC_MJPEGENC_H */