summaryrefslogtreecommitdiffstats
path: root/spudec.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-18 09:26:00 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-18 09:26:00 +0000
commit93c1e23c479397fb14740d76746d6da4c6f8961c (patch)
tree4cc327fa6cb752947882917ff0c79a9a63244ece /spudec.c
parent00554417742997c413ea611910065d0527b690ee (diff)
downloadmpv-93c1e23c479397fb14740d76746d6da4c6f8961c.tar.bz2
mpv-93c1e23c479397fb14740d76746d6da4c6f8961c.tar.xz
Mark some more functions that are not used outside of their files as static.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30632 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'spudec.c')
-rw-r--r--spudec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/spudec.c b/spudec.c
index 51a70ec708..a79d708e38 100644
--- a/spudec.c
+++ b/spudec.c
@@ -767,8 +767,9 @@ static void scale_image(int x, int y, scale_pixel* table_x, scale_pixel* table_y
}
}
-void sws_spu_image(unsigned char *d1, unsigned char *d2, int dw, int dh, int ds,
- unsigned char *s1, unsigned char *s2, int sw, int sh, int ss)
+static void sws_spu_image(unsigned char *d1, unsigned char *d2, int dw, int dh,
+ int ds, unsigned char *s1, unsigned char *s2, int sw,
+ int sh, int ss)
{
struct SwsContext *ctx;
static SwsFilter filter;