From 1ed1a122a7cc2edcda8425f28f90a23640c557e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sat, 11 Nov 2006 20:56:36 +0000 Subject: [PATCH] make some symbols static Originally committed as revision 6973 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/aiff.c | 2 +- libavformat/mpegts.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/aiff.c b/libavformat/aiff.c index 914c3a7..e4cf66c 100644 --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -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 --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 9f46e1a..dd5f0ad 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1132,7 +1132,7 @@ static int mpegts_probe(AVProbeData *p) #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; -- 2.7.4