[Ffmpeg-cvslog] r6973 - in trunk/libavformat: aiff.c mpegts.c
mru
subversion
Sat Nov 11 21:56:36 CET 2006
Author: mru
Date: Sat Nov 11 21:56:36 2006
New Revision: 6973
Modified:
trunk/libavformat/aiff.c
trunk/libavformat/mpegts.c
Log:
make some symbols static
Modified: trunk/libavformat/aiff.c
==============================================================================
--- trunk/libavformat/aiff.c (original)
+++ trunk/libavformat/aiff.c Sat Nov 11 21:56:36 2006
@@ -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') },
Modified: trunk/libavformat/mpegts.c
==============================================================================
--- trunk/libavformat/mpegts.c (original)
+++ trunk/libavformat/mpegts.c Sat Nov 11 21:56:36 2006
@@ -1132,7 +1132,7 @@
#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;
More information about the ffmpeg-cvslog
mailing list