diff options
author | Dieter <freebsd@sopwith.solgatos.com> | 2006-01-30 23:33:19 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-01-30 23:33:19 +0000 |
commit | ceaf1909c19431e9b089535fae32a7f8d185d802 (patch) | |
tree | 31c243ba9963b4df69d09d6f6a46acf407ca551c /libavcodec/vorbis.c | |
parent | a851b8e898fa1d2d44660ca5708e3da76107f179 (diff) | |
download | ffmpeg-ceaf1909c19431e9b089535fae32a7f8d185d802.tar.gz |
add static keyword to some functions
patch by Dieter <freebsd at sopwith solgatos com>
Originally committed as revision 4913 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis.c')
-rw-r--r-- | libavcodec/vorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis.c b/libavcodec/vorbis.c index 72b58ad78b..01f1301e51 100644 --- a/libavcodec/vorbis.c +++ b/libavcodec/vorbis.c @@ -46,7 +46,7 @@ /** * reads 0-32 bits when using the ALT_BITSTREAM_READER_LE bitstream reader */ -unsigned int get_bits_long_le(GetBitContext *s, int n){ +static unsigned int get_bits_long_le(GetBitContext *s, int n){ if(n<=17) return get_bits(s, n); else{ int ret= get_bits(s, 16); |