annotate Gui/mplayer/common.h @ 8996:c5772dde2914
- restore old behaviour of -channels,-srate,-format
- disable audio if libaf init failed (to avoid sig11 in decoder)
author |
arpi |
date |
Sat, 18 Jan 2003 19:08:42 +0000 |
parents |
0a665389cf2b |
children |
eb996ecdfcd5 |
rev |
line source |
8973
|
1 #ifndef __COMMON_H
|
|
2 #define __COMMON_H
|
|
3
|
|
4 #include <stdlib.h>
|
|
5 #include <stdio.h>
|
|
6 #include <inttypes.h>
|
|
7 #include <sys/stat.h>
|
|
8 #include <unistd.h>
|
|
9
|
|
10 #include "../app.h"
|
|
11 #include "../bitmap.h"
|
|
12 #include "../wm/ws.h"
|
|
13
|
|
14 extern inline void TranslateFilename( int c,char * tmp );
|
|
15 extern char * Translate( char * str );
|
|
16 extern void PutImage( txSample * bf,int x,int y,int max,int ofs );
|
|
17 extern void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size );
|
|
18
|
|
19 #endif
|