diff options
author | Mans Rullgard <mans@mansr.com> | 2012-06-17 11:45:10 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-07-04 03:30:43 +0100 |
commit | d155b60fc8ec8b1e7fa9cf3b0fa9eb826efefab7 (patch) | |
tree | 3b053804ce1b874c306b90afffea2f868ddedfa3 /libavcodec/flac.h | |
parent | 93e7ef9a2472d64d550ba1cf0e7a6f206fbc8dfd (diff) | |
download | ffmpeg-d155b60fc8ec8b1e7fa9cf3b0fa9eb826efefab7.tar.gz |
flac: make FLAC_CHMODE_* constants consecutive
Diffstat (limited to 'libavcodec/flac.h')
-rw-r--r-- | libavcodec/flac.h | 8 |
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 { |