Commit 0f8d3d8a authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/ffv1enc: compute the max number of slices and limit by that

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent a29c7127
...@@ -849,16 +849,17 @@ FF_ENABLE_DEPRECATION_WARNINGS ...@@ -849,16 +849,17 @@ FF_ENABLE_DEPRECATION_WARNINGS
if (s->version > 1) { if (s->version > 1) {
int plane_count = 1 + 2*s->chroma_planes + s->transparency; int plane_count = 1 + 2*s->chroma_planes + s->transparency;
int max_h_slices = AV_CEIL_RSHIFT(avctx->width , s->chroma_h_shift);
int max_v_slices = AV_CEIL_RSHIFT(avctx->height, s->chroma_v_shift);
s->num_v_slices = (avctx->width > 352 || avctx->height > 288 || !avctx->slices) ? 2 : 1; s->num_v_slices = (avctx->width > 352 || avctx->height > 288 || !avctx->slices) ? 2 : 1;
if (avctx->height < 5) s->num_v_slices = FFMIN(s->num_v_slices, max_v_slices);
s->num_v_slices = 1;
for (; s->num_v_slices < 32; s->num_v_slices++) { for (; s->num_v_slices < 32; s->num_v_slices++) {
for (s->num_h_slices = s->num_v_slices; s->num_h_slices < 2*s->num_v_slices; s->num_h_slices++) { for (s->num_h_slices = s->num_v_slices; s->num_h_slices < 2*s->num_v_slices; s->num_h_slices++) {
int maxw = (avctx->width + s->num_h_slices - 1) / s->num_h_slices; int maxw = (avctx->width + s->num_h_slices - 1) / s->num_h_slices;
int maxh = (avctx->height + s->num_v_slices - 1) / s->num_v_slices; int maxh = (avctx->height + s->num_v_slices - 1) / s->num_v_slices;
if (s->num_h_slices > avctx->width || s->num_v_slices > avctx->height) if (s->num_h_slices > max_h_slices || s->num_v_slices > max_v_slices)
continue; continue;
if (maxw * maxh * (int64_t)(s->bits_per_raw_sample+1) * plane_count > 8<<24) if (maxw * maxh * (int64_t)(s->bits_per_raw_sample+1) * plane_count > 8<<24)
continue; continue;
......
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