1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-19 05:37:26 +00:00

Mark all functions that are only used within the file as static.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26607 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-04-30 13:53:40 +00:00
parent 089034fcd5
commit c5d5fe98b2
8 changed files with 18 additions and 18 deletions

View File

@ -89,7 +89,7 @@ unsigned char buffer[8192];
int i; int i;
char* chunk_type(unsigned char* guid){ static char* chunk_type(unsigned char* guid){
switch(*((unsigned int*)guid)){ switch(*((unsigned int*)guid)){
case 0xF8699E40: return "guid_audio_stream"; case 0xF8699E40: return "guid_audio_stream";
case 0xBC19EFC0: return "guid_video_stream"; case 0xBC19EFC0: return "guid_video_stream";
@ -105,7 +105,7 @@ char* chunk_type(unsigned char* guid){
return NULL; return NULL;
} }
void print_wave_header(WAVEFORMATEX *h){ static void print_wave_header(WAVEFORMATEX *h){
printf("======= WAVE Format =======\n"); printf("======= WAVE Format =======\n");
@ -135,7 +135,7 @@ void print_wave_header(WAVEFORMATEX *h){
} }
void print_video_header(BITMAPINFOHEADER *h){ static void print_video_header(BITMAPINFOHEADER *h){
printf("======= VIDEO Format ======\n"); printf("======= VIDEO Format ======\n");
printf(" biSize %ld\n", h->biSize); printf(" biSize %ld\n", h->biSize);
printf(" biWidth %ld\n", h->biWidth); printf(" biWidth %ld\n", h->biWidth);

View File

@ -74,7 +74,7 @@ static int mga_init(){
#endif #endif
// Returns current time in microseconds // Returns current time in microseconds
unsigned int GetTimer(){ static unsigned int GetTimer(){
struct timeval tv; struct timeval tv;
struct timezone tz; struct timezone tz;
// float s; // float s;

View File

@ -53,7 +53,7 @@ static void remove_key(long handle, const char* name) {
save_registry(); save_registry();
} }
void parse_key(char *raw, HKEY *root, char *path, char *key) { static void parse_key(char *raw, HKEY *root, char *path, char *key) {
char *tmpkey, *start; char *tmpkey, *start;
tmpkey = strrchr(raw, '\\'); tmpkey = strrchr(raw, '\\');
if (tmpkey == raw || tmpkey == NULL) { if (tmpkey == raw || tmpkey == NULL) {

View File

@ -22,7 +22,7 @@
#undef NO_SPECIAL #undef NO_SPECIAL
char *atom2human_type(int type) static char *atom2human_type(int type)
{ {
switch (type) switch (type)
{ {
@ -57,13 +57,13 @@ int stream = S_NONE;
int v_stream = 0; int v_stream = 0;
int a_stream = 0; int a_stream = 0;
unsigned int read_dword(FILE *f){ static unsigned int read_dword(FILE *f){
unsigned char atom_size_b[4]; unsigned char atom_size_b[4];
if(fread(&atom_size_b,4,1,f)<=0) return -1; if(fread(&atom_size_b,4,1,f)<=0) return -1;
return (atom_size_b[0]<<24)|(atom_size_b[1]<<16)|(atom_size_b[2]<<8)|atom_size_b[3]; return (atom_size_b[0]<<24)|(atom_size_b[1]<<16)|(atom_size_b[2]<<8)|atom_size_b[3];
} }
void video_stream_info(FILE *f, int len) static void video_stream_info(FILE *f, int len)
{ {
int orig_pos = ftell(f); int orig_pos = ftell(f);
unsigned char data[len-8]; unsigned char data[len-8];
@ -79,7 +79,7 @@ void video_stream_info(FILE *f, int len)
fseek(f,orig_pos,SEEK_SET); fseek(f,orig_pos,SEEK_SET);
} }
void audio_stream_info(FILE *f, int len) static void audio_stream_info(FILE *f, int len)
{ {
int orig_pos = ftell(f); int orig_pos = ftell(f);
unsigned char data[len-8]; unsigned char data[len-8];
@ -98,7 +98,7 @@ void audio_stream_info(FILE *f, int len)
fseek(f,orig_pos,SEEK_SET); fseek(f,orig_pos,SEEK_SET);
} }
void userdata_info(FILE *f, int len, int pos, int level) static void userdata_info(FILE *f, int len, int pos, int level)
{ {
int orig_pos = pos; /*ftell(f);*/ int orig_pos = pos; /*ftell(f);*/
unsigned int atom_size = 1; unsigned int atom_size = 1;
@ -153,7 +153,7 @@ void userdata_info(FILE *f, int len, int pos, int level)
int time_scale = 0; int time_scale = 0;
void lschunks(FILE *f,int level,unsigned int endpos){ static void lschunks(FILE *f,int level,unsigned int endpos){
unsigned int atom_size; unsigned int atom_size;
unsigned int atom_type; unsigned int atom_type;
int pos; int pos;

View File

@ -181,7 +181,7 @@ static int net_stream_close(client_t* cl) {
return 1; return 1;
} }
int handle_client(client_t* cl,mp_net_stream_packet_t* pack) { static int handle_client(client_t* cl,mp_net_stream_packet_t* pack) {
if(!pack) if(!pack)
return 0; return 0;

View File

@ -187,7 +187,7 @@ draw_alpha(int x0, int y0, int w, int h, unsigned char *src, unsigned char *srca
unlink(tmpfname); unlink(tmpfname);
} }
void static void
fast_memcpy(void *a, void *b, int s) fast_memcpy(void *a, void *b, int s)
{ //FIXME { //FIXME
memcpy(a, b, s); memcpy(a, b, s);

View File

@ -59,7 +59,7 @@ enum
MODE_VIEW MODE_VIEW
}; };
int save_settings(HDRVR hDriver, const char *filename) static int save_settings(HDRVR hDriver, const char *filename)
{ {
FILE *fd = NULL; FILE *fd = NULL;
DWORD cb = (DWORD) SendDriverMessage(hDriver, ICM_GETSTATE, 0, 0); DWORD cb = (DWORD) SendDriverMessage(hDriver, ICM_GETSTATE, 0, 0);
@ -99,7 +99,7 @@ int save_settings(HDRVR hDriver, const char *filename)
return 0; return 0;
} }
int load_settings(HDRVR hDriver, const char *filename) static int load_settings(HDRVR hDriver, const char *filename)
{ {
struct stat info; struct stat info;
FILE *fd = NULL; FILE *fd = NULL;
@ -150,7 +150,7 @@ static struct option long_options[] =
{ 0, 0, 0, 0 } { 0, 0, 0, 0 }
}; };
void help(const char *progname) static void help(const char *progname)
{ {
printf("VFW to mencoder v"VERSION" - Copyright 2007 - Gianluigi Tiesi <sherpya@netfarm.it>\n"); printf("VFW to mencoder v"VERSION" - Copyright 2007 - Gianluigi Tiesi <sherpya@netfarm.it>\n");
printf("This program is Free Software\n\n"); printf("This program is Free Software\n\n");

View File

@ -34,7 +34,7 @@ int bufptr=0;
int bitcnt=0; int bitcnt=0;
unsigned char buf=0; unsigned char buf=0;
unsigned int x_get_bits(int n){ static unsigned int x_get_bits(int n){
unsigned int x=0; unsigned int x=0;
while(n-->0){ while(n-->0){
if(!bitcnt){ if(!bitcnt){
@ -59,7 +59,7 @@ int width=320;
int height=240; int height=240;
/* most is hardcoded. should extend to handle all h263 streams */ /* most is hardcoded. should extend to handle all h263 streams */
int h263_decode_picture_header(unsigned char *b_ptr) static int h263_decode_picture_header(unsigned char *b_ptr)
{ {
int i; int i;