mirror of
https://github.com/danog/libtgvoip.git
synced 2024-11-26 20:24:38 +01:00
697e250727
Replaced condition variables with semaphores Audio device enumeration & selection on OS X and Windows
37 lines
830 B
C++
37 lines
830 B
C++
//
|
|
// libtgvoip is free and unencumbered public domain software.
|
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
|
// you should have received with this source code distribution.
|
|
//
|
|
|
|
#ifndef LIBTGVOIP_BUFFEROUTPUTSTREAM_H
|
|
#define LIBTGVOIP_BUFFEROUTPUTSTREAM_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
namespace tgvoip{
|
|
class BufferOutputStream{
|
|
|
|
public:
|
|
BufferOutputStream(size_t size);
|
|
~BufferOutputStream();
|
|
void WriteByte(unsigned char byte);
|
|
void WriteInt64(int64_t i);
|
|
void WriteInt32(int32_t i);
|
|
void WriteInt16(int16_t i);
|
|
void WriteBytes(unsigned char* bytes, size_t count);
|
|
unsigned char* GetBuffer();
|
|
size_t GetLength();
|
|
void Reset();
|
|
|
|
private:
|
|
void ExpandBufferIfNeeded(size_t need);
|
|
unsigned char* buffer;
|
|
size_t size;
|
|
size_t offset;
|
|
};
|
|
}
|
|
|
|
#endif //LIBTGVOIP_BUFFEROUTPUTSTREAM_H
|