diff options
author | Max Kellermann <max@duempel.org> | 2008-10-31 09:19:53 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-31 09:19:53 +0100 |
commit | ea515494cb23160c2eb05835411b8927a025026f (patch) | |
tree | 8b776099c50bc1b41b5a986eb9811e621e40e81c /src/compress.h | |
parent | 5ef17ac1aa9839208513be67a64fbf78658cf21e (diff) | |
download | mpd-ea515494cb23160c2eb05835411b8927a025026f.tar.gz mpd-ea515494cb23160c2eb05835411b8927a025026f.tar.xz mpd-ea515494cb23160c2eb05835411b8927a025026f.zip |
added prefix to header macros
"LOG_H" is a macro which is also used by ffmpeg/log.h. This is
ffmpeg's fault, because short macros should be reserved for
applications, but since it's always a good idea to choose prefixed
macro names, even for applications, we are going to do that in MPD.
Diffstat (limited to 'src/compress.h')
-rw-r--r-- | src/compress.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compress.h b/src/compress.h index c0cee7821..bb4035fb4 100644 --- a/src/compress.h +++ b/src/compress.h @@ -20,8 +20,8 @@ * */ -#ifndef COMPRESS_H -#define COMPRESS_H +#ifndef MPD_COMPRESS_H +#define MPD_COMPRESS_H /* These are copied from the AudioCompress config.h, mainly because CompressDo * needs GAINSHIFT defined. The rest are here so they can be used as defaults |