Mercurial > mplayer.hg
annotate loader/debug.h @ 37195:ac6c37d85d65 default tip
configure: Fix initialization of variable def_local_aligned_32
It contiained the #define of HAVE_LOCAL_ALIGNED_16 instead
of HAVE_LOCAL_ALIGNED_32.
| author | al |
|---|---|
| date | Sun, 28 Sep 2014 18:38:41 +0000 |
| parents | a8ea87c71d18 |
| children |
| rev | line source |
|---|---|
| 26045 | 1 #ifndef MPLAYER_DEBUG_H |
| 2 #define MPLAYER_DEBUG_H | |
|
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21261
diff
changeset
|
3 |
|
21261
a2e02e6b6379
Rename config.h --> debug.h and include config.h explicitly.
diego
parents:
diff
changeset
|
4 #ifdef DEBUG |
|
a2e02e6b6379
Rename config.h --> debug.h and include config.h explicitly.
diego
parents:
diff
changeset
|
5 #define TRACE printf |
|
a2e02e6b6379
Rename config.h --> debug.h and include config.h explicitly.
diego
parents:
diff
changeset
|
6 #define dbg_printf printf |
|
a2e02e6b6379
Rename config.h --> debug.h and include config.h explicitly.
diego
parents:
diff
changeset
|
7 #else |
|
a2e02e6b6379
Rename config.h --> debug.h and include config.h explicitly.
diego
parents:
diff
changeset
|
8 #define TRACE(...) |
|
a2e02e6b6379
Rename config.h --> debug.h and include config.h explicitly.
diego
parents:
diff
changeset
|
9 #define dbg_printf(...) |
|
a2e02e6b6379
Rename config.h --> debug.h and include config.h explicitly.
diego
parents:
diff
changeset
|
10 #endif |
|
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21261
diff
changeset
|
11 |
| 26045 | 12 #endif /* MPLAYER_DEBUG_H */ |
