From 54fdf5d15092825eea20fa7cbac9f164f683c057 Mon Sep 17 00:00:00 2001 From: David Conrad Date: Sun, 27 Jun 2010 01:46:20 +0000 Subject: [PATCH] vorbisdec: Fix header parsing with no floor1 partitions Originally committed as revision 23811 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vorbis_dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index bfe2367..608277a 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -474,7 +474,7 @@ static int vorbis_parse_setup_hdr_floors(vorbis_context *vc) AV_DEBUG(" %d. floor type %d \n", i, floor_setup->floor_type); if (floor_setup->floor_type == 1) { - uint_fast8_t maximum_class = 0; + int maximum_class = -1; uint_fast8_t rangebits; uint_fast16_t floor1_values = 2; -- 2.7.4