Advertisement
MadManMarkAu

PcmOutput.h

Mar 24th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. /*
  2.  * PcmOutput.h
  3.  *
  4.  *  Created on: Jan 1, 2012
  5.  *      Author: MadManMarkAu
  6.  */
  7.  
  8. #ifndef PCMOUTPUT_H_
  9. #define PCMOUTPUT_H_
  10.  
  11. #include <stdint.h>
  12.  
  13. void PCM_init(uint16_t sampleRate);
  14. bool PCM_needBuffer();
  15. int PCM_enqueue(uint8_t *newBufferPos, uint16_t newBufferSize);
  16. uint8_t PCM_hasUnderflowed();
  17.  
  18. #endif /* PCMOUTPUT_H_ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement