- 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()
|
||||
{
|
||||
return Format(mDeviceRate, 1);
|
||||
return {mDeviceRate, 1};
|
||||
}
|
||||
|
||||
bool AndroidOutputDevice::fakeMode()
|
||||
|
|
|
|||
|
|
@ -216,7 +216,7 @@ RtpBuffer::FetchResult RtpBuffer::fetch(ResultList& rl)
|
|||
result = FetchResult::NoPacket;
|
||||
else
|
||||
{
|
||||
if (mFetchedPacket->rtp())
|
||||
if (mFetchedPacket)
|
||||
{
|
||||
if (mPacketList.empty())
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue