- more work on RTP early decoding
This commit is contained in:
parent
23b4283b89
commit
1bfd84ec34
|
|
@ -202,7 +202,7 @@ void AndroidOutputDevice::close()
|
||||||
|
|
||||||
Format AndroidOutputDevice::getFormat()
|
Format AndroidOutputDevice::getFormat()
|
||||||
{
|
{
|
||||||
return Format(mDeviceRate, 1);
|
return {mDeviceRate, 1};
|
||||||
}
|
}
|
||||||
|
|
||||||
bool AndroidOutputDevice::fakeMode()
|
bool AndroidOutputDevice::fakeMode()
|
||||||
|
|
|
||||||
|
|
@ -216,7 +216,7 @@ RtpBuffer::FetchResult RtpBuffer::fetch(ResultList& rl)
|
||||||
result = FetchResult::NoPacket;
|
result = FetchResult::NoPacket;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (mFetchedPacket->rtp())
|
if (mFetchedPacket)
|
||||||
{
|
{
|
||||||
if (mPacketList.empty())
|
if (mPacketList.empty())
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue