Browse Source

make some symbols static

Originally committed as revision 6973 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 18 years ago
parent
commit
1ed1a122a7
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libavformat/aiff.c
  2. +1
    -1
      libavformat/mpegts.c

+ 1
- 1
libavformat/aiff.c View File

@@ -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') },


+ 1
- 1
libavformat/mpegts.c View File

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