Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
99c96b0f
Commit
99c96b0f
authored
Dec 19, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Added CLSID_AVICo stub implementation.
parent
af3a59cb
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
219 additions
and
1 deletion
+219
-1
Makefile.in
dlls/qcap/Makefile.in
+1
-0
avico.c
dlls/qcap/avico.c
+184
-0
qcap_main.c
dlls/qcap/qcap_main.c
+1
-1
qcap_main.h
dlls/qcap/qcap_main.h
+16
-0
qcap.c
dlls/qcap/tests/qcap.c
+17
-0
No files found.
dlls/qcap/Makefile.in
View file @
99c96b0f
...
@@ -2,6 +2,7 @@ MODULE = qcap.dll
...
@@ -2,6 +2,7 @@ MODULE = qcap.dll
IMPORTS
=
strmiids strmbase uuid ole32 gdi32 advapi32
IMPORTS
=
strmiids strmbase uuid ole32 gdi32 advapi32
C_SRCS
=
\
C_SRCS
=
\
avico.c
\
avimux.c
\
avimux.c
\
capturegraph.c
\
capturegraph.c
\
enummedia.c
\
enummedia.c
\
...
...
dlls/qcap/avico.c
0 → 100644
View file @
99c96b0f
/*
* Copyright 2013 Jacek Caban for CodeWeavers
*
* 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 <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "dshow.h"
#include "qcap_main.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
qcap
);
typedef
struct
{
BaseFilter
filter
;
}
AVICompressor
;
static
inline
AVICompressor
*
impl_from_BaseFilter
(
BaseFilter
*
filter
)
{
return
CONTAINING_RECORD
(
filter
,
AVICompressor
,
filter
);
}
static
inline
AVICompressor
*
impl_from_IBaseFilter
(
IBaseFilter
*
iface
)
{
BaseFilter
*
filter
=
CONTAINING_RECORD
(
iface
,
BaseFilter
,
IBaseFilter_iface
);
return
impl_from_BaseFilter
(
filter
);
}
static
HRESULT
WINAPI
AVICompressor_QueryInterface
(
IBaseFilter
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
AVICompressor
*
This
=
impl_from_IBaseFilter
(
iface
);
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
))
{
TRACE
(
"(%p)->(IID_IUnknown %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
filter
.
IBaseFilter_iface
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IPersist
))
{
TRACE
(
"(%p)->(IID_IPersist %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
filter
.
IBaseFilter_iface
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IMediaFilter
))
{
TRACE
(
"(%p)->(IID_IMediaFilter %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
filter
.
IBaseFilter_iface
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IBaseFilter
))
{
TRACE
(
"(%p)->(IID_IBaseFilter %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
filter
.
IBaseFilter_iface
;
}
else
{
FIXME
(
"no interface for %s
\n
"
,
debugstr_guid
(
riid
));
*
ppv
=
NULL
;
return
E_NOINTERFACE
;
}
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
}
static
ULONG
WINAPI
AVICompressor_Release
(
IBaseFilter
*
iface
)
{
AVICompressor
*
This
=
impl_from_IBaseFilter
(
iface
);
ULONG
ref
=
BaseFilterImpl_Release
(
&
This
->
filter
.
IBaseFilter_iface
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
if
(
!
ref
)
heap_free
(
This
);
return
ref
;
}
static
HRESULT
WINAPI
AVICompressor_Stop
(
IBaseFilter
*
iface
)
{
AVICompressor
*
This
=
impl_from_IBaseFilter
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
AVICompressor_Pause
(
IBaseFilter
*
iface
)
{
AVICompressor
*
This
=
impl_from_IBaseFilter
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
AVICompressor_Run
(
IBaseFilter
*
iface
,
REFERENCE_TIME
tStart
)
{
AVICompressor
*
This
=
impl_from_IBaseFilter
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
wine_dbgstr_longlong
(
tStart
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
AVICompressor_FindPin
(
IBaseFilter
*
iface
,
LPCWSTR
Id
,
IPin
**
ppPin
)
{
AVICompressor
*
This
=
impl_from_IBaseFilter
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_w
(
Id
),
ppPin
);
return
VFW_E_NOT_FOUND
;
}
static
HRESULT
WINAPI
AVICompressor_QueryFilterInfo
(
IBaseFilter
*
iface
,
FILTER_INFO
*
pInfo
)
{
AVICompressor
*
This
=
impl_from_IBaseFilter
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pInfo
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
AVICompressor_QueryVendorInfo
(
IBaseFilter
*
iface
,
LPWSTR
*
pVendorInfo
)
{
AVICompressor
*
This
=
impl_from_IBaseFilter
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pVendorInfo
);
return
E_NOTIMPL
;
}
static
const
IBaseFilterVtbl
AVICompressorVtbl
=
{
AVICompressor_QueryInterface
,
BaseFilterImpl_AddRef
,
AVICompressor_Release
,
BaseFilterImpl_GetClassID
,
AVICompressor_Stop
,
AVICompressor_Pause
,
AVICompressor_Run
,
BaseFilterImpl_GetState
,
BaseFilterImpl_SetSyncSource
,
BaseFilterImpl_GetSyncSource
,
BaseFilterImpl_EnumPins
,
AVICompressor_FindPin
,
AVICompressor_QueryFilterInfo
,
BaseFilterImpl_JoinFilterGraph
,
AVICompressor_QueryVendorInfo
};
static
IPin
*
WINAPI
AVICompressor_GetPin
(
BaseFilter
*
iface
,
int
pos
)
{
AVICompressor
*
This
=
impl_from_BaseFilter
(
iface
);
FIXME
(
"(%p)->(%d)
\n
"
,
This
,
pos
);
return
NULL
;
}
static
LONG
WINAPI
AVICompressor_GetPinCount
(
BaseFilter
*
iface
)
{
AVICompressor
*
This
=
impl_from_BaseFilter
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
0
;
}
static
const
BaseFilterFuncTable
filter_func_table
=
{
AVICompressor_GetPin
,
AVICompressor_GetPinCount
};
IUnknown
*
WINAPI
QCAP_createAVICompressor
(
IUnknown
*
outer
,
HRESULT
*
phr
)
{
AVICompressor
*
compressor
;
TRACE
(
"
\n
"
);
compressor
=
heap_alloc_zero
(
sizeof
(
*
compressor
));
if
(
!
compressor
)
{
*
phr
=
E_NOINTERFACE
;
return
NULL
;
}
BaseFilter_Init
(
&
compressor
->
filter
,
&
AVICompressorVtbl
,
&
CLSID_AVICo
,
(
DWORD_PTR
)(
__FILE__
": AVICompressor.csFilter"
),
&
filter_func_table
);
*
phr
=
S_OK
;
return
(
IUnknown
*
)
&
compressor
->
filter
.
IBaseFilter_iface
;
}
dlls/qcap/qcap_main.c
View file @
99c96b0f
...
@@ -84,7 +84,7 @@ FactoryTemplate const g_Templates[] = {
...
@@ -84,7 +84,7 @@ FactoryTemplate const g_Templates[] = {
},{
},{
wAVICompressor
,
wAVICompressor
,
&
CLSID_AVICo
,
&
CLSID_AVICo
,
NULL
,
/* FIXME: Implement QCAP_createAVICompressor */
QCAP_createAVICompressor
,
NULL
NULL
},{
},{
wVFWCaptFilter
,
wVFWCaptFilter
,
...
...
dlls/qcap/qcap_main.h
View file @
99c96b0f
...
@@ -28,6 +28,7 @@ extern IUnknown * WINAPI QCAP_createAudioCaptureFilter(IUnknown *pUnkOuter, HRES
...
@@ -28,6 +28,7 @@ extern IUnknown * WINAPI QCAP_createAudioCaptureFilter(IUnknown *pUnkOuter, HRES
extern
IUnknown
*
WINAPI
QCAP_createAVICompressor
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVICompressor
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createVFWCaptureFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createVFWCaptureFilter
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createVFWCaptureFilterPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createVFWCaptureFilterPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVICompressor
(
IUnknown
*
,
HRESULT
*
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVIMux
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVIMux
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVIMuxPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVIMuxPropertyPage
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVIMuxPropertyPage1
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
extern
IUnknown
*
WINAPI
QCAP_createAVIMuxPropertyPage1
(
IUnknown
*
pUnkOuter
,
HRESULT
*
phr
)
DECLSPEC_HIDDEN
;
...
@@ -58,4 +59,19 @@ enum YUV_Format {
...
@@ -58,4 +59,19 @@ enum YUV_Format {
void
YUV_Init
(
void
)
DECLSPEC_HIDDEN
;
void
YUV_Init
(
void
)
DECLSPEC_HIDDEN
;
void
YUV_To_RGB24
(
enum
YUV_Format
format
,
unsigned
char
*
target
,
const
unsigned
char
*
source
,
int
width
,
int
height
)
DECLSPEC_HIDDEN
;
void
YUV_To_RGB24
(
enum
YUV_Format
format
,
unsigned
char
*
target
,
const
unsigned
char
*
source
,
int
width
,
int
height
)
DECLSPEC_HIDDEN
;
static
inline
void
*
__WINE_ALLOC_SIZE
(
1
)
heap_alloc
(
size_t
len
)
{
return
HeapAlloc
(
GetProcessHeap
(),
0
,
len
);
}
static
inline
void
*
__WINE_ALLOC_SIZE
(
1
)
heap_alloc_zero
(
size_t
len
)
{
return
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
len
);
}
static
inline
BOOL
heap_free
(
void
*
mem
)
{
return
HeapFree
(
GetProcessHeap
(),
0
,
mem
);
}
#endif
/* _QCAP_MAIN_H_DEFINED */
#endif
/* _QCAP_MAIN_H_DEFINED */
dlls/qcap/tests/qcap.c
View file @
99c96b0f
...
@@ -1333,6 +1333,21 @@ static void test_AviMux(void)
...
@@ -1333,6 +1333,21 @@ static void test_AviMux(void)
IBaseFilter_Release
(
avimux
);
IBaseFilter_Release
(
avimux
);
}
}
static
void
test_AviCo
(
void
)
{
IBaseFilter
*
avico
;
HRESULT
hres
;
hres
=
CoCreateInstance
(
&
CLSID_AVICo
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IBaseFilter
,
(
void
**
)
&
avico
);
if
(
hres
==
REGDB_E_CLASSNOTREG
)
{
win_skip
(
"CLSID_AVICo not restered
\n
"
);
return
;
}
ok
(
hres
==
S_OK
,
"Could not create CLSID_AVICo class: %08x
\n
"
,
hres
);
IBaseFilter_Release
(
avico
);
}
START_TEST
(
qcap
)
START_TEST
(
qcap
)
{
{
if
(
SUCCEEDED
(
CoInitialize
(
NULL
)))
if
(
SUCCEEDED
(
CoInitialize
(
NULL
)))
...
@@ -1341,6 +1356,8 @@ START_TEST(qcap)
...
@@ -1341,6 +1356,8 @@ START_TEST(qcap)
test_CaptureGraphBuilder_RenderStream
();
test_CaptureGraphBuilder_RenderStream
();
test_AviMux_QueryInterface
();
test_AviMux_QueryInterface
();
test_AviMux
();
test_AviMux
();
test_AviCo
();
CoUninitialize
();
CoUninitialize
();
}
}
else
else
...
...
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