This repository was archived by the owner on Jun 11, 2020. It is now read-only.
  
  
  
  
  
Description
I noticed 2 problems about the function "synchronize_audio".
- The parameter pts in never used.
- In the block "else if(wanted_size > samples_size)", nb is computed as "nb = (samples_size - wanted_size)", thus the loop "while(nb > 0)" is never performed.
I tried to resample the result with "swr_convert", without success.
Thanks for your repository anyway.