annotate Gui/mplayer/common.h @ 10019:0ea7b9c6c27f

1000000000l default fps has been broken on ntsc for a LONG time because of this nonsense! (29.00?!?) no idea why no one caught it, i just have fps=29.97 in my config file... i hope the bsd code works; i can't test it. btw, the (int)*(void **)arg stuff is total nonsense, no idea how that even works...
author rfelker
date Tue, 29 Apr 2003 02:23:47 +0000
parents 0a665389cf2b
children eb996ecdfcd5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8973
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
1 #ifndef __COMMON_H
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
2 #define __COMMON_H
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
3
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
4 #include <stdlib.h>
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
5 #include <stdio.h>
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
6 #include <inttypes.h>
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
7 #include <sys/stat.h>
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
8 #include <unistd.h>
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
9
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
10 #include "../app.h"
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
11 #include "../bitmap.h"
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
12 #include "../wm/ws.h"
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
13
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
14 extern inline void TranslateFilename( int c,char * tmp );
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
15 extern char * Translate( char * str );
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
16 extern void PutImage( txSample * bf,int x,int y,int max,int ofs );
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
17 extern void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size );
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
18
0a665389cf2b - add playbar
pontscho
parents:
diff changeset
19 #endif