diff --git a/src/opus_decoder.c b/src/opus_decoder.c index 0be6730d..f0af5e74 100644 --- a/src/opus_decoder.c +++ b/src/opus_decoder.c @@ -589,7 +589,7 @@ static int opus_packet_parse_impl(const unsigned char *data, opus_int32 len, int cbr; unsigned char ch, toc; int framesize; - int last_size; + opus_int32 last_size; const unsigned char *data0 = data; if (size==NULL) @@ -615,7 +615,9 @@ static int opus_packet_parse_impl(const unsigned char *data, opus_int32 len, { if (len&0x1) return OPUS_INVALID_PACKET; - size[0] = last_size = len/2; + last_size = len/2; + /* If last_size doesn't fit in size[0], we'll catch it later */ + size[0] = (short)last_size; } break; /* Two VBR frames */ @@ -676,7 +678,7 @@ static int opus_packet_parse_impl(const unsigned char *data, opus_int32 len, if (last_size*count!=len) return OPUS_INVALID_PACKET; for (i=0;i 1275) return OPUS_INVALID_PACKET; - size[count-1] = last_size; + size[count-1] = (short)last_size; } if (frames)