mirror of
https://github.com/mpv-player/mpv
synced 2025-01-03 13:32:16 +00:00
Fix multiple inclusion guards, identifiers starting with __ are reserved
for the system. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25198 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
09270628da
commit
df58d5f00d
@ -11,8 +11,8 @@
|
||||
//=============================================================================
|
||||
*/
|
||||
|
||||
#ifndef __af_format_alaw_c
|
||||
#define __af_format_alaw_c
|
||||
#ifndef AF_FORMAT_ALAW_C
|
||||
#define AF_FORMAT_ALAW_C
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
@ -311,4 +311,4 @@ static int to_alaw(void* in, void* out, int len, int bps, int format)
|
||||
}
|
||||
return AF_OK;
|
||||
}
|
||||
#endif /* __af_format_alaw_c */
|
||||
#endif /* AF_FORMAT_ALAW_C */
|
||||
|
@ -11,8 +11,8 @@
|
||||
//=============================================================================
|
||||
*/
|
||||
|
||||
#ifndef __af_format_ulaw_c
|
||||
#define __af_format_ulaw_c
|
||||
#ifndef AF_FORMAT_ULAW_C
|
||||
#define AF_FORMAT_ULAW_C
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
@ -824,4 +824,4 @@ static int to_ulaw(void* in, void* out, int len, int bps, int format)
|
||||
return AF_OK;
|
||||
}
|
||||
|
||||
#endif /* __af_format_ulaw_c */
|
||||
#endif /* AF_FORMAT_ULAW_C */
|
||||
|
Loading…
Reference in New Issue
Block a user