Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions src/modules/qt/transition_qtblend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@ static int get_image(mlt_frame a_frame,
} else {
transformScale = geometry_dar / b_dar;
}
b_width = *width;
b_height = *height;
}

if (mlt_properties_get(transition_properties, "rect")) {
Expand All @@ -123,10 +121,6 @@ static int get_image(mlt_frame a_frame,
rect.w *= normalized_width;
rect.h *= normalized_height;
}
} else {
// Optimization, request profile sized image
b_width = normalized_width;
b_height = normalized_height;
}
int request_width = *width;
int request_height = *height;
Expand Down Expand Up @@ -162,10 +156,6 @@ static int get_image(mlt_frame a_frame,
// Ensure we don't request an image with a 0 width or height
b_width = qMax(1, b_width);
b_height = qMax(1, b_height);
/*} else {
b_height = *height;
b_width = *width;
}*/

// Normalize source dimensions to consumer PAR to handle anamorphic sources
normalize_mlt_source_size(b_ar, consumer_ar, &b_width, b_height);
Expand Down
Loading