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

rename SrsSimpleBuffer to SrsSimpleStream

This commit is contained in:
winlin 2015-09-22 08:59:52 +08:00
parent dadfe101b4
commit 4f3d2c8607
12 changed files with 28 additions and 28 deletions

View file

@ -36,13 +36,13 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* the simple buffer use vector to append bytes,
* it's for hls and http, and need to be refined in future.
*/
class SrsSimpleBuffer
class SrsSimpleStream
{
private:
std::vector<char> data;
public:
SrsSimpleBuffer();
virtual ~SrsSimpleBuffer();
SrsSimpleStream();
virtual ~SrsSimpleStream();
public:
/**
* get the length of buffer. empty if zero.