I'm posting it here, because I use AE SDK for the effect.
I've got a RED sequence in Premiere that is 2048x1152. The footage is 2816x2304 anamorphic 2:1. The sequence preview is 1920x1080, like any Premiere preset over HD. I can't seem to get the proper size and aspect ratio to resize the UI controls and position the effect.
Normally I'd use this:
| scale_x *= (PF_FpShort) in_data->pixel_aspect_ratio.den / (PF_FpShort) in_data->pixel_aspect_ratio.num; |
| scale_x *= (PF_FpShort) in_data->downsample_x.num / (PF_FpShort) in_data->downsample_x.den; |
| scale_y *= (PF_FpShort) in_data->downsample_y.num / (PF_FpShort) in_data->downsample_y.den; |
But in this case it doesn't seem to work. Also standard procedures for UI resizing from SDK examples fail.
How can I obtain the proper aspect ratio and sizes?
Thanks in advance.