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
50c20cf8
Commit
50c20cf8
authored
May 12, 2022
by
Anton Baskanov
Committed by
Alexandre Julliard
May 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Use correct media types in MPEG audio decoder tests.
Signed-off-by:
Anton Baskanov
<
baskanov@gmail.com
>
parent
30313d23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mpegaudio.c
dlls/quartz/tests/mpegaudio.c
+4
-4
No files found.
dlls/quartz/tests/mpegaudio.c
View file @
50c20cf8
...
...
@@ -120,9 +120,9 @@ static const MPEGLAYER3WAVEFORMAT mp3_format1 =
static
const
AM_MEDIA_TYPE
mp3_mt1
=
{
/* MEDIATYPE_Audio, MEDIASUBTYPE_MP
EG1AudioPayload
, FORMAT_WaveFormatEx */
/* MEDIATYPE_Audio, MEDIASUBTYPE_MP
3
, FORMAT_WaveFormatEx */
.
majortype
=
{
0x73647561
,
0x0000
,
0x0010
,
{
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
}},
.
subtype
=
{
0x0000005
0
,
0x0000
,
0x0010
,
{
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
}},
.
subtype
=
{
0x0000005
5
,
0x0000
,
0x0010
,
{
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
}},
.
bFixedSizeSamples
=
TRUE
,
.
lSampleSize
=
1
,
.
formattype
=
{
0x05589f81
,
0xc356
,
0x11ce
,
{
0xbf
,
0x01
,
0x00
,
0xaa
,
0x00
,
0x55
,
0x59
,
0x5a
}},
...
...
@@ -741,12 +741,12 @@ static void test_media_types(void)
mt
=
mp2_mt
;
mt
.
subtype
=
MEDIASUBTYPE_MPEG1Packet
;
hr
=
IPin_QueryAccept
(
pin
,
&
m
p2_m
t
);
hr
=
IPin_QueryAccept
(
pin
,
&
mt
);
ok
(
hr
==
S_OK
,
"Got hr %#lx.
\n
"
,
hr
);
mt
=
mp2_mt
;
mt
.
subtype
=
MEDIASUBTYPE_MPEG1Payload
;
hr
=
IPin_QueryAccept
(
pin
,
&
m
p2_m
t
);
hr
=
IPin_QueryAccept
(
pin
,
&
mt
);
ok
(
hr
==
S_OK
,
"Got hr %#lx.
\n
"
,
hr
);
mt
=
mp2_mt
;
...
...
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