Email or username:

Password:

Forgot your password?
Top-level
Iron Bug
@sss I'm not sure there's anything to compute in parallel. the algorithms themselves are linear and can barely get any profit from parallelization.
6 comments
sss
doesn't it split data into chunks ?
Iron Bug
@sss it does. but libflac is single-threaded and since nobody wrote any other implementation still chances are this is not effective.
sss
ffmpeg use own implementation, but it is also singlethreaded, also something exists for opencl/cuda which seems to be limited to windows only for now (at least i am not able to find source code)
Iron Bug
@sss they have reasonable question: what's the use case? nobody needs to encode flac in realtime. and there're much more important things in ffmpeg to be done.
sss
for example it would be very useful for reencoding large collections or large files, of course as workaround it is possible to run many singlethreaded encoding processes, but this is not best approach ....
Go Up