mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
quartz: Add more seek entries and fix a time continuity bug.
This commit is contained in:
parent
9d9bf6f158
commit
c1a4acde01
1 changed files with 7 additions and 1 deletions
|
@ -53,7 +53,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(quartz);
|
|||
#define MPEG_AUDIO_HEADER 1
|
||||
#define MPEG_NO_HEADER 0
|
||||
|
||||
#define SEEK_INTERVAL (ULONGLONG)(30 * 10000000) /* Add an entry every 30 seconds */
|
||||
#define SEEK_INTERVAL (ULONGLONG)(10 * 10000000) /* Add an entry every 10 seconds */
|
||||
|
||||
struct seek_entry {
|
||||
ULONGLONG bytepos;
|
||||
|
@ -216,6 +216,7 @@ static HRESULT FillBuffer(MPEGSplitterImpl *This, BYTE** fbuf, DWORD *flen, IMed
|
|||
if (This->remaining_bytes)
|
||||
{
|
||||
DWORD towrite = min(This->remaining_bytes, *flen);
|
||||
LONGLONG foo;
|
||||
|
||||
hr = copy_data(pCurrentSample, fbuf, flen, towrite);
|
||||
if (FAILED(hr))
|
||||
|
@ -228,6 +229,11 @@ static HRESULT FillBuffer(MPEGSplitterImpl *This, BYTE** fbuf, DWORD *flen, IMed
|
|||
if (This->remaining_bytes)
|
||||
return hr;
|
||||
|
||||
/* Restore the time in the time variable. This->position now points
|
||||
* to the NEW timestamp which is slightly off
|
||||
*/
|
||||
IMediaSample_GetTime(pCurrentSample, &time, &foo);
|
||||
|
||||
/* Optimize: Try appending more samples to the stream */
|
||||
goto out_append;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue