开始修改播放器

This commit is contained in:
xiongziliang
2018-10-23 16:41:25 +08:00
parent c5e372c155
commit 49daa1baad
21 changed files with 394 additions and 641 deletions

View File

@@ -55,7 +55,7 @@ public:
RtpRing(){
//禁用缓存
_rtpRing = std::make_shared<RingType>(1);
_rtpRing = std::make_shared<RingType>();
}
virtual ~RtpRing(){}
@@ -143,12 +143,12 @@ public:
RtpCodec(){}
virtual ~RtpCodec(){}
static Ptr getRtpCodec(CodecId codecId,
uint32_t ui32Ssrc,
uint32_t ui32MtuSize,
uint32_t ui32SampleRate,
uint8_t ui8PlayloadType,
uint8_t ui8Interleaved);
static Ptr getRtpCodecById(CodecId codecId,
uint32_t ui32Ssrc,
uint32_t ui32MtuSize,
uint32_t ui32SampleRate,
uint8_t ui8PlayloadType,
uint8_t ui8Interleaved);
};