1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-10 09:31:06 +02:00

nellymoserdec: remove pointless buffer size check.

This commit is contained in:
Justin Ruggles 2011-10-17 10:09:52 -04:00
parent 854eadccb6
commit f19305fe93

View File

@ -170,11 +170,6 @@ static int decode_tag(AVCodecContext * avctx,
int16_t *samples_s16 = data;
float *samples_flt = data;
if (buf_size < avctx->block_align) {
*data_size = 0;
return buf_size;
}
if (buf_size % NELLY_BLOCK_LEN) {
av_log(avctx, AV_LOG_ERROR, "Tag size %d.\n", buf_size);
*data_size = 0;