summaryrefslogtreecommitdiffstats
path: root/TOOLS/asfinfo.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-30 13:53:40 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-30 13:53:40 +0000
commitc5d5fe98b24e7e9e34b06b88d5d9ae212ea74974 (patch)
treed796c025c142c308510103ecf1c9b41c27ff7d69 /TOOLS/asfinfo.c
parent089034fcd5a181fd34c4c9ed37677b8bb89a6d2e (diff)
downloadmpv-c5d5fe98b24e7e9e34b06b88d5d9ae212ea74974.tar.bz2
mpv-c5d5fe98b24e7e9e34b06b88d5d9ae212ea74974.tar.xz
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
Diffstat (limited to 'TOOLS/asfinfo.c')
-rw-r--r--TOOLS/asfinfo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/TOOLS/asfinfo.c b/TOOLS/asfinfo.c
index 89e332a4d8..b226dba906 100644
--- a/TOOLS/asfinfo.c
+++ b/TOOLS/asfinfo.c
@@ -89,7 +89,7 @@ unsigned char buffer[8192];
int i;
-char* chunk_type(unsigned char* guid){
+static char* chunk_type(unsigned char* guid){
switch(*((unsigned int*)guid)){
case 0xF8699E40: return "guid_audio_stream";
case 0xBC19EFC0: return "guid_video_stream";
@@ -105,7 +105,7 @@ char* chunk_type(unsigned char* guid){
return NULL;
}
-void print_wave_header(WAVEFORMATEX *h){
+static void print_wave_header(WAVEFORMATEX *h){
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(" biSize %ld\n", h->biSize);
printf(" biWidth %ld\n", h->biWidth);