comparison h264_parser.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 e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 * @file h264_parser.h 23 * @file h264_parser.h
24 * H.264 / AVC / MPEG4 part10 parser. 24 * H.264 / AVC / MPEG4 part10 parser.
25 * @author Michael Niedermayer <michaelni@gmx.at> 25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */ 26 */
27 27
28 #ifndef FFMPEG_H264_PARSER_H 28 #ifndef AVCODEC_H264_PARSER_H
29 #define FFMPEG_H264_PARSER_H 29 #define AVCODEC_H264_PARSER_H
30 30
31 #include "h264.h" 31 #include "h264.h"
32 32
33 /** 33 /**
34 * finds the end of the current frame in the bitstream. 34 * finds the end of the current frame in the bitstream.
35 * @return the position of the first byte of the next frame, or -1 35 * @return the position of the first byte of the next frame, or -1
36 */ 36 */
37 int ff_h264_find_frame_end(H264Context *h, const uint8_t *buf, int buf_size); 37 int ff_h264_find_frame_end(H264Context *h, const uint8_t *buf, int buf_size);
38 38
39 #endif /* FFMPEG_H264_PARSER_H */ 39 #endif /* AVCODEC_H264_PARSER_H */