Commit 47e9c75b authored by Justin Ruggles's avatar Justin Ruggles

alacdec: remove unneeded validation of setinfo_sample_size.

It is already done when using it to set sample_fmt.
parent 0f26f3d5
......@@ -116,10 +116,6 @@ static int alac_set_info(ALACContext *alac)
alac->setinfo_max_samples_per_frame = bytestream_get_be32(&ptr);
ptr++; /* ??? */
alac->setinfo_sample_size = *ptr++;
if (alac->setinfo_sample_size > 32) {
av_log(alac->avctx, AV_LOG_ERROR, "setinfo_sample_size too large\n");
return -1;
}
alac->setinfo_rice_historymult = *ptr++;
alac->setinfo_rice_initialhistory = *ptr++;
alac->setinfo_rice_kmodifier = *ptr++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment