1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

for #738, implements boxes codec

This commit is contained in:
winlin 2017-02-01 21:57:32 +08:00
parent b6bb3f2446
commit 2ad265bd5a
6 changed files with 1864 additions and 61 deletions

View file

@ -44,6 +44,10 @@ public:
ISrsReader();
virtual ~ISrsReader();
public:
/**
* Read bytes from reader.
* @param nread How many bytes read from channel. NULL to ignore.
*/
virtual int read(void* buf, size_t size, ssize_t* nread) = 0;
};