vidify / old-audiosync

First implementation of the audio synchronization feature for Vidify, now obsolete
GNU Lesser General Public License v3.0
17 stars 3 forks source link

Global mutex in cross_correlation.c #28

Closed marioortizmanero closed 4 years ago

marioortizmanero commented 4 years ago

Currently, in cross_correlation.c, the mutex used to calculate the FFT is passed inside the pthread struct. Only declaring the mutex once as a global, and accesing it as such would simplify and possibly improve the performance.