Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.6] YToUV filter should compute output colorspace from input clip dimensions when Y clip is provided #82

Open
avxsynth-testing opened this issue Aug 28, 2012 · 0 comments

Comments

@avxsynth-testing
Copy link
Collaborator

In Avisynth 2.6, the YToUV function can determine the output colorspace from the input clip dimensions.

Consider:

y = BlankClip(width=640, height=480, pixel_type="YV12")
u = BlankClip(width=y.width, height=y.height/2, pixel_type="YV12")
v = BlankClip(width=y.width, height=y.height/2, pixel_type="YV12")
YToUV(u, v, y)

This returns a YV16 clip on Avisynth 2.6. On Avisynth 2.58 and AvxSynth, an exception is generated because the clip dimensions are not compatible with the YV12 format.

This depends on issue #79.

Link: issue #77.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant