Mercurial > mplayer.hg
annotate loader/debug.h @ 25746:330af0160c2d
Fix code to prevent from accessing queue->packets[-1].pts that causes a crash.
Found and patched by Reimar.
author | ulion |
---|---|
date | Thu, 17 Jan 2008 02:18:49 +0000 |
parents | 6ac1ece1f9fe |
children | a8ea87c71d18 |
rev | line source |
---|---|
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21261
diff
changeset
|
1 #ifndef DEBUG_H |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21261
diff
changeset
|
2 #define DEBUG_H |
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 |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21261
diff
changeset
|
12 #endif /* DEBUG_H */ |