decoder/mad: convert "const" to "constexpr"

This commit is contained in:
Max Kellermann 2014-12-09 21:59:11 +01:00
parent 900c4977cc
commit e813c93e08
1 changed files with 4 additions and 4 deletions

View File

@ -504,10 +504,10 @@ struct xing {
enum xing_magic magic; /* header magic */
};
static const unsigned XING_FRAMES = 1;
static const unsigned XING_BYTES = 2;
static const unsigned XING_TOC = 4;
static const unsigned XING_SCALE = 8;
static constexpr unsigned XING_FRAMES = 1;
static constexpr unsigned XING_BYTES = 2;
static constexpr unsigned XING_TOC = 4;
static constexpr unsigned XING_SCALE = 8;
struct lame_version {
unsigned major;