From 1ed1a122a7cc2edcda8425f28f90a23640c557e7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= <mans@mansr.com>
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 914c3a73b86..e4cf66c3b40 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 9f46e1ae0c8..dd5f0adca40 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;
-- 
GitLab