You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
dpcm: do not try to decode empty packets
This commit is contained in:
@@ -198,7 +198,7 @@ static int dpcm_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
out *= av_get_bytes_per_sample(avctx->sample_fmt);
|
out *= av_get_bytes_per_sample(avctx->sample_fmt);
|
||||||
if (out < 0) {
|
if (out <= 0) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "packet is too small\n");
|
av_log(avctx, AV_LOG_ERROR, "packet is too small\n");
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user