|
Revision 214, 494 bytes
(checked in by dconrad, 2 years ago)
|
Codecprintf is C, declare as such so we can use it in C++ code
|
| 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, unsigned long a); |
|---|
| 17 |
#else |
|---|
| 18 |
#define Codecprintf(file, fmt, ...) /**/ |
|---|
| 19 |
#define FourCCprintf(string,a) /**/ |
|---|
| 20 |
#endif |
|---|
| 21 |
|
|---|
| 22 |
void FFMpegCodecprintf(void* ptr, int level, const char* fmt, va_list vl); |
|---|
| 23 |
|
|---|
| 24 |
#ifdef __cplusplus |
|---|
| 25 |
} |
|---|
| 26 |
#endif |
|---|