File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1539,7 +1539,7 @@ static PaSampleFormat GetAvailableFormats( snd_pcm_t *pcm )
15391539 if ( alsa_snd_pcm_hw_params_test_format ( pcm , hwParams , SND_PCM_FORMAT_S32 ) >= 0 )
15401540 available |= paInt32 ;
15411541
1542- #ifdef __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
1542+ #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
15431543 if ( alsa_snd_pcm_hw_params_test_format ( pcm , hwParams , SND_PCM_FORMAT_S24_3LE ) >= 0 )
15441544 available |= paInt24 ;
15451545#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
@@ -1692,7 +1692,7 @@ static snd_pcm_format_t Pa2AlsaFormat( PaSampleFormat paFormat )
16921692 return SND_PCM_FORMAT_S16 ;
16931693
16941694 case paInt24 :
1695- #ifdef __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
1695+ #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
16961696 return SND_PCM_FORMAT_S24_3LE ;
16971697#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
16981698 return SND_PCM_FORMAT_S24_3BE ;
You can’t perform that action at this time.
0 commit comments