diff options
author | Måns Rullgård <mans@mansr.com> | 2005-02-24 19:08:50 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-02-24 19:08:50 +0000 |
commit | 88730be65153f4a59916d971842fdaed3e0fd72b (patch) | |
tree | 1f49c5812d2382abb53df216aab8cabc3c3f56b9 /libavcodec/flac.c | |
parent | 53513831da58cae7603dc01270c1cf8e4252eba0 (diff) | |
download | ffmpeg-88730be65153f4a59916d971842fdaed3e0fd72b.tar.gz |
kill warnings patch by (Måns Rullgård <mru inprovide com>)
Originally committed as revision 3977 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flac.c')
-rw-r--r-- | libavcodec/flac.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/flac.c b/libavcodec/flac.c index a640b900b4..de1c5255ce 100644 --- a/libavcodec/flac.c +++ b/libavcodec/flac.c @@ -143,6 +143,7 @@ static int64_t get_utf8(GetBitContext *gb) return val; } +#if 0 static int skip_utf8(GetBitContext *gb) { int ones=0, bytes; @@ -163,6 +164,7 @@ static int skip_utf8(GetBitContext *gb) } return 0; } +#endif static int get_crc8(const uint8_t *buf, int count){ int crc=0; |