|
Revision 7, 1.1 kB
(checked in by gbooker, 3 years ago)
|
Added an import component to allow QT to read .AC3 files.
Closes #5
|
| Line | |
|---|
| 1 |
/* |
|---|
| 2 |
* debug.h |
|---|
| 3 |
* |
|---|
| 4 |
* Debugging support. |
|---|
| 5 |
* |
|---|
| 6 |
* |
|---|
| 7 |
* Copyright (c) 2005 Arek Korbik |
|---|
| 8 |
* |
|---|
| 9 |
* This file is part of XiphQT, the Xiph QuickTime Components. |
|---|
| 10 |
* |
|---|
| 11 |
* XiphQT is free software; you can redistribute it and/or |
|---|
| 12 |
* modify it under the terms of the GNU Lesser General Public |
|---|
| 13 |
* License as published by the Free Software Foundation; either |
|---|
| 14 |
* version 2.1 of the License, or (at your option) any later version. |
|---|
| 15 |
* |
|---|
| 16 |
* XiphQT is distributed in the hope that it will be useful, |
|---|
| 17 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 18 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 19 |
* Lesser General Public License for more details. |
|---|
| 20 |
* |
|---|
| 21 |
* You should have received a copy of the GNU Lesser General Public |
|---|
| 22 |
* License along with XiphQT; if not, write to the Free Software |
|---|
| 23 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 24 |
* |
|---|
| 25 |
* |
|---|
| 26 |
* Last modified: $Id: debug.h 10322 2005-11-02 11:22:05Z arek $ |
|---|
| 27 |
* |
|---|
| 28 |
*/ |
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
#if !defined(__debug_h__) |
|---|
| 32 |
#define __debug_h__ |
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
#if defined(NDEBUG) |
|---|
| 36 |
#define dprintf(...) {} |
|---|
| 37 |
#else |
|---|
| 38 |
#define dprintf printf |
|---|
| 39 |
#endif |
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
#endif /* __debug_h__ */ |
|---|