summaryrefslogtreecommitdiffstats
path: root/TOOLS/vivodump.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/vivodump.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/vivodump.c')
-rw-r--r--TOOLS/vivodump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/TOOLS/vivodump.c b/TOOLS/vivodump.c
index bd6d3db3a1..e7df375b33 100644
--- a/TOOLS/vivodump.c
+++ b/TOOLS/vivodump.c
@@ -34,7 +34,7 @@ int bufptr=0;
int bitcnt=0;
unsigned char buf=0;
-unsigned int x_get_bits(int n){
+static unsigned int x_get_bits(int n){
unsigned int x=0;
while(n-->0){
if(!bitcnt){
@@ -59,7 +59,7 @@ int width=320;
int height=240;
/* 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;