# HG changeset patch # User mru # Date 1163278596 0 # Node ID 08322a7e3804e5657aeaef11d155b1729fe73125 # Parent 2355202d4c4c0574c44aab888d216529c6577014 make some symbols static diff -r 2355202d4c4c -r 08322a7e3804 aiff.c --- a/aiff.c Sat Nov 11 19:47:58 2006 +0000 +++ b/aiff.c Sat Nov 11 20:56:36 2006 +0000 @@ -23,7 +23,7 @@ #include "riff.h" #include "intfloat_readwrite.h" -const CodecTag codec_aiff_tags[] = { +static const CodecTag codec_aiff_tags[] = { { CODEC_ID_PCM_S16BE, MKTAG('N','O','N','E') }, { CODEC_ID_PCM_S8, MKTAG('N','O','N','E') }, { CODEC_ID_PCM_S24BE, MKTAG('N','O','N','E') }, diff -r 2355202d4c4c -r 08322a7e3804 mpegts.c --- a/mpegts.c Sat Nov 11 19:47:58 2006 +0000 +++ b/mpegts.c Sat Nov 11 20:56:36 2006 +0000 @@ -1132,7 +1132,7 @@ #endif } -void set_service_cb(void *opaque, int ret) +static void set_service_cb(void *opaque, int ret) { MpegTSContext *ts = opaque; ts->set_service_ret = ret;