diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-03-21 00:44:42 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-03-21 00:44:42 +0000 |
commit | 3159780b18976dfd108576da473f4f97a9d7ca6f (patch) | |
tree | 4e358d1f1082abda81e90145a7c60783e909add3 /libavcodec/flac.h | |
parent | c15020dd1ddd9bcedcd92e6eac8100d0b71ddf62 (diff) | |
download | ffmpeg-3159780b18976dfd108576da473f4f97a9d7ca6f.tar.gz |
share channel mode constants between the FLAC decoder and FLAC encoder
Originally committed as revision 18082 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flac.h')
-rw-r--r-- | libavcodec/flac.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/flac.h b/libavcodec/flac.h index c957893d30..1e44a3b394 100644 --- a/libavcodec/flac.h +++ b/libavcodec/flac.h @@ -35,6 +35,13 @@ #define FLAC_MAX_BLOCKSIZE 65535 enum { + FLAC_CHMODE_INDEPENDENT = 0, + FLAC_CHMODE_LEFT_SIDE = 8, + FLAC_CHMODE_RIGHT_SIDE = 9, + FLAC_CHMODE_MID_SIDE = 10, +}; + +enum { FLAC_METADATA_TYPE_STREAMINFO = 0, FLAC_METADATA_TYPE_PADDING, FLAC_METADATA_TYPE_APPLICATION, |