root/tags/perian-0.5/Codecprintf.h

Revision 57, 425 bytes (checked in by gbooker, 2 years ago)

Use our Codecprintf for ffmpeg's av_log.
Fixes #3

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 DEBUG_BUILD
11 int Codecprintf(FILE *, const char *format, ...);
12 void FourCCprintf(char *string, unsigned long a);
13 #else
14 #define Codecprintf(file, fmt, ...) /**/
15 #define FourCCprintf(string,a) /**/
16 #endif
17
18 void FFMpegCodecprintf(void* ptr, int level, const char* fmt, va_list vl);
Note: See TracBrowser for help on using the browser.