Skip to content

Commit

Permalink
[osx/ios] cosmetics, super long lines are hard to read
Browse files Browse the repository at this point in the history
  • Loading branch information
davilla committed May 16, 2012
1 parent 4735dac commit dd64e65
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion xbmc/cores/AudioEngine/Engines/CoreAudio/CoreAudioAE.h
Expand Up @@ -38,7 +38,15 @@
#include "CoreAudioAEHALOSX.h"
#endif

#define COREAUDIO_IS_RAW(x) ((x) == AE_FMT_AC3 || (x) == AE_FMT_DTS || (x) == AE_FMT_LPCM || (x) == AE_FMT_EAC3 || (x) == AE_FMT_DTSHD || (x) == AE_FMT_TRUEHD)
#define COREAUDIO_IS_RAW(x) \
( \
(x) == AE_FMT_AC3 || \
(x) == AE_FMT_DTS || \
(x) == AE_FMT_LPCM || \
(x) == AE_FMT_EAC3 || \
(x) == AE_FMT_DTSHD || \
(x) == AE_FMT_TRUEHD \
)

#if defined(TARGET_DARWIN_IOS)
# define CCoreAudioAEHAL CCoreAudioAEHALIOS
Expand Down

0 comments on commit dd64e65

Please sign in to comment.