-
-
Notifications
You must be signed in to change notification settings - Fork 174
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
x264 10-bit support #1462
Comments
This is no longer a compile time switch: x264 supports both 8-bit and 10-bit outputs, and you don't have to do anything special: Previously you had to compile x264 with --bit-depth=10, and then link your ffmpeg to either an 8-bit or 10-bit libx264, but that is now unnecessary Now found in The only colorspace type that explicitly mentions 10-bit is |
Some preliminary / related changes and minor tweaks in r26894, r26895, r26896, r26897, r26898. The patch attached seems to do something: we convert the r210 image to 48-bit per pixel (via Still TODO:
|
Related changes:
Updated patch will follow. |
2020-07-06 17:27:01: antoine uploaded file
|
Done in r26908.
And then attaching a client with:
TODO:
|
2020-07-09 11:38:55: antoine uploaded file
|
Fixed for csc in r26960. |
As per this test report.
x264 performs very well with 10 bit data.
The big difficulty is that this is a compile time switch so we would need a different build of the x264 libraries with 10-bit support...
And the symbols would likely clash with the 8-bit ones.
So we would need to choose which one to load early.
The text was updated successfully, but these errors were encountered: