diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-11 20:56:36 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-11 20:56:36 +0000 |
commit | 1ed1a122a7cc2edcda8425f28f90a23640c557e7 (patch) | |
tree | 9a95a44ca019b576a0b76d58a368386858cab7e9 | |
parent | 8e981daf2b0339643be1e2d3003faf6414e752d8 (diff) | |
download | ffmpeg-1ed1a122a7cc2edcda8425f28f90a23640c557e7.tar.gz |
make some symbols static
Originally committed as revision 6973 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/aiff.c | 2 | ||||
-rw-r--r-- | libavformat/mpegts.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c index 914c3a73b8..e4cf66c3b4 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 9f46e1ae0c..dd5f0adca4 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; |