summaryrefslogtreecommitdiff
path: root/libavcodec/flac.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-06-17 11:45:10 +0100
committerMans Rullgard <mans@mansr.com>2012-07-04 03:30:43 +0100
commitd155b60fc8ec8b1e7fa9cf3b0fa9eb826efefab7 (patch)
tree3b053804ce1b874c306b90afffea2f868ddedfa3 /libavcodec/flac.h
parent93e7ef9a2472d64d550ba1cf0e7a6f206fbc8dfd (diff)
flac: make FLAC_CHMODE_* constants consecutive
Diffstat (limited to 'libavcodec/flac.h')
-rw-r--r--libavcodec/flac.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/flac.h b/libavcodec/flac.h
index b826fd43bd..55bacea9ea 100644
--- a/libavcodec/flac.h
+++ b/libavcodec/flac.h
@@ -37,10 +37,10 @@
#define FLAC_MIN_FRAME_SIZE 11
enum {
- FLAC_CHMODE_INDEPENDENT = 0,
- FLAC_CHMODE_LEFT_SIDE = 8,
- FLAC_CHMODE_RIGHT_SIDE = 9,
- FLAC_CHMODE_MID_SIDE = 10,
+ FLAC_CHMODE_INDEPENDENT = 0,
+ FLAC_CHMODE_LEFT_SIDE = 1,
+ FLAC_CHMODE_RIGHT_SIDE = 2,
+ FLAC_CHMODE_MID_SIDE = 3,
};
enum {