comparison voc.h @ 3852:1b6245500d8c libavformat

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 9cff515fd4c6
children 3d6e7901bf05
comparison
equal deleted inserted replaced
3851:9b3ad7f292a4 3852:1b6245500d8c
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #ifndef FFMPEG_VOC_H 22 #ifndef AVFORMAT_VOC_H
23 #define FFMPEG_VOC_H 23 #define AVFORMAT_VOC_H
24 24
25 #include "avformat.h" 25 #include "avformat.h"
26 #include "riff.h" /* for CodecTag */ 26 #include "riff.h" /* for CodecTag */
27 27
28 typedef struct voc_dec_context { 28 typedef struct voc_dec_context {
46 extern const AVCodecTag ff_voc_codec_tags[]; 46 extern const AVCodecTag ff_voc_codec_tags[];
47 47
48 int voc_get_packet(AVFormatContext *s, AVPacket *pkt, 48 int voc_get_packet(AVFormatContext *s, AVPacket *pkt,
49 AVStream *st, int max_size); 49 AVStream *st, int max_size);
50 50
51 #endif /* FFMPEG_VOC_H */ 51 #endif /* AVFORMAT_VOC_H */