Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e8705402
Commit
e8705402
authored
Jun 10, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Jun 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Add the ability to force a pin to use a certain renderer.
parent
6546cd5d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
12 deletions
+18
-12
dsoundrender.c
dlls/quartz/dsoundrender.c
+1
-1
nullrenderer.c
dlls/quartz/nullrenderer.c
+1
-1
pin.c
dlls/quartz/pin.c
+12
-7
pin.h
dlls/quartz/pin.h
+2
-1
transform.c
dlls/quartz/transform.c
+1
-1
videorenderer.c
dlls/quartz/videorenderer.c
+1
-1
No files found.
dlls/quartz/dsoundrender.c
View file @
e8705402
...
...
@@ -344,7 +344,7 @@ HRESULT DSoundRender_create(IUnknown * pUnkOuter, LPVOID * ppv)
piInput
.
dir
=
PINDIR_INPUT
;
piInput
.
pFilter
=
(
IBaseFilter
*
)
pDSoundRender
;
lstrcpynW
(
piInput
.
achName
,
wcsInputPinName
,
sizeof
(
piInput
.
achName
)
/
sizeof
(
piInput
.
achName
[
0
]));
hr
=
InputPin_Construct
(
&
DSoundRender_InputPin_Vtbl
,
&
piInput
,
DSoundRender_Sample
,
pDSoundRender
,
DSoundRender_QueryAccept
,
NULL
,
&
pDSoundRender
->
csFilter
,
(
IPin
**
)
&
pDSoundRender
->
pInputPin
);
hr
=
InputPin_Construct
(
&
DSoundRender_InputPin_Vtbl
,
&
piInput
,
DSoundRender_Sample
,
pDSoundRender
,
DSoundRender_QueryAccept
,
NULL
,
&
pDSoundRender
->
csFilter
,
NULL
,
(
IPin
**
)
&
pDSoundRender
->
pInputPin
);
if
(
SUCCEEDED
(
hr
))
{
...
...
dlls/quartz/nullrenderer.c
View file @
e8705402
...
...
@@ -198,7 +198,7 @@ HRESULT NullRenderer_create(IUnknown * pUnkOuter, LPVOID * ppv)
piInput
.
pFilter
=
(
IBaseFilter
*
)
pNullRenderer
;
lstrcpynW
(
piInput
.
achName
,
wcsInputPinName
,
sizeof
(
piInput
.
achName
)
/
sizeof
(
piInput
.
achName
[
0
]));
hr
=
InputPin_Construct
(
&
NullRenderer_InputPin_Vtbl
,
&
piInput
,
NullRenderer_Sample
,
(
LPVOID
)
pNullRenderer
,
NullRenderer_QueryAccept
,
NULL
,
&
pNullRenderer
->
csFilter
,
(
IPin
**
)
&
pNullRenderer
->
pInputPin
);
hr
=
InputPin_Construct
(
&
NullRenderer_InputPin_Vtbl
,
&
piInput
,
NullRenderer_Sample
,
(
LPVOID
)
pNullRenderer
,
NullRenderer_QueryAccept
,
NULL
,
&
pNullRenderer
->
csFilter
,
NULL
,
(
IPin
**
)
&
pNullRenderer
->
pInputPin
);
if
(
SUCCEEDED
(
hr
))
{
...
...
dlls/quartz/pin.c
View file @
e8705402
...
...
@@ -236,7 +236,7 @@ static HRESULT OutputPin_ConnectSpecific(IPin * iface, IPin * pReceivePin, const
}
static
HRESULT
InputPin_Init
(
const
IPinVtbl
*
InputPin_Vtbl
,
const
PIN_INFO
*
pPinInfo
,
SAMPLEPROC_PUSH
pSampleProc
,
LPVOID
pUserData
,
QUERYACCEPTPROC
pQueryAccept
,
CLEANUPPROC
pCleanUp
,
LPCRITICAL_SECTION
pCritSec
,
InputPin
*
pPinImpl
)
QUERYACCEPTPROC
pQueryAccept
,
CLEANUPPROC
pCleanUp
,
LPCRITICAL_SECTION
pCritSec
,
I
MemAllocator
*
allocator
,
I
nputPin
*
pPinImpl
)
{
TRACE
(
"
\n
"
);
...
...
@@ -252,7 +252,9 @@ static HRESULT InputPin_Init(const IPinVtbl *InputPin_Vtbl, const PIN_INFO * pPi
/* Input pin attributes */
pPinImpl
->
fnSampleProc
=
pSampleProc
;
pPinImpl
->
fnCleanProc
=
pCleanUp
;
pPinImpl
->
pAllocator
=
NULL
;
pPinImpl
->
pAllocator
=
pPinImpl
->
preferred_allocator
=
allocator
;
if
(
pPinImpl
->
preferred_allocator
)
IMemAllocator_AddRef
(
pPinImpl
->
preferred_allocator
);
pPinImpl
->
tStart
=
0
;
pPinImpl
->
tStop
=
0
;
pPinImpl
->
dRate
=
1
.
0
;
...
...
@@ -299,7 +301,7 @@ static HRESULT OutputPin_Init(const IPinVtbl *OutputPin_Vtbl, const PIN_INFO * p
return
S_OK
;
}
HRESULT
InputPin_Construct
(
const
IPinVtbl
*
InputPin_Vtbl
,
const
PIN_INFO
*
pPinInfo
,
SAMPLEPROC_PUSH
pSampleProc
,
LPVOID
pUserData
,
QUERYACCEPTPROC
pQueryAccept
,
CLEANUPPROC
pCleanUp
,
LPCRITICAL_SECTION
pCritSec
,
IPin
**
ppPin
)
HRESULT
InputPin_Construct
(
const
IPinVtbl
*
InputPin_Vtbl
,
const
PIN_INFO
*
pPinInfo
,
SAMPLEPROC_PUSH
pSampleProc
,
LPVOID
pUserData
,
QUERYACCEPTPROC
pQueryAccept
,
CLEANUPPROC
pCleanUp
,
LPCRITICAL_SECTION
pCritSec
,
I
MemAllocator
*
allocator
,
I
Pin
**
ppPin
)
{
InputPin
*
pPinImpl
;
...
...
@@ -316,7 +318,7 @@ HRESULT InputPin_Construct(const IPinVtbl *InputPin_Vtbl, const PIN_INFO * pPinI
if
(
!
pPinImpl
)
return
E_OUTOFMEMORY
;
if
(
SUCCEEDED
(
InputPin_Init
(
InputPin_Vtbl
,
pPinInfo
,
pSampleProc
,
pUserData
,
pQueryAccept
,
pCleanUp
,
pCritSec
,
pPinImpl
)))
if
(
SUCCEEDED
(
InputPin_Init
(
InputPin_Vtbl
,
pPinInfo
,
pSampleProc
,
pUserData
,
pQueryAccept
,
pCleanUp
,
pCritSec
,
allocator
,
pPinImpl
)))
{
*
ppPin
=
(
IPin
*
)
pPinImpl
;
return
S_OK
;
...
...
@@ -552,6 +554,8 @@ ULONG WINAPI InputPin_Release(IPin * iface)
FreeMediaType
(
&
This
->
pin
.
mtCurrent
);
if
(
This
->
pAllocator
)
IMemAllocator_Release
(
This
->
pAllocator
);
This
->
pAllocator
=
NULL
;
This
->
pin
.
lpVtbl
=
NULL
;
CoTaskMemFree
(
This
);
return
0
;
}
...
...
@@ -766,6 +770,9 @@ HRESULT WINAPI MemInputPin_NotifyAllocator(IMemInputPin * iface, IMemAllocator *
return
E_POINTER
;
}
if
(
This
->
preferred_allocator
&&
pAllocator
!=
This
->
preferred_allocator
)
return
E_FAIL
;
if
(
This
->
pAllocator
)
IMemAllocator_Release
(
This
->
pAllocator
);
This
->
pAllocator
=
pAllocator
;
...
...
@@ -824,9 +831,7 @@ HRESULT WINAPI MemInputPin_ReceiveCanBlock(IMemInputPin * iface)
{
InputPin
*
This
=
impl_from_IMemInputPin
(
iface
);
FIXME
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
/* FIXME: we should check whether any output pins will block */
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
return
S_OK
;
}
...
...
dlls/quartz/pin.h
View file @
e8705402
...
...
@@ -93,6 +93,7 @@ typedef struct InputPin
REFERENCE_TIME
tStop
;
double
dRate
;
BOOL
flushing
,
end_of_stream
;
IMemAllocator
*
preferred_allocator
;
}
InputPin
;
typedef
struct
OutputPin
...
...
@@ -142,7 +143,7 @@ typedef struct PullPin
#define Req_Pause 3
/*** Constructors ***/
HRESULT
InputPin_Construct
(
const
IPinVtbl
*
InputPin_Vtbl
,
const
PIN_INFO
*
pPinInfo
,
SAMPLEPROC_PUSH
pSampleProc
,
LPVOID
pUserData
,
QUERYACCEPTPROC
pQueryAccept
,
CLEANUPPROC
pCleanUp
,
LPCRITICAL_SECTION
pCritSec
,
IPin
**
ppPin
);
HRESULT
InputPin_Construct
(
const
IPinVtbl
*
InputPin_Vtbl
,
const
PIN_INFO
*
pPinInfo
,
SAMPLEPROC_PUSH
pSampleProc
,
LPVOID
pUserData
,
QUERYACCEPTPROC
pQueryAccept
,
CLEANUPPROC
pCleanUp
,
LPCRITICAL_SECTION
pCritSec
,
I
MemAllocator
*
,
I
Pin
**
ppPin
);
HRESULT
OutputPin_Construct
(
const
IPinVtbl
*
OutputPin_Vtbl
,
long
outputpin_size
,
const
PIN_INFO
*
pPinInfo
,
ALLOCATOR_PROPERTIES
*
props
,
LPVOID
pUserData
,
QUERYACCEPTPROC
pQueryAccept
,
LPCRITICAL_SECTION
pCritSec
,
IPin
**
ppPin
);
HRESULT
PullPin_Construct
(
const
IPinVtbl
*
PullPin_Vtbl
,
const
PIN_INFO
*
pPinInfo
,
SAMPLEPROC_PULL
pSampleProc
,
LPVOID
pUserData
,
QUERYACCEPTPROC
pQueryAccept
,
CLEANUPPROC
pCleanUp
,
STOPPROCESSPROC
,
REQUESTPROC
pCustomRequest
,
LPCRITICAL_SECTION
pCritSec
,
IPin
**
ppPin
);
...
...
dlls/quartz/transform.c
View file @
e8705402
...
...
@@ -187,7 +187,7 @@ HRESULT TransformFilter_Create(TransformFilterImpl* pTransformFilter, const CLSI
piOutput
.
pFilter
=
(
IBaseFilter
*
)
pTransformFilter
;
lstrcpynW
(
piOutput
.
achName
,
wcsOutputPinName
,
sizeof
(
piOutput
.
achName
)
/
sizeof
(
piOutput
.
achName
[
0
]));
hr
=
InputPin_Construct
(
&
TransformFilter_InputPin_Vtbl
,
&
piInput
,
TransformFilter_Sample
,
pTransformFilter
,
TransformFilter_Input_QueryAccept
,
NULL
,
&
pTransformFilter
->
csFilter
,
&
pTransformFilter
->
ppPins
[
0
]);
hr
=
InputPin_Construct
(
&
TransformFilter_InputPin_Vtbl
,
&
piInput
,
TransformFilter_Sample
,
pTransformFilter
,
TransformFilter_Input_QueryAccept
,
NULL
,
&
pTransformFilter
->
csFilter
,
NULL
,
&
pTransformFilter
->
ppPins
[
0
]);
if
(
SUCCEEDED
(
hr
))
{
...
...
dlls/quartz/videorenderer.c
View file @
e8705402
...
...
@@ -521,7 +521,7 @@ HRESULT VideoRenderer_create(IUnknown * pUnkOuter, LPVOID * ppv)
piInput
.
pFilter
=
(
IBaseFilter
*
)
pVideoRenderer
;
lstrcpynW
(
piInput
.
achName
,
wcsInputPinName
,
sizeof
(
piInput
.
achName
)
/
sizeof
(
piInput
.
achName
[
0
]));
hr
=
InputPin_Construct
(
&
VideoRenderer_InputPin_Vtbl
,
&
piInput
,
VideoRenderer_Sample
,
(
LPVOID
)
pVideoRenderer
,
VideoRenderer_QueryAccept
,
NULL
,
&
pVideoRenderer
->
csFilter
,
(
IPin
**
)
&
pVideoRenderer
->
pInputPin
);
hr
=
InputPin_Construct
(
&
VideoRenderer_InputPin_Vtbl
,
&
piInput
,
VideoRenderer_Sample
,
(
LPVOID
)
pVideoRenderer
,
VideoRenderer_QueryAccept
,
NULL
,
&
pVideoRenderer
->
csFilter
,
NULL
,
(
IPin
**
)
&
pVideoRenderer
->
pInputPin
);
if
(
SUCCEEDED
(
hr
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment