diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-11 09:07:32 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-11 09:07:32 +0000 |
commit | c18a2692d2d1916ea9f2bb56803c4069b0213bc7 (patch) | |
tree | ee5c6bb97d179ee8904296b7b5ea703646ae5689 /libav/au.c | |
parent | df1c67addae53ba2d5ab1bc66700da78506c993e (diff) | |
download | ffmpeg-c18a2692d2d1916ea9f2bb56803c4069b0213bc7.tar.gz |
* cleanup statics & const
Originally committed as revision 1186 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/au.c')
-rw-r--r-- | libav/au.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libav/au.c b/libav/au.c index 5b4c84859a..8c3d62a595 100644 --- a/libav/au.c +++ b/libav/au.c @@ -32,7 +32,7 @@ #define AU_UNKOWN_SIZE ((UINT32)(~0)) /* The ffmpeg codecs we support, and the IDs they have in the file */ -CodecTag codec_au_tags[] = { +static const CodecTag codec_au_tags[] = { { CODEC_ID_PCM_MULAW, 1 }, { CODEC_ID_PCM_S16BE, 3 }, { CODEC_ID_PCM_ALAW, 27 }, @@ -40,7 +40,7 @@ CodecTag codec_au_tags[] = { }; /* AUDIO_FILE header */ -int put_au_header(ByteIOContext *pb, AVCodecContext *enc) +static int put_au_header(ByteIOContext *pb, AVCodecContext *enc) { int tag; |