comparison mpeg4video_parser.h @ 5830:1d83e9c34641 libavcodec

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 3fcb2f0d9ef1
children c4a4495715dd
comparison
equal deleted inserted replaced
5829:74db916a3715 5830:1d83e9c34641
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software 19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */ 21 */
22 22
23 #ifndef MPEG4VIDEO_PARSER_H 23 #ifndef FFMPEG_MPEG4VIDEO_PARSER_H
24 #define MPEG4VIDEO_PARSER_H 24 #define FFMPEG_MPEG4VIDEO_PARSER_H
25 25
26 #include "parser.h" 26 #include "parser.h"
27 27
28 /** 28 /**
29 * finds the end of the current frame in the bitstream. 29 * finds the end of the current frame in the bitstream.
30 * @return the position of the first byte of the next frame, or -1 30 * @return the position of the first byte of the next frame, or -1
31 */ 31 */
32 int ff_mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size); 32 int ff_mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size);
33 33
34 #endif /* MPEG4VIDEO_PARSER_H */ 34 #endif /* FFMPEG_MPEG4VIDEO_PARSER_H */