Skip to content

Commit

Permalink
ae sync squash
Browse files Browse the repository at this point in the history
  • Loading branch information
FernetMenta committed Sep 30, 2015
1 parent 44a2685 commit bc89ed4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEBuffer.cpp
Expand Up @@ -464,7 +464,10 @@ bool CActiveAEBufferPoolResample::ResampleBuffers(int64_t timestamp)
{
if (!timestamp)
{
m_lastSamplePts = in->timestamp;
if (in->timestamp)
m_lastSamplePts = in->timestamp;
else
in->pkt_start_offset = 0;
m_procSample->clockId = in->clockId;
}
else
Expand Down

0 comments on commit bc89ed4

Please sign in to comment.