changeset 1481:08322a7e3804 libavformat

make some symbols static
author mru
date Sat, 11 Nov 2006 20:56:36 +0000
parents 2355202d4c4c
children 617beb4c6247
files aiff.c mpegts.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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') },
--- 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;