comparison mjpegdec.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 ad0c77d2b6ee
children 7a1d037482c4
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
24 /** 24 /**
25 * @file mjpegdec.h 25 * @file mjpegdec.h
26 * MJPEG decoder. 26 * MJPEG decoder.
27 */ 27 */
28 28
29 #ifndef FFMPEG_MJPEGDEC_H 29 #ifndef AVCODEC_MJPEGDEC_H
30 #define FFMPEG_MJPEGDEC_H 30 #define AVCODEC_MJPEGDEC_H
31 31
32 #include "avcodec.h" 32 #include "avcodec.h"
33 #include "bitstream.h" 33 #include "bitstream.h"
34 #include "dsputil.h" 34 #include "dsputil.h"
35 35
106 int ff_mjpeg_decode_dqt(MJpegDecodeContext *s); 106 int ff_mjpeg_decode_dqt(MJpegDecodeContext *s);
107 int ff_mjpeg_decode_dht(MJpegDecodeContext *s); 107 int ff_mjpeg_decode_dht(MJpegDecodeContext *s);
108 int ff_mjpeg_decode_sof(MJpegDecodeContext *s); 108 int ff_mjpeg_decode_sof(MJpegDecodeContext *s);
109 int ff_mjpeg_decode_sos(MJpegDecodeContext *s); 109 int ff_mjpeg_decode_sos(MJpegDecodeContext *s);
110 110
111 #endif /* FFMPEG_MJPEGDEC_H */ 111 #endif /* AVCODEC_MJPEGDEC_H */