2007-04-24 12:28:14 +00:00
/*
* MPEG Splitter Filter
*
* Copyright 2003 Robert Shearman
* Copyright 2004 - 2005 Christian Costa
* Copyright 2007 Chris Robinson
2008-04-09 19:07:14 +00:00
* Copyright 2008 Maarten Lankhorst
2007-04-24 12:28:14 +00:00
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library ; if not , write to the Free Software
* Foundation , Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 , USA
*/
# include <assert.h>
# include <math.h>
# include "quartz_private.h"
# include "pin.h"
# include "uuids.h"
# include "mmreg.h"
# include "mmsystem.h"
# include "winternl.h"
# include "wine/unicode.h"
# include "wine/debug.h"
# include "parser.h"
WINE_DEFAULT_DEBUG_CHANNEL ( quartz ) ;
# define SEQUENCE_HEADER_CODE 0xB3
# define PACK_START_CODE 0xBA
# define SYSTEM_START_CODE 0xBB
# define AUDIO_ELEMENTARY_STREAM 0xC0
# define VIDEO_ELEMENTARY_STREAM 0xE0
# define MPEG_SYSTEM_HEADER 3
# define MPEG_VIDEO_HEADER 2
# define MPEG_AUDIO_HEADER 1
# define MPEG_NO_HEADER 0
typedef struct MPEGSplitterImpl
{
ParserImpl Parser ;
2015-10-22 16:54:47 +00:00
IAMStreamSelect IAMStreamSelect_iface ;
2007-04-24 12:28:14 +00:00
LONGLONG EndOfFile ;
2008-03-21 05:33:47 +00:00
LONGLONG position ;
2008-04-22 20:57:11 +00:00
DWORD begin_offset ;
BYTE header [ 4 ] ;
/* Whether we just seeked (or started playing) */
2008-04-01 21:42:32 +00:00
BOOL seek ;
2007-04-24 12:28:14 +00:00
} MPEGSplitterImpl ;
2015-10-22 16:54:47 +00:00
static inline MPEGSplitterImpl * impl_from_IBaseFilter ( IBaseFilter * iface )
{
return CONTAINING_RECORD ( iface , MPEGSplitterImpl , Parser . filter . IBaseFilter_iface ) ;
}
2010-10-11 15:15:35 +00:00
static inline MPEGSplitterImpl * impl_from_IMediaSeeking ( IMediaSeeking * iface )
{
2012-03-24 16:43:09 +00:00
return CONTAINING_RECORD ( iface , MPEGSplitterImpl , Parser . sourceSeeking . IMediaSeeking_iface ) ;
2010-10-11 15:15:35 +00:00
}
2015-10-22 16:54:47 +00:00
static inline MPEGSplitterImpl * impl_from_IAMStreamSelect ( IAMStreamSelect * iface )
{
return CONTAINING_RECORD ( iface , MPEGSplitterImpl , IAMStreamSelect_iface ) ;
}
2007-04-24 12:28:14 +00:00
static int MPEGSplitter_head_check ( const BYTE * header )
{
/* If this is a possible start code, check for a system or video header */
if ( header [ 0 ] = = 0 & & header [ 1 ] = = 0 & & header [ 2 ] = = 1 )
{
/* Check if we got a system or elementary stream start code */
if ( header [ 3 ] = = PACK_START_CODE | |
header [ 3 ] = = VIDEO_ELEMENTARY_STREAM | |
header [ 3 ] = = AUDIO_ELEMENTARY_STREAM )
return MPEG_SYSTEM_HEADER ;
/* Check for a MPEG video sequence start code */
if ( header [ 3 ] = = SEQUENCE_HEADER_CODE )
return MPEG_VIDEO_HEADER ;
}
/* This should give a good guess if we have an MPEG audio header */
if ( header [ 0 ] = = 0xff & & ( ( header [ 1 ] > > 5 ) & 0x7 ) = = 0x7 & &
( ( header [ 1 ] > > 1 ) & 0x3 ) ! = 0 & & ( ( header [ 2 ] > > 4 ) & 0xf ) ! = 0xf & &
( ( header [ 2 ] > > 2 ) & 0x3 ) ! = 0x3 )
return MPEG_AUDIO_HEADER ;
/* Nothing yet.. */
return MPEG_NO_HEADER ;
}
2008-03-21 05:33:47 +00:00
static const WCHAR wszAudioStream [ ] = { ' A ' , ' u ' , ' d ' , ' i ' , ' o ' , 0 } ;
static const DWORD freqs [ 10 ] = { 44100 , 48000 , 32000 , 22050 , 24000 , 16000 , 11025 , 12000 , 8000 , 0 } ;
static const DWORD tabsel_123 [ 2 ] [ 3 ] [ 16 ] = {
{ { 0 , 32 , 64 , 96 , 128 , 160 , 192 , 224 , 256 , 288 , 320 , 352 , 384 , 416 , 448 , } ,
{ 0 , 32 , 48 , 56 , 64 , 80 , 96 , 112 , 128 , 160 , 192 , 224 , 256 , 320 , 384 , } ,
{ 0 , 32 , 40 , 48 , 56 , 64 , 80 , 96 , 112 , 128 , 160 , 192 , 224 , 256 , 320 , } } ,
{ { 0 , 32 , 48 , 56 , 64 , 80 , 96 , 112 , 128 , 144 , 160 , 176 , 192 , 224 , 256 , } ,
{ 0 , 8 , 16 , 24 , 32 , 40 , 48 , 56 , 64 , 80 , 96 , 112 , 128 , 144 , 160 , } ,
{ 0 , 8 , 16 , 24 , 32 , 40 , 48 , 56 , 64 , 80 , 96 , 112 , 128 , 144 , 160 , } }
} ;
static HRESULT parse_header ( BYTE * header , LONGLONG * plen , LONGLONG * pduration )
{
2008-04-23 21:13:04 +00:00
int bitrate_index , freq_index , lsf = 1 , mpeg1 , layer , padding , bitrate , length ;
2012-06-23 17:04:00 +00:00
LONGLONG duration ;
2008-03-21 05:33:47 +00:00
2015-09-12 09:16:44 +00:00
if ( MPEGSplitter_head_check ( header ) ! = MPEG_AUDIO_HEADER )
2008-03-21 05:33:47 +00:00
{
2012-06-23 17:04:00 +00:00
FIXME ( " Not a valid header: %02x:%02x:%02x:%02x \n " , header [ 0 ] , header [ 1 ] , header [ 2 ] , header [ 3 ] ) ;
2008-03-21 05:33:47 +00:00
return E_INVALIDARG ;
}
mpeg1 = ( header [ 1 ] > > 4 ) & 0x1 ;
if ( mpeg1 )
lsf = ( ( header [ 1 ] > > 3 ) & 0x1 ) ^ 1 ;
layer = 4 - ( ( header [ 1 ] > > 1 ) & 0x3 ) ;
bitrate_index = ( ( header [ 2 ] > > 4 ) & 0xf ) ;
freq_index = ( ( header [ 2 ] > > 2 ) & 0x3 ) + ( mpeg1 ? ( lsf * 3 ) : 6 ) ;
padding = ( ( header [ 2 ] > > 1 ) & 0x1 ) ;
bitrate = tabsel_123 [ lsf ] [ layer - 1 ] [ bitrate_index ] * 1000 ;
2011-09-26 15:34:44 +00:00
if ( ! bitrate )
2008-04-01 21:42:32 +00:00
{
2008-04-07 23:11:36 +00:00
FIXME ( " Not a valid header: %02x:%02x:%02x:%02x \n " , header [ 0 ] , header [ 1 ] , header [ 2 ] , header [ 3 ] ) ;
2008-04-01 21:42:32 +00:00
return E_INVALIDARG ;
}
2012-06-23 15:35:16 +00:00
if ( layer = = 1 )
length = 4 * ( 12 * bitrate / freqs [ freq_index ] + padding ) ;
else if ( layer = = 2 )
2008-03-21 05:33:47 +00:00
length = 144 * bitrate / freqs [ freq_index ] + padding ;
2012-06-23 15:35:16 +00:00
else if ( layer = = 3 )
length = 144 * bitrate / ( freqs [ freq_index ] < < lsf ) + padding ;
2008-03-21 05:33:47 +00:00
else
2012-06-23 15:35:16 +00:00
{
ERR ( " Impossible layer %d \n " , layer ) ;
return E_INVALIDARG ;
}
2008-03-21 05:33:47 +00:00
duration = ( ULONGLONG ) 10000000 * ( ULONGLONG ) ( length ) / ( ULONGLONG ) ( bitrate / 8 ) ;
* plen = length ;
2008-04-22 20:57:11 +00:00
if ( pduration )
* pduration + = duration ;
2008-03-21 05:33:47 +00:00
return S_OK ;
}
2008-04-22 20:57:11 +00:00
static HRESULT FillBuffer ( MPEGSplitterImpl * This , IMediaSample * pCurrentSample )
2008-03-21 05:33:47 +00:00
{
2012-05-21 13:21:41 +00:00
Parser_OutputPin * pOutputPin = unsafe_impl_Parser_OutputPin_from_IPin ( This - > Parser . ppPins [ 1 ] ) ;
2008-03-21 05:33:47 +00:00
LONGLONG length = 0 ;
2008-04-22 20:57:11 +00:00
LONGLONG pos = BYTES_FROM_MEDIATIME ( This - > Parser . pInputPin - > rtNext ) ;
2010-11-07 14:02:49 +00:00
LONGLONG time = This - > position , rtstop , rtstart ;
2008-04-22 20:57:11 +00:00
HRESULT hr ;
BYTE * fbuf = NULL ;
DWORD len = IMediaSample_GetActualDataLength ( pCurrentSample ) ;
2008-03-21 05:33:47 +00:00
2008-04-22 20:57:11 +00:00
TRACE ( " Source length: %u \n " , len ) ;
IMediaSample_GetPointer ( pCurrentSample , & fbuf ) ;
2008-03-21 05:33:47 +00:00
2008-04-22 20:57:11 +00:00
/* Find the next valid header.. it <SHOULD> be right here */
2011-10-07 11:26:51 +00:00
hr = parse_header ( fbuf , & length , & This - > position ) ;
assert ( hr = = S_OK ) ;
2008-04-22 20:57:11 +00:00
IMediaSample_SetActualDataLength ( pCurrentSample , length ) ;
2008-03-21 05:33:47 +00:00
2008-04-30 21:34:07 +00:00
/* Queue the next sample */
2008-04-22 20:57:11 +00:00
if ( length + 4 = = len )
2008-03-21 05:33:47 +00:00
{
2008-04-22 20:57:11 +00:00
PullPin * pin = This - > Parser . pInputPin ;
LONGLONG stop = BYTES_FROM_MEDIATIME ( pin - > rtStop ) ;
2008-03-21 05:33:47 +00:00
2008-04-22 20:57:11 +00:00
hr = S_OK ;
memcpy ( This - > header , fbuf + length , 4 ) ;
while ( FAILED ( hr = parse_header ( This - > header , & length , NULL ) ) )
2008-03-21 05:33:47 +00:00
{
2008-04-22 20:57:11 +00:00
memmove ( This - > header , This - > header + 1 , 3 ) ;
if ( pos + 4 > = stop )
break ;
IAsyncReader_SyncRead ( pin - > pReader , + + pos , 1 , This - > header + 3 ) ;
2008-03-21 05:33:47 +00:00
}
2008-04-22 20:57:11 +00:00
pin - > rtNext = MEDIATIME_FROM_BYTES ( pos ) ;
2008-03-21 05:33:47 +00:00
if ( SUCCEEDED ( hr ) )
{
2008-04-22 20:57:11 +00:00
/* Remove 4 for the last header, which should hopefully work */
IMediaSample * sample = NULL ;
LONGLONG rtSampleStart = pin - > rtNext - MEDIATIME_FROM_BYTES ( 4 ) ;
LONGLONG rtSampleStop = rtSampleStart + MEDIATIME_FROM_BYTES ( length + 4 ) ;
2008-03-21 05:33:47 +00:00
2008-04-22 20:57:11 +00:00
if ( rtSampleStop > pin - > rtStop )
rtSampleStop = MEDIATIME_FROM_BYTES ( ALIGNUP ( BYTES_FROM_MEDIATIME ( pin - > rtStop ) , pin - > cbAlign ) ) ;
2008-03-21 05:33:47 +00:00
2009-08-27 16:04:50 +00:00
hr = IMemAllocator_GetBuffer ( pin - > pAlloc , & sample , NULL , NULL , 0 ) ;
2008-04-22 20:57:11 +00:00
if ( SUCCEEDED ( hr ) )
2009-08-27 16:04:50 +00:00
{
IMediaSample_SetTime ( sample , & rtSampleStart , & rtSampleStop ) ;
2015-09-12 11:24:24 +00:00
IMediaSample_SetPreroll ( sample , FALSE ) ;
IMediaSample_SetDiscontinuity ( sample , FALSE ) ;
IMediaSample_SetSyncPoint ( sample , TRUE ) ;
2008-04-22 20:57:11 +00:00
hr = IAsyncReader_Request ( pin - > pReader , sample , 0 ) ;
2011-09-11 20:10:42 +00:00
if ( SUCCEEDED ( hr ) )
{
pin - > rtCurrent = rtSampleStart ;
pin - > rtNext = rtSampleStop ;
}
else
IMediaSample_Release ( sample ) ;
2009-08-27 16:04:50 +00:00
}
2008-04-22 20:57:11 +00:00
if ( FAILED ( hr ) )
FIXME ( " o_Ox%08x \n " , hr ) ;
}
2008-03-21 05:33:47 +00:00
}
2008-04-22 20:57:11 +00:00
/* If not, we're presumably at the end of file */
2008-03-21 05:33:47 +00:00
2008-04-22 20:57:11 +00:00
TRACE ( " Media time : %u.%03u \n " , ( DWORD ) ( This - > position / 10000000 ) , ( DWORD ) ( ( This - > position / 10000 ) % 1000 ) ) ;
2008-03-21 05:33:47 +00:00
2010-11-07 14:02:49 +00:00
if ( IMediaSample_IsDiscontinuity ( pCurrentSample ) = = S_OK ) {
IPin * victim ;
EnterCriticalSection ( & This - > Parser . filter . csFilter ) ;
pOutputPin - > pin . pin . tStart = time ;
pOutputPin - > pin . pin . dRate = This - > Parser . sourceSeeking . dRate ;
2012-05-21 13:21:41 +00:00
hr = IPin_ConnectedTo ( & pOutputPin - > pin . pin . IPin_iface , & victim ) ;
2010-11-07 14:02:49 +00:00
if ( hr = = S_OK )
{
hr = IPin_NewSegment ( victim , time , This - > Parser . sourceSeeking . llStop ,
This - > Parser . sourceSeeking . dRate ) ;
if ( hr ! = S_OK )
FIXME ( " NewSegment returns %08x \n " , hr ) ;
IPin_Release ( victim ) ;
}
LeaveCriticalSection ( & This - > Parser . filter . csFilter ) ;
if ( hr ! = S_OK )
return hr ;
}
rtstart = ( double ) ( time - pOutputPin - > pin . pin . tStart ) / pOutputPin - > pin . pin . dRate ;
rtstop = ( double ) ( This - > position - pOutputPin - > pin . pin . tStart ) / pOutputPin - > pin . pin . dRate ;
IMediaSample_SetTime ( pCurrentSample , & rtstart , & rtstop ) ;
IMediaSample_SetMediaTime ( pCurrentSample , & time , & This - > position ) ;
2008-03-21 05:33:47 +00:00
2012-05-21 13:21:41 +00:00
hr = BaseOutputPinImpl_Deliver ( & pOutputPin - > pin , pCurrentSample ) ;
2008-04-01 21:42:32 +00:00
2008-04-07 23:11:36 +00:00
if ( hr ! = S_OK )
2008-04-01 21:42:32 +00:00
{
2008-04-07 23:11:36 +00:00
if ( hr ! = S_FALSE )
TRACE ( " Error sending sample (%x) \n " , hr ) ;
else
2008-04-22 20:57:11 +00:00
TRACE ( " S_FALSE (%d), holding \n " , IMediaSample_GetActualDataLength ( pCurrentSample ) ) ;
2008-04-01 21:42:32 +00:00
}
2008-04-07 23:11:36 +00:00
2008-03-21 05:33:47 +00:00
return hr ;
}
2007-04-24 12:28:14 +00:00
2008-04-19 02:30:25 +00:00
static HRESULT MPEGSplitter_process_sample ( LPVOID iface , IMediaSample * pSample , DWORD_PTR cookie )
2007-04-24 12:28:14 +00:00
{
2009-01-29 10:14:55 +00:00
MPEGSplitterImpl * This = iface ;
2008-03-21 05:33:47 +00:00
BYTE * pbSrcStream ;
2007-04-24 12:28:14 +00:00
DWORD cbSrcStream = 0 ;
2008-05-09 23:38:29 +00:00
REFERENCE_TIME tStart , tStop , tAviStart = This - > position ;
2008-03-21 05:33:47 +00:00
HRESULT hr ;
2007-04-24 12:28:14 +00:00
hr = IMediaSample_GetTime ( pSample , & tStart , & tStop ) ;
if ( SUCCEEDED ( hr ) )
{
cbSrcStream = IMediaSample_GetActualDataLength ( pSample ) ;
hr = IMediaSample_GetPointer ( pSample , & pbSrcStream ) ;
}
2008-05-06 18:01:59 +00:00
/* Flush occurring */
2008-04-22 20:57:11 +00:00
if ( cbSrcStream = = 0 )
{
FIXME ( " .. Why do I need you? \n " ) ;
return S_OK ;
}
2007-04-24 12:28:14 +00:00
/* trace removed for performance reasons */
/* TRACE("(%p), %llu -> %llu\n", pSample, tStart, tStop); */
2008-03-21 05:33:47 +00:00
/* Now, try to find a new header */
2008-04-22 20:57:11 +00:00
hr = FillBuffer ( This , pSample ) ;
if ( hr ! = S_OK )
2007-04-24 12:28:14 +00:00
{
2008-04-22 20:57:11 +00:00
WARN ( " Failed with hres: %08x! \n " , hr ) ;
2008-04-09 19:07:14 +00:00
2008-04-30 21:34:07 +00:00
/* Unset progression if denied! */
if ( hr = = VFW_E_WRONG_STATE | | hr = = S_FALSE )
2008-03-28 20:10:20 +00:00
{
2008-04-30 21:34:07 +00:00
memcpy ( This - > header , pbSrcStream , 4 ) ;
This - > Parser . pInputPin - > rtCurrent = tStart ;
2008-05-09 23:38:29 +00:00
This - > position = tAviStart ;
2008-03-28 20:10:20 +00:00
}
2007-04-24 12:28:14 +00:00
}
2010-10-11 15:15:35 +00:00
if ( BYTES_FROM_MEDIATIME ( tStop ) > = This - > EndOfFile | | This - > position > = This - > Parser . sourceSeeking . llStop )
2007-04-24 12:28:14 +00:00
{
2008-11-04 22:22:53 +00:00
unsigned int i ;
2007-04-24 12:28:14 +00:00
2008-03-21 05:33:47 +00:00
TRACE ( " End of file reached \n " ) ;
2007-04-24 12:28:14 +00:00
for ( i = 0 ; i < This - > Parser . cStreams ; i + + )
{
IPin * ppin ;
hr = IPin_ConnectedTo ( This - > Parser . ppPins [ i + 1 ] , & ppin ) ;
if ( SUCCEEDED ( hr ) )
{
hr = IPin_EndOfStream ( ppin ) ;
IPin_Release ( ppin ) ;
}
if ( FAILED ( hr ) )
2008-11-04 22:22:53 +00:00
WARN ( " Error sending EndOfStream to pin %u (%x) \n " , i , hr ) ;
2007-04-24 12:28:14 +00:00
}
/* Force the pullpin thread to stop */
hr = S_FALSE ;
}
return hr ;
}
static HRESULT MPEGSplitter_query_accept ( LPVOID iface , const AM_MEDIA_TYPE * pmt )
{
if ( ! IsEqualIID ( & pmt - > majortype , & MEDIATYPE_Stream ) )
return S_FALSE ;
if ( IsEqualIID ( & pmt - > subtype , & MEDIASUBTYPE_MPEG1Audio ) )
return S_OK ;
if ( IsEqualIID ( & pmt - > subtype , & MEDIASUBTYPE_MPEG1Video ) )
FIXME ( " MPEG-1 video streams not yet supported. \n " ) ;
else if ( IsEqualIID ( & pmt - > subtype , & MEDIASUBTYPE_MPEG1System ) )
FIXME ( " MPEG-1 system streams not yet supported. \n " ) ;
else if ( IsEqualIID ( & pmt - > subtype , & MEDIASUBTYPE_MPEG1VideoCD ) )
FIXME ( " MPEG-1 VideoCD streams not yet supported. \n " ) ;
2011-09-26 15:34:44 +00:00
else FIXME ( " %s \n " , debugstr_guid ( & pmt - > subtype ) ) ;
2007-04-24 12:28:14 +00:00
return S_FALSE ;
}
static HRESULT MPEGSplitter_init_audio ( MPEGSplitterImpl * This , const BYTE * header , PIN_INFO * ppiOutput , AM_MEDIA_TYPE * pamt )
{
WAVEFORMATEX * format ;
int bitrate_index ;
int freq_index ;
int mode_ext ;
int emphasis ;
2016-11-22 06:14:59 +00:00
int padding ;
2007-04-24 12:28:14 +00:00
int lsf = 1 ;
int mpeg1 ;
int layer ;
int mode ;
ZeroMemory ( pamt , sizeof ( * pamt ) ) ;
ppiOutput - > dir = PINDIR_OUTPUT ;
2016-09-02 10:55:20 +00:00
ppiOutput - > pFilter = & This - > Parser . filter . IBaseFilter_iface ;
2007-04-24 12:28:14 +00:00
wsprintfW ( ppiOutput - > achName , wszAudioStream ) ;
2008-03-12 20:32:07 +00:00
pamt - > formattype = FORMAT_WaveFormatEx ;
pamt - > majortype = MEDIATYPE_Audio ;
pamt - > subtype = MEDIASUBTYPE_MPEG1AudioPayload ;
2007-04-24 12:28:14 +00:00
pamt - > lSampleSize = 0 ;
2008-03-21 05:33:47 +00:00
pamt - > bFixedSizeSamples = FALSE ;
2007-04-24 12:28:14 +00:00
pamt - > bTemporalCompression = 0 ;
mpeg1 = ( header [ 1 ] > > 4 ) & 0x1 ;
if ( mpeg1 )
lsf = ( ( header [ 1 ] > > 3 ) & 0x1 ) ^ 1 ;
layer = 4 - ( ( header [ 1 ] > > 1 ) & 0x3 ) ;
bitrate_index = ( ( header [ 2 ] > > 4 ) & 0xf ) ;
2016-11-22 06:14:59 +00:00
padding = ( ( header [ 2 ] > > 1 ) & 0x1 ) ;
2007-04-24 12:28:14 +00:00
freq_index = ( ( header [ 2 ] > > 2 ) & 0x3 ) + ( mpeg1 ? ( lsf * 3 ) : 6 ) ;
mode = ( ( header [ 3 ] > > 6 ) & 0x3 ) ;
mode_ext = ( ( header [ 3 ] > > 4 ) & 0x3 ) ;
emphasis = ( ( header [ 3 ] > > 0 ) & 0x3 ) ;
2008-03-21 05:33:47 +00:00
if ( ! bitrate_index )
{
/* Set to highest bitrate so samples will fit in for sure */
FIXME ( " Variable-bitrate audio not fully supported. \n " ) ;
bitrate_index = 15 ;
}
2007-04-24 12:28:14 +00:00
pamt - > cbFormat = ( ( layer = = 3 ) ? sizeof ( MPEGLAYER3WAVEFORMAT ) :
sizeof ( MPEG1WAVEFORMAT ) ) ;
pamt - > pbFormat = CoTaskMemAlloc ( pamt - > cbFormat ) ;
if ( ! pamt - > pbFormat )
return E_OUTOFMEMORY ;
ZeroMemory ( pamt - > pbFormat , pamt - > cbFormat ) ;
format = ( WAVEFORMATEX * ) pamt - > pbFormat ;
format - > wFormatTag = ( ( layer = = 3 ) ? WAVE_FORMAT_MPEGLAYER3 :
WAVE_FORMAT_MPEG ) ;
format - > nChannels = ( ( mode = = 3 ) ? 1 : 2 ) ;
format - > nSamplesPerSec = freqs [ freq_index ] ;
format - > nAvgBytesPerSec = tabsel_123 [ lsf ] [ layer - 1 ] [ bitrate_index ] * 1000 / 8 ;
if ( layer = = 3 )
format - > nBlockAlign = format - > nAvgBytesPerSec * 8 * 144 /
2016-11-22 06:14:59 +00:00
( format - > nSamplesPerSec < < lsf ) + padding ;
2007-04-24 12:28:14 +00:00
else if ( layer = = 2 )
format - > nBlockAlign = format - > nAvgBytesPerSec * 8 * 144 /
2016-11-22 06:14:59 +00:00
format - > nSamplesPerSec + padding ;
2007-04-24 12:28:14 +00:00
else
2016-11-22 06:14:59 +00:00
format - > nBlockAlign = 4 * ( format - > nAvgBytesPerSec * 8 * 12 / format - > nSamplesPerSec + padding ) ;
2007-04-24 12:28:14 +00:00
format - > wBitsPerSample = 0 ;
if ( layer = = 3 )
{
MPEGLAYER3WAVEFORMAT * mp3format = ( MPEGLAYER3WAVEFORMAT * ) format ;
format - > cbSize = MPEGLAYER3_WFX_EXTRA_BYTES ;
mp3format - > wID = MPEGLAYER3_ID_MPEG ;
2008-03-21 05:33:47 +00:00
mp3format - > fdwFlags = MPEGLAYER3_FLAG_PADDING_ON ;
2007-04-24 12:28:14 +00:00
mp3format - > nBlockSize = format - > nBlockAlign ;
mp3format - > nFramesPerBlock = 1 ;
/* Beware the evil magic numbers. This struct is apparently horribly
* under - documented , and the only references I could find had it being
* set to this with no real explanation . It works fine though , so I ' m
* not complaining ( yet ) .
*/
mp3format - > nCodecDelay = 1393 ;
}
else
{
MPEG1WAVEFORMAT * mpgformat = ( MPEG1WAVEFORMAT * ) format ;
format - > cbSize = 22 ;
mpgformat - > fwHeadLayer = ( ( layer = = 1 ) ? ACM_MPEG_LAYER1 :
( ( layer = = 2 ) ? ACM_MPEG_LAYER2 :
ACM_MPEG_LAYER3 ) ) ;
mpgformat - > dwHeadBitrate = format - > nAvgBytesPerSec * 8 ;
mpgformat - > fwHeadMode = ( ( mode = = 3 ) ? ACM_MPEG_SINGLECHANNEL :
( ( mode = = 2 ) ? ACM_MPEG_DUALCHANNEL :
( ( mode = = 1 ) ? ACM_MPEG_JOINTSTEREO :
ACM_MPEG_STEREO ) ) ) ;
mpgformat - > fwHeadModeExt = ( ( mode = = 1 ) ? 0x0F : ( 1 < < mode_ext ) ) ;
mpgformat - > wHeadEmphasis = emphasis + 1 ;
mpgformat - > fwHeadFlags = ACM_MPEG_ID_MPEG1 ;
}
pamt - > subtype . Data1 = format - > wFormatTag ;
TRACE ( " MPEG audio stream detected: \n "
" \t Layer %d (%#x) \n "
" \t Frequency: %d \n "
" \t Channels: %d (%d) \n "
" \t BytesPerSec: %d \n " ,
layer , format - > wFormatTag , format - > nSamplesPerSec ,
format - > nChannels , mode , format - > nAvgBytesPerSec ) ;
dump_AM_MEDIA_TYPE ( pamt ) ;
return S_OK ;
}
2008-04-22 20:57:11 +00:00
static HRESULT MPEGSplitter_pre_connect ( IPin * iface , IPin * pConnectPin , ALLOCATOR_PROPERTIES * props )
2007-04-24 12:28:14 +00:00
{
2012-04-04 13:27:25 +00:00
PullPin * pPin = impl_PullPin_from_IPin ( iface ) ;
2007-04-24 12:28:14 +00:00
MPEGSplitterImpl * This = ( MPEGSplitterImpl * ) pPin - > pin . pinInfo . pFilter ;
HRESULT hr ;
LONGLONG pos = 0 ; /* in bytes */
2008-03-14 03:24:58 +00:00
BYTE header [ 10 ] ;
2015-10-19 06:43:08 +00:00
int streamtype ;
2007-04-24 12:28:14 +00:00
LONGLONG total , avail ;
AM_MEDIA_TYPE amt ;
PIN_INFO piOutput ;
IAsyncReader_Length ( pPin - > pReader , & total , & avail ) ;
This - > EndOfFile = total ;
2008-03-14 03:24:58 +00:00
hr = IAsyncReader_SyncRead ( pPin - > pReader , pos , 4 , header ) ;
2007-04-24 12:28:14 +00:00
if ( SUCCEEDED ( hr ) )
pos + = 4 ;
2008-03-14 03:24:58 +00:00
/* Skip ID3 v2 tag, if any */
2008-08-17 17:33:17 +00:00
if ( SUCCEEDED ( hr ) & & ! memcmp ( " ID3 " , header , 3 ) )
2008-03-14 03:24:58 +00:00
do {
2012-06-23 17:04:00 +00:00
UINT length = 0 ;
2008-03-14 03:24:58 +00:00
hr = IAsyncReader_SyncRead ( pPin - > pReader , pos , 6 , header + 4 ) ;
if ( FAILED ( hr ) )
break ;
pos + = 6 ;
TRACE ( " Found ID3 v2.%d.%d \n " , header [ 3 ] , header [ 4 ] ) ;
2012-06-23 17:04:00 +00:00
if ( header [ 3 ] < = 4 & & header [ 4 ] ! = 0xff & &
( header [ 5 ] & 0x0f ) = = 0 & & ( header [ 6 ] & 0x80 ) = = 0 & &
( header [ 7 ] & 0x80 ) = = 0 & & ( header [ 8 ] & 0x80 ) = = 0 & &
( header [ 9 ] & 0x80 ) = = 0 )
{
length = ( header [ 6 ] < < 21 ) | ( header [ 7 ] < < 14 ) |
( header [ 8 ] < < 7 ) | ( header [ 9 ] ) ;
if ( ( header [ 5 ] & 0x10 ) )
length + = 10 ;
TRACE ( " Length: %u \n " , length ) ;
}
2008-03-14 03:24:58 +00:00
pos + = length ;
/* Read the real header for the mpeg splitter */
hr = IAsyncReader_SyncRead ( pPin - > pReader , pos , 4 , header ) ;
if ( SUCCEEDED ( hr ) )
pos + = 4 ;
} while ( 0 ) ;
2015-10-19 06:43:08 +00:00
while ( SUCCEEDED ( hr ) )
2007-04-24 12:28:14 +00:00
{
2015-10-19 06:43:08 +00:00
TRACE ( " Testing header %x:%x:%x:%x \n " , header [ 0 ] , header [ 1 ] , header [ 2 ] , header [ 3 ] ) ;
streamtype = MPEGSplitter_head_check ( header ) ;
if ( streamtype = = MPEG_AUDIO_HEADER )
{
LONGLONG length ;
if ( parse_header ( header , & length , NULL ) = = S_OK )
{
BYTE next_header [ 4 ] ;
/* Ensure we have a valid header by seeking for the next frame, some bad
* encoded ID3v2 may have an incorrect length and we end up finding bytes
* like FF FE 00 28 which are nothing more than a Unicode BOM followed by
* ' ) ' character from inside a ID3v2 tag . Unfortunately that sequence
* matches like a valid mpeg audio header .
*/
hr = IAsyncReader_SyncRead ( pPin - > pReader , pos + length - 4 , 4 , next_header ) ;
if ( FAILED ( hr ) )
break ;
if ( parse_header ( next_header , & length , NULL ) = = S_OK )
break ;
TRACE ( " %x:%x:%x:%x is a fake audio header, looking for next... \n " ,
header [ 0 ] , header [ 1 ] , header [ 2 ] , header [ 3 ] ) ;
}
}
else if ( streamtype ) /* Video or System stream */
break ;
2007-04-24 12:28:14 +00:00
/* No valid header yet; shift by a byte and check again */
2008-03-21 05:33:47 +00:00
memmove ( header , header + 1 , 3 ) ;
2008-03-14 03:24:58 +00:00
hr = IAsyncReader_SyncRead ( pPin - > pReader , pos + + , 1 , header + 3 ) ;
2007-04-24 12:28:14 +00:00
}
if ( FAILED ( hr ) )
return hr ;
2008-03-21 05:33:47 +00:00
pos - = 4 ;
2008-04-22 20:57:11 +00:00
This - > begin_offset = pos ;
memcpy ( This - > header , header , 4 ) ;
2007-04-24 12:28:14 +00:00
switch ( streamtype )
{
case MPEG_AUDIO_HEADER :
2008-03-21 05:33:47 +00:00
{
LONGLONG duration = 0 ;
2012-06-26 02:41:13 +00:00
WAVEFORMATEX * format ;
2008-03-21 05:33:47 +00:00
2007-04-24 12:28:14 +00:00
hr = MPEGSplitter_init_audio ( This , header , & piOutput , & amt ) ;
if ( SUCCEEDED ( hr ) )
{
2012-06-26 02:41:13 +00:00
format = ( WAVEFORMATEX * ) amt . pbFormat ;
2007-04-24 12:28:14 +00:00
2008-04-22 20:57:11 +00:00
props - > cbAlign = 1 ;
props - > cbPrefix = 0 ;
2007-04-24 12:28:14 +00:00
/* Make the output buffer a multiple of the frame size */
2008-04-22 20:57:11 +00:00
props - > cbBuffer = 0x4000 / format - > nBlockAlign *
2007-04-24 12:28:14 +00:00
format - > nBlockAlign ;
2008-04-30 21:34:07 +00:00
props - > cBuffers = 3 ;
2008-04-22 20:57:11 +00:00
hr = Parser_AddPin ( & ( This - > Parser ) , & piOutput , props , & amt ) ;
2007-04-24 12:28:14 +00:00
}
if ( FAILED ( hr ) )
{
2016-07-08 08:10:14 +00:00
CoTaskMemFree ( amt . pbFormat ) ;
2007-04-24 12:28:14 +00:00
ERR ( " Could not create pin for MPEG audio stream (%x) \n " , hr ) ;
2008-03-21 05:33:47 +00:00
break ;
}
/* Check for idv1 tag, and remove it from stream if found */
2012-06-26 02:41:13 +00:00
hr = IAsyncReader_SyncRead ( pPin - > pReader , This - > EndOfFile - 128 , 3 , header ) ;
2008-03-21 05:33:47 +00:00
if ( FAILED ( hr ) )
break ;
2012-06-26 02:41:13 +00:00
if ( ! strncmp ( ( char * ) header , " TAG " , 3 ) )
2008-03-21 05:33:47 +00:00
This - > EndOfFile - = 128 ;
2008-04-07 23:11:36 +00:00
This - > Parser . pInputPin - > rtStop = MEDIATIME_FROM_BYTES ( This - > EndOfFile ) ;
2008-04-22 20:57:11 +00:00
This - > Parser . pInputPin - > rtStart = This - > Parser . pInputPin - > rtCurrent = MEDIATIME_FROM_BYTES ( This - > begin_offset ) ;
2008-03-21 05:33:47 +00:00
2012-06-26 02:41:13 +00:00
duration = ( This - > EndOfFile - This - > begin_offset ) * 10000000 / format - > nAvgBytesPerSec ;
2008-03-26 17:01:09 +00:00
TRACE ( " Duration: %d seconds \n " , ( DWORD ) ( duration / 10000000 ) ) ;
2008-04-09 19:07:14 +00:00
2010-10-11 15:15:35 +00:00
This - > Parser . sourceSeeking . llCurrent = 0 ;
This - > Parser . sourceSeeking . llDuration = duration ;
This - > Parser . sourceSeeking . llStop = duration ;
2007-04-24 12:28:14 +00:00
break ;
2008-03-21 05:33:47 +00:00
}
2007-04-24 12:28:14 +00:00
case MPEG_VIDEO_HEADER :
FIXME ( " MPEG video processing not yet supported! \n " ) ;
hr = E_FAIL ;
break ;
case MPEG_SYSTEM_HEADER :
FIXME ( " MPEG system streams not yet supported! \n " ) ;
hr = E_FAIL ;
break ;
default :
break ;
}
2008-03-21 05:33:47 +00:00
This - > position = 0 ;
2007-04-24 12:28:14 +00:00
return hr ;
}
static HRESULT MPEGSplitter_cleanup ( LPVOID iface )
{
2009-01-29 10:14:55 +00:00
MPEGSplitterImpl * This = iface ;
2007-04-24 12:28:14 +00:00
2008-04-30 21:34:07 +00:00
TRACE ( " (%p) \n " , This ) ;
2007-04-24 12:28:14 +00:00
return S_OK ;
}
2010-10-11 15:15:35 +00:00
static HRESULT WINAPI MPEGSplitter_seek ( IMediaSeeking * iface )
2008-04-01 21:43:09 +00:00
{
2010-10-11 15:15:35 +00:00
MPEGSplitterImpl * This = impl_from_IMediaSeeking ( iface ) ;
2008-04-01 21:43:09 +00:00
PullPin * pPin = This - > Parser . pInputPin ;
LONGLONG newpos , timepos , bytepos ;
2012-06-26 02:41:13 +00:00
HRESULT hr = E_INVALIDARG ;
2008-04-01 21:43:09 +00:00
BYTE header [ 4 ] ;
2010-10-11 15:15:35 +00:00
newpos = This - > Parser . sourceSeeking . llCurrent ;
2008-04-01 21:43:09 +00:00
if ( This - > position / 1000000 = = newpos / 1000000 )
{
2008-04-07 23:11:36 +00:00
TRACE ( " Requesting position %x%08x same as current position %x%08x \n " , ( DWORD ) ( newpos > > 32 ) , ( DWORD ) newpos , ( DWORD ) ( This - > position > > 32 ) , ( DWORD ) This - > position ) ;
2008-04-01 21:43:09 +00:00
return S_OK ;
}
2012-06-26 02:41:13 +00:00
bytepos = This - > begin_offset ;
timepos = 0 ;
/* http://mpgedit.org/mpgedit/mpeg_format/mpeghdr.htm has a whole read up on audio headers */
2008-04-22 20:57:11 +00:00
while ( bytepos + 3 < This - > EndOfFile )
2008-04-01 21:43:09 +00:00
{
2012-06-26 02:41:13 +00:00
LONGLONG duration = timepos ;
2008-04-01 21:43:09 +00:00
LONGLONG length = 0 ;
hr = IAsyncReader_SyncRead ( pPin - > pReader , bytepos , 4 , header ) ;
2012-06-26 02:41:13 +00:00
if ( hr ! = S_OK )
2008-04-08 19:28:09 +00:00
break ;
2012-06-26 02:41:13 +00:00
while ( ( hr = parse_header ( header , & length , & duration ) ) ! = S_OK & &
bytepos + 4 < This - > EndOfFile )
2008-04-01 21:43:09 +00:00
{
/* No valid header yet; shift by a byte and check again */
memmove ( header , header + 1 , 3 ) ;
2012-06-23 17:04:00 +00:00
hr = IAsyncReader_SyncRead ( pPin - > pReader , + + bytepos + 3 , 1 , header + 3 ) ;
2008-04-08 19:28:09 +00:00
if ( hr ! = S_OK )
2008-04-01 21:43:09 +00:00
break ;
2012-06-26 02:41:13 +00:00
}
if ( hr ! = S_OK | | duration > newpos )
break ;
bytepos + = length ;
timepos = duration ;
2008-04-01 21:43:09 +00:00
}
2008-04-07 23:11:36 +00:00
2008-04-01 21:43:09 +00:00
if ( SUCCEEDED ( hr ) )
{
PullPin * pin = This - > Parser . pInputPin ;
2008-04-07 23:11:36 +00:00
TRACE ( " Moving sound to %08u bytes! \n " , ( DWORD ) bytepos ) ;
2008-04-01 21:43:09 +00:00
2008-04-09 19:07:14 +00:00
EnterCriticalSection ( & pin - > thread_lock ) ;
2012-04-04 13:27:25 +00:00
IPin_BeginFlush ( & pin - > pin . IPin_iface ) ;
2008-04-01 21:43:09 +00:00
2008-04-07 23:11:36 +00:00
/* Make sure this is done while stopped, BeginFlush takes care of this */
2010-10-07 19:47:33 +00:00
EnterCriticalSection ( & This - > Parser . filter . csFilter ) ;
2008-04-22 20:57:11 +00:00
memcpy ( This - > header , header , 4 ) ;
2008-04-07 23:11:36 +00:00
2008-04-01 21:43:09 +00:00
pin - > rtStart = pin - > rtCurrent = MEDIATIME_FROM_BYTES ( bytepos ) ;
pin - > rtStop = MEDIATIME_FROM_BYTES ( ( REFERENCE_TIME ) This - > EndOfFile ) ;
This - > seek = TRUE ;
This - > position = newpos ;
2010-10-07 19:47:33 +00:00
LeaveCriticalSection ( & This - > Parser . filter . csFilter ) ;
2008-04-01 21:43:09 +00:00
2008-04-07 23:11:36 +00:00
TRACE ( " Done flushing \n " ) ;
2012-04-04 13:27:25 +00:00
IPin_EndFlush ( & pin - > pin . IPin_iface ) ;
2008-04-09 19:07:14 +00:00
LeaveCriticalSection ( & pin - > thread_lock ) ;
2008-04-01 21:43:09 +00:00
}
return hr ;
}
2008-04-01 21:42:32 +00:00
2008-04-22 20:57:11 +00:00
static HRESULT MPEGSplitter_disconnect ( LPVOID iface )
2008-04-16 03:39:36 +00:00
{
/* TODO: Find memory leaks etc */
return S_OK ;
}
2008-04-22 20:57:11 +00:00
static HRESULT MPEGSplitter_first_request ( LPVOID iface )
{
2009-01-29 10:14:55 +00:00
MPEGSplitterImpl * This = iface ;
2008-04-22 20:57:11 +00:00
PullPin * pin = This - > Parser . pInputPin ;
HRESULT hr ;
LONGLONG length ;
IMediaSample * sample ;
TRACE ( " Seeking? %d \n " , This - > seek ) ;
2011-10-07 11:26:51 +00:00
hr = parse_header ( This - > header , & length , NULL ) ;
assert ( hr = = S_OK ) ;
2008-04-22 20:57:11 +00:00
if ( pin - > rtCurrent > = pin - > rtStop )
{
/* Last sample has already been queued, request nothing more */
FIXME ( " Done! \n " ) ;
return S_OK ;
}
hr = IMemAllocator_GetBuffer ( pin - > pAlloc , & sample , NULL , NULL , 0 ) ;
pin - > rtNext = pin - > rtCurrent ;
if ( SUCCEEDED ( hr ) )
{
LONGLONG rtSampleStart = pin - > rtNext ;
/* Add 4 for the next header, which should hopefully work */
LONGLONG rtSampleStop = rtSampleStart + MEDIATIME_FROM_BYTES ( length + 4 ) ;
if ( rtSampleStop > pin - > rtStop )
rtSampleStop = MEDIATIME_FROM_BYTES ( ALIGNUP ( BYTES_FROM_MEDIATIME ( pin - > rtStop ) , pin - > cbAlign ) ) ;
2015-01-21 11:01:34 +00:00
IMediaSample_SetTime ( sample , & rtSampleStart , & rtSampleStop ) ;
2008-04-22 20:57:11 +00:00
IMediaSample_SetPreroll ( sample , FALSE ) ;
2010-11-07 14:02:49 +00:00
IMediaSample_SetDiscontinuity ( sample , TRUE ) ;
2008-04-22 20:57:11 +00:00
IMediaSample_SetSyncPoint ( sample , 1 ) ;
2015-09-12 11:24:24 +00:00
This - > seek = FALSE ;
2008-04-22 20:57:11 +00:00
hr = IAsyncReader_Request ( pin - > pReader , sample , 0 ) ;
2011-09-11 20:10:42 +00:00
if ( SUCCEEDED ( hr ) )
{
pin - > rtCurrent = pin - > rtNext ;
pin - > rtNext = rtSampleStop ;
}
else
IMediaSample_Release ( sample ) ;
2008-04-22 20:57:11 +00:00
}
if ( FAILED ( hr ) )
ERR ( " Horsemen of the apocalypse came to bring error 0x%08x \n " , hr ) ;
return hr ;
}
2015-10-22 16:54:47 +00:00
static HRESULT WINAPI MPEGSplitter_QueryInterface ( IBaseFilter * iface , REFIID riid , void * * ppv )
{
MPEGSplitterImpl * This = impl_from_IBaseFilter ( iface ) ;
TRACE ( " (%s, %p) \n " , qzdebugstr_guid ( riid ) , ppv ) ;
* ppv = NULL ;
if ( IsEqualIID ( riid , & IID_IUnknown )
| | IsEqualIID ( riid , & IID_IPersist )
| | IsEqualIID ( riid , & IID_IMediaFilter )
| | IsEqualIID ( riid , & IID_IBaseFilter ) )
* ppv = iface ;
else if ( IsEqualIID ( riid , & IID_IAMStreamSelect ) )
* ppv = & This - > IAMStreamSelect_iface ;
if ( * ppv )
{
IBaseFilter_AddRef ( iface ) ;
return S_OK ;
}
if ( ! IsEqualIID ( riid , & IID_IPin ) & & ! IsEqualIID ( riid , & IID_IVideoWindow ) )
FIXME ( " No interface for %s! \n " , qzdebugstr_guid ( riid ) ) ;
return E_NOINTERFACE ;
}
2008-04-23 18:23:43 +00:00
static const IBaseFilterVtbl MPEGSplitter_Vtbl =
{
2015-10-22 16:54:47 +00:00
MPEGSplitter_QueryInterface ,
2008-04-23 18:23:43 +00:00
Parser_AddRef ,
Parser_Release ,
Parser_GetClassID ,
Parser_Stop ,
Parser_Pause ,
Parser_Run ,
Parser_GetState ,
Parser_SetSyncSource ,
Parser_GetSyncSource ,
Parser_EnumPins ,
Parser_FindPin ,
Parser_QueryFilterInfo ,
Parser_JoinFilterGraph ,
Parser_QueryVendorInfo
} ;
2015-10-22 16:54:47 +00:00
static HRESULT WINAPI AMStreamSelect_QueryInterface ( IAMStreamSelect * iface , REFIID riid , void * * ppv )
{
MPEGSplitterImpl * This = impl_from_IAMStreamSelect ( iface ) ;
return IBaseFilter_QueryInterface ( & This - > Parser . filter . IBaseFilter_iface , riid , ppv ) ;
}
static ULONG WINAPI AMStreamSelect_AddRef ( IAMStreamSelect * iface )
{
MPEGSplitterImpl * This = impl_from_IAMStreamSelect ( iface ) ;
return IBaseFilter_AddRef ( & This - > Parser . filter . IBaseFilter_iface ) ;
}
static ULONG WINAPI AMStreamSelect_Release ( IAMStreamSelect * iface )
{
MPEGSplitterImpl * This = impl_from_IAMStreamSelect ( iface ) ;
return IBaseFilter_Release ( & This - > Parser . filter . IBaseFilter_iface ) ;
}
static HRESULT WINAPI AMStreamSelect_Count ( IAMStreamSelect * iface , DWORD * streams )
{
MPEGSplitterImpl * This = impl_from_IAMStreamSelect ( iface ) ;
FIXME ( " (%p/%p)->(%p) stub! \n " , This , iface , streams ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI AMStreamSelect_Info ( IAMStreamSelect * iface , LONG index , AM_MEDIA_TYPE * * media_type , DWORD * flags , LCID * lcid , DWORD * group , WCHAR * * name , IUnknown * * object , IUnknown * * unknown )
{
MPEGSplitterImpl * This = impl_from_IAMStreamSelect ( iface ) ;
FIXME ( " (%p/%p)->(%d,%p,%p,%p,%p,%p,%p,%p) stub! \n " , This , iface , index , media_type , flags , lcid , group , name , object , unknown ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI AMStreamSelect_Enable ( IAMStreamSelect * iface , LONG index , DWORD flags )
{
MPEGSplitterImpl * This = impl_from_IAMStreamSelect ( iface ) ;
FIXME ( " (%p/%p)->(%d,%x) stub! \n " , This , iface , index , flags ) ;
return E_NOTIMPL ;
}
static const IAMStreamSelectVtbl AMStreamSelectVtbl =
{
AMStreamSelect_QueryInterface ,
AMStreamSelect_AddRef ,
AMStreamSelect_Release ,
AMStreamSelect_Count ,
AMStreamSelect_Info ,
AMStreamSelect_Enable
} ;
2007-04-24 12:28:14 +00:00
HRESULT MPEGSplitter_create ( IUnknown * pUnkOuter , LPVOID * ppv )
{
MPEGSplitterImpl * This ;
HRESULT hr = E_FAIL ;
TRACE ( " (%p, %p) \n " , pUnkOuter , ppv ) ;
* ppv = NULL ;
if ( pUnkOuter )
return CLASS_E_NOAGGREGATION ;
This = CoTaskMemAlloc ( sizeof ( MPEGSplitterImpl ) ) ;
if ( ! This )
return E_OUTOFMEMORY ;
ZeroMemory ( This , sizeof ( MPEGSplitterImpl ) ) ;
2008-04-25 21:59:05 +00:00
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 ) ;
2007-04-24 12:28:14 +00:00
if ( FAILED ( hr ) )
{
CoTaskMemFree ( This ) ;
return hr ;
}
2015-10-22 16:54:47 +00:00
This - > IAMStreamSelect_iface . lpVtbl = & AMStreamSelectVtbl ;
2015-09-12 11:24:24 +00:00
This - > seek = TRUE ;
2007-04-24 12:28:14 +00:00
/* Note: This memory is managed by the parser filter once created */
2015-10-21 11:31:49 +00:00
* ppv = & This - > Parser . filter . IBaseFilter_iface ;
2007-04-24 12:28:14 +00:00
return hr ;
}