comparison h264pred.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 c4de4b187b4f
children 920ded20b469
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 * @file h264pred.h 23 * @file h264pred.h
24 * H.264 / AVC / MPEG4 prediction functions. 24 * H.264 / AVC / MPEG4 prediction functions.
25 * @author Michael Niedermayer <michaelni@gmx.at> 25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */ 26 */
27 27
28 #ifndef FFMPEG_H264PRED_H 28 #ifndef AVCODEC_H264PRED_H
29 #define FFMPEG_H264PRED_H 29 #define AVCODEC_H264PRED_H
30 30
31 #include "libavutil/common.h" 31 #include "libavutil/common.h"
32 32
33 /** 33 /**
34 * Prediction types 34 * Prediction types
77 void (*pred16x16[4+3])(uint8_t *src, int stride); 77 void (*pred16x16[4+3])(uint8_t *src, int stride);
78 }H264PredContext; 78 }H264PredContext;
79 79
80 void ff_h264_pred_init(H264PredContext *h, int codec_id); 80 void ff_h264_pred_init(H264PredContext *h, int codec_id);
81 81
82 #endif /* FFMPEG_H264PRED_H */ 82 #endif /* AVCODEC_H264PRED_H */