comparison intrax8.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 1d735690e172
children 0dce4fe6e6f3
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
14 * You should have received a copy of the GNU Lesser General Public 14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software 15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */ 17 */
18 18
19 #ifndef FFMPEG_INTRAX8_H 19 #ifndef AVCODEC_INTRAX8_H
20 #define FFMPEG_INTRAX8_H 20 #define AVCODEC_INTRAX8_H
21 21
22 #include "bitstream.h" 22 #include "bitstream.h"
23 #include "mpegvideo.h" 23 #include "mpegvideo.h"
24 24
25 typedef struct{ 25 typedef struct{
52 52
53 void ff_intrax8_common_init(IntraX8Context * w, MpegEncContext * const s); 53 void ff_intrax8_common_init(IntraX8Context * w, MpegEncContext * const s);
54 void ff_intrax8_common_end(IntraX8Context * w); 54 void ff_intrax8_common_end(IntraX8Context * w);
55 int ff_intrax8_decode_picture(IntraX8Context * w, int quant, int halfpq); 55 int ff_intrax8_decode_picture(IntraX8Context * w, int quant, int halfpq);
56 56
57 #endif /* FFMPEG_INTRAX8_H */ 57 #endif /* AVCODEC_INTRAX8_H */