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

@ -133,7 +133,7 @@ SrsRtpPacket::SrsRtpPacket()
timestamp = 0;
ssrc = 0;
payload = new SrsSimpleBuffer();
payload = new SrsSimpleStream();
audio_samples = new SrsCodecSample();
chunked = false;
completed = false;
@ -829,7 +829,7 @@ int SrsRtspSetupResponse::encode_header(stringstream& ss)
SrsRtspStack::SrsRtspStack(ISrsProtocolReaderWriter* s)
{
buf = new SrsSimpleBuffer();
buf = new SrsSimpleStream();
skt = s;
}