|
Revision 816, 0.5 kB
(checked in by astrange, 8 months ago)
|
Write a lot of debug tracing to /tmp/perian.log if PerianDebugLogging? is set in the environment.
|
| Line | |
|---|
| 1 |
/* |
|---|
| 2 |
* Codecprintf.h |
|---|
| 3 |
* Perian |
|---|
| 4 |
* |
|---|
| 5 |
* Created by Augie Fackler on 7/16/06. |
|---|
| 6 |
* Copyright 2006 Perian Project. All rights reserved. |
|---|
| 7 |
* |
|---|
| 8 |
*/ |
|---|
| 9 |
|
|---|
| 10 |
#ifdef __cplusplus |
|---|
| 11 |
extern "C" { |
|---|
| 12 |
#endif |
|---|
| 13 |
|
|---|
| 14 |
#ifdef DEBUG_BUILD |
|---|
| 15 |
int Codecprintf(FILE *, const char *format, ...); |
|---|
| 16 |
void FourCCprintf(char *string, FourCharCode a); |
|---|
| 17 |
const char *FourCCString(FourCharCode c); |
|---|
| 18 |
#else |
|---|
| 19 |
#define Codecprintf(file, fmt, ...) /**/ |
|---|
| 20 |
#define FourCCprintf(string,a) /**/ |
|---|
| 21 |
#endif |
|---|
| 22 |
|
|---|
| 23 |
void FFMpegCodecprintf(void* ptr, int level, const char* fmt, va_list vl); |
|---|
| 24 |
|
|---|
| 25 |
#ifdef __cplusplus |
|---|
| 26 |
} |
|---|
| 27 |
#endif |
|---|