4 * Copyright 2003 Robert Shearman
5 * Copyright 2004-2005 Christian Costa
6 * Copyright 2007 Chris Robinson
7 * Copyright 2008 Maarten Lankhorst
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "quartz_private.h"
28 #include "control_private.h"
37 #include "wine/unicode.h"
38 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
44 #define SEQUENCE_HEADER_CODE 0xB3
45 #define PACK_START_CODE 0xBA
47 #define SYSTEM_START_CODE 0xBB
48 #define AUDIO_ELEMENTARY_STREAM 0xC0
49 #define VIDEO_ELEMENTARY_STREAM 0xE0
51 #define MPEG_SYSTEM_HEADER 3
52 #define MPEG_VIDEO_HEADER 2
53 #define MPEG_AUDIO_HEADER 1
54 #define MPEG_NO_HEADER 0
56 #define SEEK_INTERVAL (ULONGLONG)(10 * 10000000) /* Add an entry every 10 seconds */
63 typedef struct MPEGSplitterImpl
72 /* Whether we just seeked (or started playing) */
77 struct seek_entry
*seektable
;
80 static int MPEGSplitter_head_check(const BYTE
*header
)
82 /* If this is a possible start code, check for a system or video header */
83 if (header
[0] == 0 && header
[1] == 0 && header
[2] == 1)
85 /* Check if we got a system or elementary stream start code */
86 if (header
[3] == PACK_START_CODE
||
87 header
[3] == VIDEO_ELEMENTARY_STREAM
||
88 header
[3] == AUDIO_ELEMENTARY_STREAM
)
89 return MPEG_SYSTEM_HEADER
;
91 /* Check for a MPEG video sequence start code */
92 if (header
[3] == SEQUENCE_HEADER_CODE
)
93 return MPEG_VIDEO_HEADER
;
96 /* This should give a good guess if we have an MPEG audio header */
97 if(header
[0] == 0xff && ((header
[1]>>5)&0x7) == 0x7 &&
98 ((header
[1]>>1)&0x3) != 0 && ((header
[2]>>4)&0xf) != 0xf &&
99 ((header
[2]>>2)&0x3) != 0x3)
100 return MPEG_AUDIO_HEADER
;
103 return MPEG_NO_HEADER
;
106 static const WCHAR wszAudioStream
[] = {'A','u','d','i','o',0};
107 static const WCHAR wszVideoStream
[] = {'V','i','d','e','o',0};
109 static const DWORD freqs
[10] = { 44100, 48000, 32000, 22050, 24000, 16000, 11025, 12000, 8000, 0 };
111 static const DWORD tabsel_123
[2][3][16] = {
112 { {0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,},
113 {0,32,48,56, 64, 80, 96,112,128,160,192,224,256,320,384,},
114 {0,32,40,48, 56, 64, 80, 96,112,128,160,192,224,256,320,} },
116 { {0,32,48,56,64,80,96,112,128,144,160,176,192,224,256,},
117 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,},
118 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,} }
121 static HRESULT
parse_header(BYTE
*header
, LONGLONG
*plen
, LONGLONG
*pduration
)
125 int bitrate_index
, freq_index
, lsf
= 1, mpeg1
, layer
, padding
, bitrate
, length
;
127 if (!(header
[0] == 0xff && ((header
[1]>>5)&0x7) == 0x7 &&
128 ((header
[1]>>1)&0x3) != 0 && ((header
[2]>>4)&0xf) != 0xf &&
129 ((header
[2]>>2)&0x3) != 0x3))
131 FIXME("Not a valid header: %02x:%02x\n", header
[0], header
[1]);
135 mpeg1
= (header
[1]>>4)&0x1;
137 lsf
= ((header
[1]>>3)&0x1)^1;
139 layer
= 4-((header
[1]>>1)&0x3);
140 bitrate_index
= ((header
[2]>>4)&0xf);
141 freq_index
= ((header
[2]>>2)&0x3) + (mpeg1
?(lsf
*3):6);
142 padding
= ((header
[2]>>1)&0x1);
144 bitrate
= tabsel_123
[lsf
][layer
-1][bitrate_index
] * 1000;
145 if (!bitrate
|| layer
!= 3)
147 FIXME("Not a valid header: %02x:%02x:%02x:%02x\n", header
[0], header
[1], header
[2], header
[3]);
152 if (layer
== 3 || layer
== 2)
153 length
= 144 * bitrate
/ freqs
[freq_index
] + padding
;
155 length
= 4 * (12 * bitrate
/ freqs
[freq_index
] + padding
);
157 duration
= (ULONGLONG
)10000000 * (ULONGLONG
)(length
) / (ULONGLONG
)(bitrate
/8);
160 *pduration
+= duration
;
164 static HRESULT
FillBuffer(MPEGSplitterImpl
*This
, IMediaSample
*pCurrentSample
)
166 Parser_OutputPin
* pOutputPin
= (Parser_OutputPin
*)This
->Parser
.ppPins
[1];
168 LONGLONG pos
= BYTES_FROM_MEDIATIME(This
->Parser
.pInputPin
->rtNext
);
169 LONGLONG time
= This
->position
;
172 DWORD len
= IMediaSample_GetActualDataLength(pCurrentSample
);
174 TRACE("Source length: %u\n", len
);
175 IMediaSample_GetPointer(pCurrentSample
, &fbuf
);
177 /* Find the next valid header.. it <SHOULD> be right here */
178 assert(parse_header(fbuf
, &length
, &This
->position
) == S_OK
);
179 IMediaSample_SetActualDataLength(pCurrentSample
, length
);
181 /* Queue the next sample */
182 if (length
+ 4 == len
)
184 PullPin
*pin
= This
->Parser
.pInputPin
;
185 LONGLONG stop
= BYTES_FROM_MEDIATIME(pin
->rtStop
);
188 memcpy(This
->header
, fbuf
+ length
, 4);
189 while (FAILED(hr
= parse_header(This
->header
, &length
, NULL
)))
191 memmove(This
->header
, This
->header
+1, 3);
194 IAsyncReader_SyncRead(pin
->pReader
, ++pos
, 1, This
->header
+ 3);
196 pin
->rtNext
= MEDIATIME_FROM_BYTES(pos
);
200 /* Remove 4 for the last header, which should hopefully work */
201 IMediaSample
*sample
= NULL
;
202 LONGLONG rtSampleStart
= pin
->rtNext
- MEDIATIME_FROM_BYTES(4);
203 LONGLONG rtSampleStop
= rtSampleStart
+ MEDIATIME_FROM_BYTES(length
+ 4);
205 if (rtSampleStop
> pin
->rtStop
)
206 rtSampleStop
= MEDIATIME_FROM_BYTES(ALIGNUP(BYTES_FROM_MEDIATIME(pin
->rtStop
), pin
->cbAlign
));
208 hr
= IMemAllocator_GetBuffer(pin
->pAlloc
, &sample
, NULL
, NULL
, 0);
211 IMediaSample_SetTime(sample
, &rtSampleStart
, &rtSampleStop
);
212 IMediaSample_SetPreroll(sample
, 0);
213 IMediaSample_SetDiscontinuity(sample
, 0);
214 IMediaSample_SetSyncPoint(sample
, 1);
215 pin
->rtCurrent
= rtSampleStart
;
216 pin
->rtNext
= rtSampleStop
;
217 hr
= IAsyncReader_Request(pin
->pReader
, sample
, 0);
220 FIXME("o_Ox%08x\n", hr
);
223 /* If not, we're presumably at the end of file */
225 TRACE("Media time : %u.%03u\n", (DWORD
)(This
->position
/10000000), (DWORD
)((This
->position
/10000)%1000));
227 IMediaSample_SetTime(pCurrentSample
, &time
, &This
->position
);
229 hr
= OutputPin_SendSample(&pOutputPin
->pin
, pCurrentSample
);
234 TRACE("Error sending sample (%x)\n", hr
);
236 TRACE("S_FALSE (%d), holding\n", IMediaSample_GetActualDataLength(pCurrentSample
));
243 static HRESULT
MPEGSplitter_process_sample(LPVOID iface
, IMediaSample
* pSample
, DWORD_PTR cookie
)
245 MPEGSplitterImpl
*This
= iface
;
247 DWORD cbSrcStream
= 0;
248 REFERENCE_TIME tStart
, tStop
, tAviStart
= This
->position
;
251 hr
= IMediaSample_GetTime(pSample
, &tStart
, &tStop
);
254 cbSrcStream
= IMediaSample_GetActualDataLength(pSample
);
255 hr
= IMediaSample_GetPointer(pSample
, &pbSrcStream
);
258 /* Flush occurring */
259 if (cbSrcStream
== 0)
261 FIXME(".. Why do I need you?\n");
265 /* trace removed for performance reasons */
266 /* TRACE("(%p), %llu -> %llu\n", pSample, tStart, tStop); */
268 /* Now, try to find a new header */
269 hr
= FillBuffer(This
, pSample
);
272 WARN("Failed with hres: %08x!\n", hr
);
274 /* Unset progression if denied! */
275 if (hr
== VFW_E_WRONG_STATE
|| hr
== S_FALSE
)
277 memcpy(This
->header
, pbSrcStream
, 4);
278 This
->Parser
.pInputPin
->rtCurrent
= tStart
;
279 This
->position
= tAviStart
;
283 if (BYTES_FROM_MEDIATIME(tStop
) >= This
->EndOfFile
|| This
->position
>= This
->Parser
.mediaSeeking
.llStop
)
287 TRACE("End of file reached\n");
289 for (i
= 0; i
< This
->Parser
.cStreams
; i
++)
293 hr
= IPin_ConnectedTo(This
->Parser
.ppPins
[i
+1], &ppin
);
296 hr
= IPin_EndOfStream(ppin
);
300 WARN("Error sending EndOfStream to pin %u (%x)\n", i
, hr
);
303 /* Force the pullpin thread to stop */
311 static HRESULT
MPEGSplitter_query_accept(LPVOID iface
, const AM_MEDIA_TYPE
*pmt
)
313 if (!IsEqualIID(&pmt
->majortype
, &MEDIATYPE_Stream
))
316 if (IsEqualIID(&pmt
->subtype
, &MEDIASUBTYPE_MPEG1Audio
))
319 if (IsEqualIID(&pmt
->subtype
, &MEDIASUBTYPE_MPEG1Video
))
320 FIXME("MPEG-1 video streams not yet supported.\n");
321 else if (IsEqualIID(&pmt
->subtype
, &MEDIASUBTYPE_MPEG1System
))
322 FIXME("MPEG-1 system streams not yet supported.\n");
323 else if (IsEqualIID(&pmt
->subtype
, &MEDIASUBTYPE_MPEG1VideoCD
))
324 FIXME("MPEG-1 VideoCD streams not yet supported.\n");
330 static HRESULT
MPEGSplitter_init_audio(MPEGSplitterImpl
*This
, const BYTE
*header
, PIN_INFO
*ppiOutput
, AM_MEDIA_TYPE
*pamt
)
332 WAVEFORMATEX
*format
;
342 ZeroMemory(pamt
, sizeof(*pamt
));
343 ppiOutput
->dir
= PINDIR_OUTPUT
;
344 ppiOutput
->pFilter
= (IBaseFilter
*)This
;
345 wsprintfW(ppiOutput
->achName
, wszAudioStream
);
347 pamt
->formattype
= FORMAT_WaveFormatEx
;
348 pamt
->majortype
= MEDIATYPE_Audio
;
349 pamt
->subtype
= MEDIASUBTYPE_MPEG1AudioPayload
;
351 pamt
->lSampleSize
= 0;
352 pamt
->bFixedSizeSamples
= FALSE
;
353 pamt
->bTemporalCompression
= 0;
355 mpeg1
= (header
[1]>>4)&0x1;
357 lsf
= ((header
[1]>>3)&0x1)^1;
359 layer
= 4-((header
[1]>>1)&0x3);
360 bitrate_index
= ((header
[2]>>4)&0xf);
361 freq_index
= ((header
[2]>>2)&0x3) + (mpeg1
?(lsf
*3):6);
362 mode
= ((header
[3]>>6)&0x3);
363 mode_ext
= ((header
[3]>>4)&0x3);
364 emphasis
= ((header
[3]>>0)&0x3);
368 /* Set to highest bitrate so samples will fit in for sure */
369 FIXME("Variable-bitrate audio not fully supported.\n");
373 pamt
->cbFormat
= ((layer
==3)? sizeof(MPEGLAYER3WAVEFORMAT
) :
374 sizeof(MPEG1WAVEFORMAT
));
375 pamt
->pbFormat
= CoTaskMemAlloc(pamt
->cbFormat
);
377 return E_OUTOFMEMORY
;
378 ZeroMemory(pamt
->pbFormat
, pamt
->cbFormat
);
379 format
= (WAVEFORMATEX
*)pamt
->pbFormat
;
381 format
->wFormatTag
= ((layer
== 3) ? WAVE_FORMAT_MPEGLAYER3
:
383 format
->nChannels
= ((mode
== 3) ? 1 : 2);
384 format
->nSamplesPerSec
= freqs
[freq_index
];
385 format
->nAvgBytesPerSec
= tabsel_123
[lsf
][layer
-1][bitrate_index
] * 1000 / 8;
388 format
->nBlockAlign
= format
->nAvgBytesPerSec
* 8 * 144 /
389 (format
->nSamplesPerSec
<<lsf
) + 1;
391 format
->nBlockAlign
= format
->nAvgBytesPerSec
* 8 * 144 /
392 format
->nSamplesPerSec
+ 1;
394 format
->nBlockAlign
= 4 * (format
->nAvgBytesPerSec
* 8 * 12 / format
->nSamplesPerSec
+ 1);
396 format
->wBitsPerSample
= 0;
400 MPEGLAYER3WAVEFORMAT
*mp3format
= (MPEGLAYER3WAVEFORMAT
*)format
;
402 format
->cbSize
= MPEGLAYER3_WFX_EXTRA_BYTES
;
404 mp3format
->wID
= MPEGLAYER3_ID_MPEG
;
405 mp3format
->fdwFlags
= MPEGLAYER3_FLAG_PADDING_ON
;
406 mp3format
->nBlockSize
= format
->nBlockAlign
;
407 mp3format
->nFramesPerBlock
= 1;
409 /* Beware the evil magic numbers. This struct is apparently horribly
410 * under-documented, and the only references I could find had it being
411 * set to this with no real explanation. It works fine though, so I'm
412 * not complaining (yet).
414 mp3format
->nCodecDelay
= 1393;
418 MPEG1WAVEFORMAT
*mpgformat
= (MPEG1WAVEFORMAT
*)format
;
422 mpgformat
->fwHeadLayer
= ((layer
== 1) ? ACM_MPEG_LAYER1
:
423 ((layer
== 2) ? ACM_MPEG_LAYER2
:
425 mpgformat
->dwHeadBitrate
= format
->nAvgBytesPerSec
* 8;
426 mpgformat
->fwHeadMode
= ((mode
== 3) ? ACM_MPEG_SINGLECHANNEL
:
427 ((mode
== 2) ? ACM_MPEG_DUALCHANNEL
:
428 ((mode
== 1) ? ACM_MPEG_JOINTSTEREO
:
430 mpgformat
->fwHeadModeExt
= ((mode
== 1) ? 0x0F : (1<<mode_ext
));
431 mpgformat
->wHeadEmphasis
= emphasis
+ 1;
432 mpgformat
->fwHeadFlags
= ACM_MPEG_ID_MPEG1
;
434 pamt
->subtype
.Data1
= format
->wFormatTag
;
436 TRACE("MPEG audio stream detected:\n"
439 "\tChannels: %d (%d)\n"
440 "\tBytesPerSec: %d\n",
441 layer
, format
->wFormatTag
, format
->nSamplesPerSec
,
442 format
->nChannels
, mode
, format
->nAvgBytesPerSec
);
444 dump_AM_MEDIA_TYPE(pamt
);
450 static HRESULT
MPEGSplitter_pre_connect(IPin
*iface
, IPin
*pConnectPin
, ALLOCATOR_PROPERTIES
*props
)
452 PullPin
*pPin
= (PullPin
*)iface
;
453 MPEGSplitterImpl
*This
= (MPEGSplitterImpl
*)pPin
->pin
.pinInfo
.pFilter
;
455 LONGLONG pos
= 0; /* in bytes */
458 LONGLONG total
, avail
;
462 IAsyncReader_Length(pPin
->pReader
, &total
, &avail
);
463 This
->EndOfFile
= total
;
465 hr
= IAsyncReader_SyncRead(pPin
->pReader
, pos
, 4, header
);
469 /* Skip ID3 v2 tag, if any */
470 if (SUCCEEDED(hr
) && !memcmp("ID3", header
, 3))
473 hr
= IAsyncReader_SyncRead(pPin
->pReader
, pos
, 6, header
+ 4);
477 TRACE("Found ID3 v2.%d.%d\n", header
[3], header
[4]);
478 length
= (header
[6] & 0x7F) << 21;
479 length
+= (header
[7] & 0x7F) << 14;
480 length
+= (header
[8] & 0x7F) << 7;
481 length
+= (header
[9] & 0x7F);
482 TRACE("Length: %u\n", length
);
485 /* Read the real header for the mpeg splitter */
486 hr
= IAsyncReader_SyncRead(pPin
->pReader
, pos
, 4, header
);
489 TRACE("%x:%x:%x:%x\n", header
[0], header
[1], header
[2], header
[3]);
492 while(SUCCEEDED(hr
) && !(streamtype
=MPEGSplitter_head_check(header
)))
494 TRACE("%x:%x:%x:%x\n", header
[0], header
[1], header
[2], header
[3]);
495 /* No valid header yet; shift by a byte and check again */
496 memmove(header
, header
+1, 3);
497 hr
= IAsyncReader_SyncRead(pPin
->pReader
, pos
++, 1, header
+ 3);
502 This
->begin_offset
= pos
;
503 memcpy(This
->header
, header
, 4);
505 This
->seektable
[0].bytepos
= pos
;
506 This
->seektable
[0].timepos
= 0;
510 case MPEG_AUDIO_HEADER
:
512 LONGLONG duration
= 0;
513 DWORD last_entry
= 0;
515 DWORD ticks
= GetTickCount();
517 hr
= MPEGSplitter_init_audio(This
, header
, &piOutput
, &amt
);
520 WAVEFORMATEX
*format
= (WAVEFORMATEX
*)amt
.pbFormat
;
524 /* Make the output buffer a multiple of the frame size */
525 props
->cbBuffer
= 0x4000 / format
->nBlockAlign
*
528 hr
= Parser_AddPin(&(This
->Parser
), &piOutput
, props
, &amt
);
534 CoTaskMemFree(amt
.pbFormat
);
535 ERR("Could not create pin for MPEG audio stream (%x)\n", hr
);
539 /* Check for idv1 tag, and remove it from stream if found */
540 hr
= IAsyncReader_SyncRead(pPin
->pReader
, This
->EndOfFile
-128, 3, header
+4);
543 if (!strncmp((char*)header
+4, "TAG", 3))
544 This
->EndOfFile
-= 128;
545 This
->Parser
.pInputPin
->rtStop
= MEDIATIME_FROM_BYTES(This
->EndOfFile
);
546 This
->Parser
.pInputPin
->rtStart
= This
->Parser
.pInputPin
->rtCurrent
= MEDIATIME_FROM_BYTES(This
->begin_offset
);
548 /* http://mpgedit.org/mpgedit/mpeg_format/mpeghdr.htm has a whole read up on audio headers */
549 while (pos
+ 3 < This
->EndOfFile
)
552 hr
= IAsyncReader_SyncRead(pPin
->pReader
, pos
, 4, header
);
555 while (parse_header(header
, &length
, &duration
))
557 /* No valid header yet; shift by a byte and check again */
558 memmove(header
, header
+1, 3);
559 hr
= IAsyncReader_SyncRead(pPin
->pReader
, pos
++, 1, header
+ 3);
560 if (hr
!= S_OK
|| This
->EndOfFile
- pos
< 4)
565 if (This
->seektable
&& (duration
/ SEEK_INTERVAL
) > last_entry
)
567 if (last_entry
+ 1 > duration
/ SEEK_INTERVAL
)
569 ERR("Somehow skipped %d interval lengths instead of 1\n", (DWORD
)(duration
/SEEK_INTERVAL
) - (last_entry
+ 1));
573 TRACE("Entry: %u\n", last_entry
);
574 if (last_entry
>= This
->seek_entries
)
576 This
->seek_entries
+= 64;
577 This
->seektable
= CoTaskMemRealloc(This
->seektable
, (This
->seek_entries
)*sizeof(struct seek_entry
));
579 This
->seektable
[last_entry
].bytepos
= pos
;
580 This
->seektable
[last_entry
].timepos
= duration
;
583 TRACE("Pos: %x%08x/%x%08x\n", (DWORD
)(pos
>> 32), (DWORD
)pos
, (DWORD
)(This
->EndOfFile
>>32), (DWORD
)This
->EndOfFile
);
586 TRACE("Duration: %d seconds\n", (DWORD
)(duration
/ 10000000));
587 TRACE("Parsing took %u ms\n", GetTickCount() - ticks
);
588 This
->duration
= duration
;
590 This
->Parser
.mediaSeeking
.llCurrent
= 0;
591 This
->Parser
.mediaSeeking
.llDuration
= duration
;
592 This
->Parser
.mediaSeeking
.llStop
= duration
;
595 case MPEG_VIDEO_HEADER
:
596 FIXME("MPEG video processing not yet supported!\n");
599 case MPEG_SYSTEM_HEADER
:
600 FIXME("MPEG system streams not yet supported!\n");
612 static HRESULT
MPEGSplitter_cleanup(LPVOID iface
)
614 MPEGSplitterImpl
*This
= iface
;
616 TRACE("(%p)\n", This
);
621 static HRESULT
MPEGSplitter_seek(IBaseFilter
*iface
)
623 MPEGSplitterImpl
*This
= (MPEGSplitterImpl
*)iface
;
624 PullPin
*pPin
= This
->Parser
.pInputPin
;
625 LONGLONG newpos
, timepos
, bytepos
;
629 newpos
= This
->Parser
.mediaSeeking
.llCurrent
;
631 if (newpos
> This
->duration
)
633 WARN("Requesting position %x%08x beyond end of stream %x%08x\n", (DWORD
)(newpos
>>32), (DWORD
)newpos
, (DWORD
)(This
->duration
>>32), (DWORD
)This
->duration
);
637 if (This
->position
/1000000 == newpos
/1000000)
639 TRACE("Requesting position %x%08x same as current position %x%08x\n", (DWORD
)(newpos
>>32), (DWORD
)newpos
, (DWORD
)(This
->position
>>32), (DWORD
)This
->position
);
643 /* Position, cached */
644 bytepos
= This
->seektable
[newpos
/ SEEK_INTERVAL
].bytepos
;
645 timepos
= This
->seektable
[newpos
/ SEEK_INTERVAL
].timepos
;
647 hr
= IAsyncReader_SyncRead(pPin
->pReader
, bytepos
, 4, header
);
648 while (bytepos
+ 3 < This
->EndOfFile
)
651 hr
= IAsyncReader_SyncRead(pPin
->pReader
, bytepos
, 4, header
);
652 if (hr
!= S_OK
|| timepos
>= newpos
)
655 while (parse_header(header
, &length
, &timepos
) && bytepos
+ 3 < This
->EndOfFile
)
657 /* No valid header yet; shift by a byte and check again */
658 memmove(header
, header
+1, 3);
659 hr
= IAsyncReader_SyncRead(pPin
->pReader
, ++bytepos
, 1, header
+ 3);
664 TRACE("Pos: %x%08x/%x%08x\n", (DWORD
)(bytepos
>> 32), (DWORD
)bytepos
, (DWORD
)(This
->EndOfFile
>>32), (DWORD
)This
->EndOfFile
);
669 PullPin
*pin
= This
->Parser
.pInputPin
;
672 TRACE("Moving sound to %08u bytes!\n", (DWORD
)bytepos
);
674 EnterCriticalSection(&pin
->thread_lock
);
675 IPin_BeginFlush((IPin
*)pin
);
677 /* Make sure this is done while stopped, BeginFlush takes care of this */
678 EnterCriticalSection(&This
->Parser
.csFilter
);
679 memcpy(This
->header
, header
, 4);
680 IPin_ConnectedTo(This
->Parser
.ppPins
[1], &victim
);
683 IPin_NewSegment(victim
, newpos
, This
->duration
, pin
->dRate
);
684 IPin_Release(victim
);
687 pin
->rtStart
= pin
->rtCurrent
= MEDIATIME_FROM_BYTES(bytepos
);
688 pin
->rtStop
= MEDIATIME_FROM_BYTES((REFERENCE_TIME
)This
->EndOfFile
);
690 This
->position
= newpos
;
691 LeaveCriticalSection(&This
->Parser
.csFilter
);
693 TRACE("Done flushing\n");
694 IPin_EndFlush((IPin
*)pin
);
695 LeaveCriticalSection(&pin
->thread_lock
);
700 static HRESULT
MPEGSplitter_disconnect(LPVOID iface
)
702 /* TODO: Find memory leaks etc */
706 static HRESULT
MPEGSplitter_first_request(LPVOID iface
)
708 MPEGSplitterImpl
*This
= iface
;
709 PullPin
*pin
= This
->Parser
.pInputPin
;
712 IMediaSample
*sample
;
714 TRACE("Seeking? %d\n", This
->seek
);
715 assert(parse_header(This
->header
, &length
, NULL
) == S_OK
);
717 if (pin
->rtCurrent
>= pin
->rtStop
)
719 /* Last sample has already been queued, request nothing more */
724 hr
= IMemAllocator_GetBuffer(pin
->pAlloc
, &sample
, NULL
, NULL
, 0);
726 pin
->rtNext
= pin
->rtCurrent
;
729 LONGLONG rtSampleStart
= pin
->rtNext
;
730 /* Add 4 for the next header, which should hopefully work */
731 LONGLONG rtSampleStop
= rtSampleStart
+ MEDIATIME_FROM_BYTES(length
+ 4);
733 if (rtSampleStop
> pin
->rtStop
)
734 rtSampleStop
= MEDIATIME_FROM_BYTES(ALIGNUP(BYTES_FROM_MEDIATIME(pin
->rtStop
), pin
->cbAlign
));
736 hr
= IMediaSample_SetTime(sample
, &rtSampleStart
, &rtSampleStop
);
738 pin
->rtCurrent
= pin
->rtNext
;
739 pin
->rtNext
= rtSampleStop
;
741 IMediaSample_SetPreroll(sample
, FALSE
);
742 IMediaSample_SetDiscontinuity(sample
, This
->seek
);
743 IMediaSample_SetSyncPoint(sample
, 1);
746 hr
= IAsyncReader_Request(pin
->pReader
, sample
, 0);
749 ERR("Horsemen of the apocalypse came to bring error 0x%08x\n", hr
);
754 static const IBaseFilterVtbl MPEGSplitter_Vtbl
=
756 Parser_QueryInterface
,
764 Parser_SetSyncSource
,
765 Parser_GetSyncSource
,
768 Parser_QueryFilterInfo
,
769 Parser_JoinFilterGraph
,
770 Parser_QueryVendorInfo
773 HRESULT
MPEGSplitter_create(IUnknown
* pUnkOuter
, LPVOID
* ppv
)
775 MPEGSplitterImpl
*This
;
778 TRACE("(%p, %p)\n", pUnkOuter
, ppv
);
783 return CLASS_E_NOAGGREGATION
;
785 This
= CoTaskMemAlloc(sizeof(MPEGSplitterImpl
));
787 return E_OUTOFMEMORY
;
789 ZeroMemory(This
, sizeof(MPEGSplitterImpl
));
790 This
->seektable
= CoTaskMemAlloc(sizeof(struct seek_entry
) * 64);
791 if (!This
->seektable
)
794 return E_OUTOFMEMORY
;
796 This
->seek_entries
= 64;
798 hr
= Parser_Create(&(This
->Parser
), &MPEGSplitter_Vtbl
, &CLSID_MPEG1Splitter
, MPEGSplitter_process_sample
, MPEGSplitter_query_accept
, MPEGSplitter_pre_connect
, MPEGSplitter_cleanup
, MPEGSplitter_disconnect
, MPEGSplitter_first_request
, NULL
, NULL
, MPEGSplitter_seek
, NULL
);
806 /* Note: This memory is managed by the parser filter once created */