-
Notifications
You must be signed in to change notification settings - Fork 3
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
Implement the loopfilter support #2
Comments
start? |
Probably only worth it to implement vpx_lpf_horizontal_16_dual_c and vpx_lpf_vertical_16_dual_c This is the % time the libvpx spends in these when encoding a 1080p video |
Agreed, even if it is suspiciously low in the list. |
Just looking at the C code, I don't think vpx_lpf_horizontal_16_dual_c or vpx_lpf_vertical_16_dual_c will get any faster with vsx, as vsx lacks a vector-gather instruction. These loads are all over the place:
I ran into the same issue vectoring |
(TBD: prepare the list of functions)
The text was updated successfully, but these errors were encountered: