You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
8svx: ensure that packet size is multiple of channels.
Fix an assert failure with packets of invalid size.
This commit is contained in:
@@ -112,9 +112,16 @@ static int eightsvx_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
/* decode and interleave the first packet */
|
/* decode and interleave the first packet */
|
||||||
if (!esc->samples && avpkt) {
|
if (!esc->samples && avpkt) {
|
||||||
uint8_t *deinterleaved_samples, *p = NULL;
|
uint8_t *deinterleaved_samples, *p = NULL;
|
||||||
|
int packet_size = avpkt->size;
|
||||||
|
|
||||||
|
if (packet_size % avctx->channels) {
|
||||||
|
av_log(avctx, AV_LOG_WARNING, "Packet with odd size, ignoring last byte\n");
|
||||||
|
if (packet_size < avctx->channels)
|
||||||
|
return packet_size;
|
||||||
|
packet_size -= packet_size % avctx->channels;
|
||||||
|
}
|
||||||
esc->samples_size = !esc->table ?
|
esc->samples_size = !esc->table ?
|
||||||
avpkt->size : avctx->channels + (avpkt->size-avctx->channels) * 2;
|
packet_size : avctx->channels + (packet_size-avctx->channels) * 2;
|
||||||
if (!(esc->samples = av_malloc(esc->samples_size)))
|
if (!(esc->samples = av_malloc(esc->samples_size)))
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user