comparison flac.h @ 9208:443f056ba7e7 libavcodec

share channel mode constants between the FLAC decoder and FLAC encoder
author jbr
date Sat, 21 Mar 2009 00:44:42 +0000
parents f534d0cca450
children 64246d9e583a
comparison
equal deleted inserted replaced
9207:058ade8fcc89 9208:443f056ba7e7
31 31
32 #define FLAC_STREAMINFO_SIZE 34 32 #define FLAC_STREAMINFO_SIZE 34
33 #define FLAC_MAX_CHANNELS 8 33 #define FLAC_MAX_CHANNELS 8
34 #define FLAC_MIN_BLOCKSIZE 16 34 #define FLAC_MIN_BLOCKSIZE 16
35 #define FLAC_MAX_BLOCKSIZE 65535 35 #define FLAC_MAX_BLOCKSIZE 65535
36
37 enum {
38 FLAC_CHMODE_INDEPENDENT = 0,
39 FLAC_CHMODE_LEFT_SIDE = 8,
40 FLAC_CHMODE_RIGHT_SIDE = 9,
41 FLAC_CHMODE_MID_SIDE = 10,
42 };
36 43
37 enum { 44 enum {
38 FLAC_METADATA_TYPE_STREAMINFO = 0, 45 FLAC_METADATA_TYPE_STREAMINFO = 0,
39 FLAC_METADATA_TYPE_PADDING, 46 FLAC_METADATA_TYPE_PADDING,
40 FLAC_METADATA_TYPE_APPLICATION, 47 FLAC_METADATA_TYPE_APPLICATION,