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
86003338
Commit
86003338
authored
Feb 28, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Feb 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Add some tests for media types.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3215c7e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
129 additions
and
0 deletions
+129
-0
avisplit.c
dlls/quartz/tests/avisplit.c
+127
-0
wmcodecdsp.idl
include/wmcodecdsp.idl
+2
-0
No files found.
dlls/quartz/tests/avisplit.c
View file @
86003338
...
...
@@ -21,6 +21,8 @@
#define COBJMACROS
#include "dshow.h"
#include "initguid.h"
#include "wmcodecdsp.h"
#include "wine/test.h"
static
const
WCHAR
sink_name
[]
=
{
'i'
,
'n'
,
'p'
,
'u'
,
't'
,
' '
,
'p'
,
'i'
,
'n'
,
0
};
...
...
@@ -408,6 +410,130 @@ todo_wine
ok
(
ret
,
"Failed to delete file, error %u.
\n
"
,
GetLastError
());
}
static
void
test_media_types
(
void
)
{
static
const
VIDEOINFOHEADER
expect_vih
=
{
{
0
},
{
0
},
0
,
0
,
1000
*
10000
,
{
sizeof
(
BITMAPINFOHEADER
),
32
,
24
,
1
,
12
,
mmioFOURCC
(
'I'
,
'4'
,
'2'
,
'0'
),
32
*
24
*
12
/
8
}
};
const
WCHAR
*
filename
=
load_resource
(
avifile
);
IBaseFilter
*
filter
=
create_avi_splitter
();
AM_MEDIA_TYPE
mt
=
{
0
},
*
pmt
;
IEnumMediaTypes
*
enummt
;
IFilterGraph2
*
graph
;
HRESULT
hr
;
ULONG
ref
;
IPin
*
pin
;
BOOL
ret
;
IBaseFilter_FindPin
(
filter
,
sink_name
,
&
pin
);
hr
=
IPin_EnumMediaTypes
(
pin
,
&
enummt
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IEnumMediaTypes_Next
(
enummt
,
1
,
&
pmt
,
NULL
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
IEnumMediaTypes_Release
(
enummt
);
mt
.
majortype
=
MEDIATYPE_Stream
;
mt
.
subtype
=
MEDIASUBTYPE_Avi
;
hr
=
IPin_QueryAccept
(
pin
,
&
mt
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
mt
.
bFixedSizeSamples
=
TRUE
;
mt
.
bTemporalCompression
=
TRUE
;
mt
.
lSampleSize
=
123
;
mt
.
formattype
=
FORMAT_WaveFormatEx
;
hr
=
IPin_QueryAccept
(
pin
,
&
mt
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
mt
.
majortype
=
GUID_NULL
;
hr
=
IPin_QueryAccept
(
pin
,
&
mt
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
mt
.
majortype
=
MEDIATYPE_Stream
;
mt
.
subtype
=
GUID_NULL
;
hr
=
IPin_QueryAccept
(
pin
,
&
mt
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
mt
.
subtype
=
MEDIASUBTYPE_Avi
;
graph
=
connect_input
(
filter
,
filename
);
hr
=
IPin_EnumMediaTypes
(
pin
,
&
enummt
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IEnumMediaTypes_Next
(
enummt
,
1
,
&
pmt
,
NULL
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
IEnumMediaTypes_Release
(
enummt
);
IPin_Release
(
pin
);
IBaseFilter_FindPin
(
filter
,
source0_name
,
&
pin
);
hr
=
IPin_EnumMediaTypes
(
pin
,
&
enummt
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IEnumMediaTypes_Next
(
enummt
,
1
,
&
pmt
,
NULL
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
IsEqualGUID
(
&
pmt
->
majortype
,
&
MEDIATYPE_Video
),
"Got major type %s
\n
"
,
wine_dbgstr_guid
(
&
pmt
->
majortype
));
ok
(
IsEqualGUID
(
&
pmt
->
subtype
,
&
MEDIASUBTYPE_I420
),
"Got subtype %s
\n
"
,
wine_dbgstr_guid
(
&
pmt
->
subtype
));
ok
(
!
pmt
->
bFixedSizeSamples
,
"Got fixed size %d.
\n
"
,
pmt
->
bFixedSizeSamples
);
todo_wine
ok
(
!
pmt
->
bTemporalCompression
,
"Got temporal compression %d.
\n
"
,
pmt
->
bTemporalCompression
);
ok
(
pmt
->
lSampleSize
==
1
,
"Got sample size %u.
\n
"
,
pmt
->
lSampleSize
);
ok
(
IsEqualGUID
(
&
pmt
->
formattype
,
&
FORMAT_VideoInfo
),
"Got format type %s.
\n
"
,
wine_dbgstr_guid
(
&
pmt
->
formattype
));
ok
(
!
pmt
->
pUnk
,
"Got pUnk %p.
\n
"
,
pmt
->
pUnk
);
ok
(
pmt
->
cbFormat
==
sizeof
(
VIDEOINFOHEADER
),
"Got format size %u.
\n
"
,
pmt
->
cbFormat
);
ok
(
!
memcmp
(
pmt
->
pbFormat
,
&
expect_vih
,
sizeof
(
VIDEOINFOHEADER
)),
"Format blocks didn't match.
\n
"
);
hr
=
IPin_QueryAccept
(
pin
,
pmt
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
pmt
->
bFixedSizeSamples
=
TRUE
;
pmt
->
bTemporalCompression
=
TRUE
;
pmt
->
lSampleSize
=
123
;
hr
=
IPin_QueryAccept
(
pin
,
pmt
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
pmt
->
majortype
=
GUID_NULL
;
hr
=
IPin_QueryAccept
(
pin
,
pmt
);
todo_wine
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
pmt
->
majortype
=
MEDIATYPE_Video
;
pmt
->
subtype
=
GUID_NULL
;
hr
=
IPin_QueryAccept
(
pin
,
pmt
);
todo_wine
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
pmt
->
subtype
=
MEDIASUBTYPE_I420
;
pmt
->
formattype
=
GUID_NULL
;
hr
=
IPin_QueryAccept
(
pin
,
pmt
);
todo_wine
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
pmt
->
formattype
=
FORMAT_None
;
hr
=
IPin_QueryAccept
(
pin
,
pmt
);
todo_wine
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
pmt
->
formattype
=
FORMAT_VideoInfo
;
CoTaskMemFree
(
pmt
->
pbFormat
);
CoTaskMemFree
(
pmt
);
hr
=
IEnumMediaTypes_Next
(
enummt
,
1
,
&
pmt
,
NULL
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
IEnumMediaTypes_Release
(
enummt
);
IPin_Release
(
pin
);
IFilterGraph2_Release
(
graph
);
ref
=
IBaseFilter_Release
(
filter
);
ok
(
!
ref
,
"Got outstanding refcount %d.
\n
"
,
ref
);
ret
=
DeleteFileW
(
filename
);
ok
(
ret
,
"Failed to delete file, error %u.
\n
"
,
GetLastError
());
}
static
void
test_filter_graph
(
void
)
{
IFileSourceFilter
*
pfile
=
NULL
;
...
...
@@ -658,6 +784,7 @@ START_TEST(avisplit)
test_enum_pins
();
test_find_pin
();
test_pin_info
();
test_media_types
();
test_filter_graph
();
CoUninitialize
();
...
...
include/wmcodecdsp.idl
View file @
86003338
...
...
@@ -19,6 +19,8 @@
import
"mediaobj.idl"
;
import
"strmif.idl"
;
cpp_quote
(
"DEFINE_GUID(MEDIASUBTYPE_I420,0x30323449,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71);"
)
[
uuid
(
bbeea841
-
0
a63
-
4
f52
-
a7ab
-
a9b3a84ed38a
)
]
...
...
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