filter.cpp
来自「VLC媒体播放程序」· C++ 代码 · 共 946 行 · 第 1/2 页
CPP
946 行
/***************************************************************************** * filter.c : DirectShow access module for vlc ***************************************************************************** * Copyright (C) 2002 VideoLAN * $Id: filter.cpp,v 1.13 2004/02/16 13:33:10 gbazin Exp $ * * Author: Gildas Bazin <gbazin@netcourrier.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <stdlib.h>#include <stdio.h>#include <string.h>#include <vlc/vlc.h>#include <vlc/input.h>#include <vlc/vout.h>#ifndef _MSC_VER /* Work-around a bug in w32api-2.5 */# define QACONTAINERFLAGS QACONTAINERFLAGS_SOMETHINGELSE#endif#include "filter.h"#define DEBUG_DSHOW 1struct access_sys_t{ vlc_mutex_t lock; vlc_cond_t wait;};/***************************************************************************** * DirectShow GUIDs. * Easier to define them hear as mingw doesn't provide them all. *****************************************************************************/const GUID CLSID_SystemDeviceEnum = {0x62be5d10, 0x60eb, 0x11d0, {0xbd, 0x3b, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86}};const GUID CLSID_VideoInputDeviceCategory = {0x860BB310,0x5D01,0x11d0,{0xBD,0x3B,0x00,0xA0,0xC9,0x11,0xCE,0x86}};const GUID CLSID_AudioInputDeviceCategory = {0x33d9a762, 0x90c8, 0x11d0, {0xbd, 0x43, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86}};const GUID IID_IPropertyBag = {0x55272A00, 0x42CB, 0x11CE, {0x81, 0x35, 0x00, 0xAA, 0x00, 0x4B, 0xB8, 0x51}};const GUID IID_ICreateDevEnum = {0x29840822, 0x5b84, 0x11d0, {0xbd, 0x3b, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86}};const GUID IID_IFilterGraph = {0x56a8689f, 0x0ad4, 0x11ce, {0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID IID_IMediaControl = {0x56a868b1, 0x0ad4, 0x11ce, {0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID CLSID_FilterGraph = {0xe436ebb3, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID IID_IUnknown = {0x00000000, 0x0000, 0x0000, {0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46}};const GUID IID_IPersist = {0x0000010c, 0x0000, 0x0000, {0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46}};const GUID IID_IMediaFilter = {0x56a86899, 0x0ad4, 0x11ce, {0xb0,0x3a, 0x00,0x20,0xaf,0x0b,0xa7,0x70}};const GUID IID_IBaseFilter = {0x56a86895, 0x0ad4, 0x11ce, {0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID IID_IPin = {0x56a86891, 0x0ad4, 0x11ce, {0xb0,0x3a, 0x00,0x20,0xaf,0x0b,0xa7,0x70}};const GUID IID_IMemInputPin = {0x56a8689d, 0x0ad4, 0x11ce, {0xb0,0x3a, 0x00,0x20,0xaf,0x0b,0xa7,0x70}};const GUID IID_IEnumPins = {0x56a86892, 0x0ad4, 0x11ce, {0xb0,0x3a, 0x00,0x20,0xaf,0x0b,0xa7,0x70}};const GUID IID_IEnumMediaTypes = {0x89c31040, 0x846b, 0x11ce, {0x97,0xd3, 0x00,0xaa,0x00,0x55,0x59,0x5a}};const GUID IID_IAMBufferNegotiation = {0x56ed71a0, 0xaf5f, 0x11d0, {0xb3, 0xf0, 0x00, 0xaa, 0x00, 0x37, 0x61, 0xc5}};const GUID IID_ISpecifyPropertyPages = {0xb196b28b, 0xbab4, 0x101a, {0xb6, 0x9c, 0x00, 0xaa, 0x00, 0x34, 0x1d, 0x07}};/* * MEDIATYPEs and MEDIASUBTYPEs */const GUID MEDIATYPE_Video = {0x73646976, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_PREVIEW_VIDEO = {0x2859e1da, 0xb81f, 0x4fbd, {0x94, 0x3b, 0xe2, 0x37, 0x24, 0xa1, 0xab, 0xb3}};const GUID MEDIATYPE_Stream = {0xe436eb83, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};/* Packed RGB formats */const GUID MEDIASUBTYPE_RGB1 = {0xe436eb78, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID MEDIASUBTYPE_RGB4 = {0xe436eb79, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID MEDIASUBTYPE_RGB8 = {0xe436eb7a, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID MEDIASUBTYPE_RGB565 = {0xe436eb7b, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID MEDIASUBTYPE_RGB555 = {0xe436eb7c, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID MEDIASUBTYPE_RGB24 = {0xe436eb7d, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID MEDIASUBTYPE_RGB32 = {0xe436eb7e, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};const GUID MEDIASUBTYPE_ARGB32 = {0x773c9ac0, 0x3274, 0x11d0, {0xb7, 0x24, 0x0, 0xaa, 0x0, 0x6c, 0x1a, 0x1}};/* Packed YUV formats */const GUID MEDIASUBTYPE_YUYV = {0x56595559, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_Y411 = {0x31313459, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_Y211 = {0x31313259, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_YUY2 = {0x32595559, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_YVYU = {0x55595659, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_UYVY = {0x59565955, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};/* Planar YUV formats */const GUID MEDIASUBTYPE_YVU9 = {0x39555659, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_YV12 = {0x32315659, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_IYUV = {0x56555949, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}}; /* identical to YV12 */const GUID MEDIASUBTYPE_Y41P = {0x50313459, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_I420 = {0x30323449, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIATYPE_Audio = {0x73647561, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID FORMAT_WaveFormatEx = {0x05589f81, 0xc356, 0x11ce, {0xbf, 0x01, 0x00, 0xaa, 0x00, 0x55, 0x59, 0x5a}};const GUID MEDIASUBTYPE_PCM = {0x00000001, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_IEEE_FLOAT = {0x00000003, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};/* DV formats */const GUID MEDIASUBTYPE_dvsd = {0x64737664, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_dvhd = {0x64687664, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};const GUID MEDIASUBTYPE_dvsl = {0x6c737664, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};/* MPEG2 formats */const GUID MEDIASUBTYPE_MPEG2_VIDEO = {0xe06d8026, 0xdb46, 0x11cf, {0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea}};const GUID MEDIASUBTYPE_MPEG2_PROGRAM = {0xe06d8022, 0xdb46, 0x11cf, {0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea}};const GUID MEDIASUBTYPE_MPEG2_TRANSPORT = {0xe06d8023, 0xdb46, 0x11cf, {0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea}};const GUID FORMAT_MPEG2Video = {0xe06d80e3, 0xdb46, 0x11cf, {0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea}};const GUID GUID_NULL = {0x0000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}};void WINAPI FreeMediaType( AM_MEDIA_TYPE& mt ){ if( mt.cbFormat != 0 ) { CoTaskMemFree( (PVOID)mt.pbFormat ); mt.cbFormat = 0; mt.pbFormat = NULL; } if( mt.pUnk != NULL ) { mt.pUnk->Release(); mt.pUnk = NULL; }}HRESULT WINAPI CopyMediaType( AM_MEDIA_TYPE *pmtTarget, const AM_MEDIA_TYPE *pmtSource ){ *pmtTarget = *pmtSource; if( pmtSource->cbFormat != 0 ) { pmtTarget->pbFormat = (PBYTE)CoTaskMemAlloc( pmtSource->cbFormat ); if( pmtTarget->pbFormat == NULL ) { pmtTarget->cbFormat = 0; return E_OUTOFMEMORY; } else { CopyMemory( (PVOID)pmtTarget->pbFormat, (PVOID)pmtSource->pbFormat, pmtTarget->cbFormat ); } } if( pmtTarget->pUnk != NULL ) { pmtTarget->pUnk->AddRef(); } return S_OK;}/**************************************************************************** * Implementation of our dummy directshow filter pin class ****************************************************************************/CapturePin::CapturePin( input_thread_t * _p_input, CaptureFilter *_p_filter, AM_MEDIA_TYPE mt ) : p_input( _p_input ), p_filter( _p_filter ), p_connected_pin( NULL ), media_type( mt ), i_ref( 1 ){}CapturePin::~CapturePin(){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::~CapturePin" );#endif}HRESULT CapturePin::CustomGetSample( VLCMediaSample *vlc_sample ){#if 0 //def DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::CustomGetSample" );#endif access_sys_t *p_sys = p_input->p_access_data; vlc_mutex_lock( &p_sys->lock ); if( samples_queue.size() ) { *vlc_sample = samples_queue.back(); samples_queue.pop_back(); vlc_mutex_unlock( &p_sys->lock ); return S_OK; } vlc_mutex_unlock( &p_sys->lock ); return S_FALSE;}AM_MEDIA_TYPE CapturePin::CustomGetMediaType(){ return media_type;}/* IUnknown methods */STDMETHODIMP CapturePin::QueryInterface(REFIID riid, void **ppv){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::QueryInterface" );#endif if( riid == IID_IUnknown || riid == IID_IPin ) { AddRef(); *ppv = (IPin *)this; return NOERROR; } if( riid == IID_IMemInputPin ) { AddRef(); *ppv = (IMemInputPin *)this; return NOERROR; } else { *ppv = NULL; return E_NOINTERFACE; }}STDMETHODIMP_(ULONG) CapturePin::AddRef(){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::AddRef (ref: %i)", i_ref );#endif return i_ref++;};STDMETHODIMP_(ULONG) CapturePin::Release(){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::Release (ref: %i)", i_ref );#endif if( !InterlockedDecrement(&i_ref) ) delete this; return 0;};/* IPin methods */STDMETHODIMP CapturePin::Connect( IPin * pReceivePin, const AM_MEDIA_TYPE *pmt ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::Connect" );#endif return E_NOTIMPL;}STDMETHODIMP CapturePin::ReceiveConnection( IPin * pConnector, const AM_MEDIA_TYPE *pmt ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::ReceiveConnection" );#endif if( pmt->majortype == MEDIATYPE_Video ) { if( media_type.subtype != GUID_NULL && media_type.subtype != pmt->subtype ) return VFW_E_TYPE_NOT_ACCEPTED; if( media_type.pbFormat && ((VIDEOINFOHEADER *)media_type.pbFormat)->bmiHeader.biHeight && ((VIDEOINFOHEADER *)media_type.pbFormat)->bmiHeader.biHeight != ((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biHeight ) return VFW_E_TYPE_NOT_ACCEPTED; if( media_type.pbFormat && ((VIDEOINFOHEADER *)media_type.pbFormat)->bmiHeader.biWidth && ((VIDEOINFOHEADER *)media_type.pbFormat)->bmiHeader.biWidth != ((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biWidth ) return VFW_E_TYPE_NOT_ACCEPTED; } p_connected_pin = pConnector; p_connected_pin->AddRef(); FreeMediaType( media_type ); return CopyMediaType( &media_type, pmt );}STDMETHODIMP CapturePin::Disconnect(){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::Disconnect" );#endif#if 0 // FIXME: This does seem to create crashes sometimes VLCMediaSample vlc_sample; access_sys_t *p_sys = p_input->p_access_data; vlc_mutex_lock( &p_sys->lock ); while( samples_queue.size() ) { vlc_sample = samples_queue.back(); samples_queue.pop_back(); vlc_sample.p_sample->Release(); } vlc_mutex_unlock( &p_sys->lock );#endif if( p_connected_pin ) p_connected_pin->Release(); p_connected_pin = NULL; FreeMediaType( media_type ); return S_OK;}STDMETHODIMP CapturePin::ConnectedTo( IPin **pPin ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::ConnectedTo" );#endif if( !p_connected_pin ) return VFW_E_NOT_CONNECTED; p_connected_pin->AddRef(); *pPin = p_connected_pin; return S_OK;}STDMETHODIMP CapturePin::ConnectionMediaType( AM_MEDIA_TYPE *pmt ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::ConnectionMediaType" );#endif return CopyMediaType( pmt, &media_type );}STDMETHODIMP CapturePin::QueryPinInfo( PIN_INFO * pInfo ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::QueryPinInfo" );#endif pInfo->pFilter = p_filter; if( p_filter ) p_filter->AddRef(); pInfo->achName[0] = L'\0'; pInfo->dir = PINDIR_INPUT; return NOERROR;}STDMETHODIMP CapturePin::QueryDirection( PIN_DIRECTION * pPinDir ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::QueryDirection" );#endif *pPinDir = PINDIR_INPUT; return NOERROR;}STDMETHODIMP CapturePin::QueryId( LPWSTR * Id ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::QueryId" );#endif return E_NOTIMPL;}STDMETHODIMP CapturePin::QueryAccept( const AM_MEDIA_TYPE *pmt ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::QueryAccept" );#endif return E_NOTIMPL;}STDMETHODIMP CapturePin::EnumMediaTypes( IEnumMediaTypes **ppEnum ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::EnumMediaTypes" );#endif *ppEnum = new CaptureEnumMediaTypes( p_input, this, NULL ); if( *ppEnum == NULL ) return E_OUTOFMEMORY; return NOERROR;}STDMETHODIMP CapturePin::QueryInternalConnections( IPin* *apPin, ULONG *nPin ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::QueryInternalConnections" );#endif return E_NOTIMPL;}STDMETHODIMP CapturePin::EndOfStream( void ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::EndOfStream" );#endif return S_OK;}STDMETHODIMP CapturePin::BeginFlush( void ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::BeginFlush" );#endif return S_OK;}STDMETHODIMP CapturePin::EndFlush( void ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::EndFlush" );#endif return S_OK;}STDMETHODIMP CapturePin::NewSegment( REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::NewSegment" );#endif return S_OK;}/* IMemInputPin methods */STDMETHODIMP CapturePin::GetAllocator( IMemAllocator **ppAllocator ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::GetAllocator" );#endif return VFW_E_NO_ALLOCATOR;}STDMETHODIMP CapturePin::NotifyAllocator( IMemAllocator *pAllocator, BOOL bReadOnly ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::NotifyAllocator" );#endif return S_OK;}STDMETHODIMP CapturePin::GetAllocatorRequirements( ALLOCATOR_PROPERTIES *pProps ){#ifdef DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::GetAllocatorRequirements" );#endif return E_NOTIMPL;}STDMETHODIMP CapturePin::Receive( IMediaSample *pSample ){#if 0 //def DEBUG_DSHOW msg_Dbg( p_input, "CapturePin::Receive" );#endif pSample->AddRef(); mtime_t i_timestamp = mdate() * 10; VLCMediaSample vlc_sample = {pSample, i_timestamp}; access_sys_t *p_sys = p_input->p_access_data; vlc_mutex_lock( &p_sys->lock ); samples_queue.push_front( vlc_sample ); /* Make sure we don't cache too many samples */ if( samples_queue.size() > 10 ) { vlc_sample = samples_queue.back();
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?