We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2362e4b commit 6ee3123Copy full SHA for 6ee3123
src/av/components/onetomany.js
@@ -72,7 +72,7 @@ export class AVOneFrameToManyScaler extends AVOneToMany {
72
x: 0,
73
width: Math.max(frame.displayWidth, 1),
74
y: 0.5 * (frame.displayHeight - frame.displayWidth * targetinvaspect),
75
- height: Math.max(frame.displayWidth * targetinvaspect, 1)
+ height: Math.max(((frame.displayWidth * targetinvaspect) >> 1) << 1, 1)
76
}
77
78
const resframe = {}
0 commit comments