Decouple <cstdint>

This commit is contained in:
Martin Natano
2023-04-21 22:13:41 +02:00
parent bcea05dd67
commit aa87f85eef
167 changed files with 1533 additions and 1307 deletions
+3 -1
View File
@@ -3,6 +3,8 @@
#ifndef RAGE_SOUND_MIX_BUFFER_H
#define RAGE_SOUND_MIX_BUFFER_H
#include <cstdint>
class RageSoundMixBuffer
{
public:
@@ -15,7 +17,7 @@ public:
/* Extend the buffer as if write() was called with a buffer of silence. */
void Extend( unsigned iSamples );
void read( int16_t *pBuf );
void read( std::int16_t *pBuf );
void read( float *pBuf );
void read_deinterlace( float **pBufs, int channels );
float *read() { return m_pMixbuf; }