You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had found out that VVC's edge stride was double that of HEVC's, but I didn't realize that this is because of the PB size. Applied a proper fix in #121
HEVC SAO uses only SSSE3 functions for the 8 and 16 case regardless of if the CPU supports AVX2. Since we're targeting AVX2, we have to declare these functions as AVX2 instead.
Declaring VVC_SAO_EDGE_FILTER 8,0,u after INIT_YMM results in compilation errors, because of the if codeblock on 281-287.
There are several code mismatches with hevc.
like https://github.com/ffvvc/FFmpeg/blob/main/libavcodec/x86/vvc_sao.asm#L193, the EDGE_SRCSTRIDE
and
https://github.com/ffvvc/FFmpeg/blob/main/libavcodec/x86/vvc_sao.asm#L173
@zackerthescar do you know why?
thank you
The text was updated successfully, but these errors were encountered: