make some symbols static

Originally committed as revision 6973 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Måns Rullgård 19 years ago
parent 8e981daf2b
commit 1ed1a122a7
  1. 2
      libavformat/aiff.c
  2. 2
      libavformat/mpegts.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') },

@ -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;

Loading…
Cancel
Save