comparison flac.h @ 8659:61ae841cd13e libavcodec

define FLAC metadata types in flac.h
author jbr
date Sun, 25 Jan 2009 00:33:25 +0000
parents c4a4495715dd
children 4f1525c698e9
comparison
equal deleted inserted replaced
8658:dc8fd7c55928 8659:61ae841cd13e
27 #ifndef AVCODEC_FLAC_H 27 #ifndef AVCODEC_FLAC_H
28 #define AVCODEC_FLAC_H 28 #define AVCODEC_FLAC_H
29 29
30 #include "avcodec.h" 30 #include "avcodec.h"
31 31
32 enum {
33 FLAC_METADATA_TYPE_STREAMINFO = 0,
34 FLAC_METADATA_TYPE_PADDING,
35 FLAC_METADATA_TYPE_APPLICATION,
36 FLAC_METADATA_TYPE_SEEKTABLE,
37 FLAC_METADATA_TYPE_VORBIS_COMMENT,
38 FLAC_METADATA_TYPE_CUESHEET,
39 FLAC_METADATA_TYPE_PICTURE,
40 FLAC_METADATA_TYPE_INVALID = 127
41 };
42
32 /** 43 /**
33 * Data needed from the Streaminfo header for use by the raw FLAC demuxer 44 * Data needed from the Streaminfo header for use by the raw FLAC demuxer
34 * and/or the FLAC decoder. 45 * and/or the FLAC decoder.
35 */ 46 */
36 #define FLACSTREAMINFO \ 47 #define FLACSTREAMINFO \