comparison riff.h @ 2620:792383dd085e libavformat

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 0ff503c4caef
children 6f61c3b36632
comparison
equal deleted inserted replaced
2619:ed220a21ffa5 2620:792383dd085e
23 * @file riff.h 23 * @file riff.h
24 * internal header for RIFF based (de)muxers 24 * internal header for RIFF based (de)muxers
25 * do NOT include this in end user applications 25 * do NOT include this in end user applications
26 */ 26 */
27 27
28 #ifndef FF_RIFF_H 28 #ifndef FFMPEG_RIFF_H
29 #define FF_RIFF_H 29 #define FFMPEG_RIFF_H
30 30
31 #include "avcodec.h" 31 #include "avcodec.h"
32 #include "avio.h" 32 #include "avio.h"
33 33
34 offset_t start_tag(ByteIOContext *pb, const char *tag); 34 offset_t start_tag(ByteIOContext *pb, const char *tag);
49 49
50 unsigned int codec_get_tag(const AVCodecTag *tags, int id); 50 unsigned int codec_get_tag(const AVCodecTag *tags, int id);
51 enum CodecID codec_get_id(const AVCodecTag *tags, unsigned int tag); 51 enum CodecID codec_get_id(const AVCodecTag *tags, unsigned int tag);
52 void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale); 52 void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale);
53 53
54 #endif 54 #endif /* FFMPEG_RIFF_H */