I have a question regarding compiling a build of x264 on GCC.
x264 has assembly code dealing with instruction sets such as SSE3 and SSSE3 and by default has auto-vectorization disabled in the makefile.
Should I compile it with the -mssse3 flag anyways or could that actually cause a loss in performance?
And does -mssse3 imply -msse3 or is SSE3 separate from SSSE3?