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
4600383b
Commit
4600383b
authored
Jul 10, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jul 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: Switch to the quartz debug channel.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
82c3205c
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
10 deletions
+10
-10
dispatch.c
dlls/strmbase/dispatch.c
+1
-1
filter.c
dlls/strmbase/filter.c
+1
-1
mediatype.c
dlls/strmbase/mediatype.c
+2
-2
outputqueue.c
dlls/strmbase/outputqueue.c
+1
-1
pin.c
dlls/strmbase/pin.c
+2
-2
pospass.c
dlls/strmbase/pospass.c
+1
-1
renderer.c
dlls/strmbase/renderer.c
+1
-1
seeking.c
dlls/strmbase/seeking.c
+1
-1
No files found.
dlls/strmbase/dispatch.c
View file @
4600383b
...
...
@@ -20,7 +20,7 @@
#include "strmbase_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
strmbase
);
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
static
ITypeLib
*
control_typelib
;
static
ITypeInfo
*
control_typeinfo
[
last_tid
];
...
...
dlls/strmbase/filter.c
View file @
4600383b
...
...
@@ -20,7 +20,7 @@
#include "strmbase_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
strmbase
);
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
struct
enum_pins
{
...
...
dlls/strmbase/mediatype.c
View file @
4600383b
...
...
@@ -23,7 +23,7 @@
#include "dvdmedia.h"
#include "dxva.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
strmbase
);
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
static
const
struct
{
...
...
@@ -65,7 +65,7 @@ static const char *debugstr_fourcc(DWORD fourcc)
void
strmbase_dump_media_type
(
const
AM_MEDIA_TYPE
*
mt
)
{
if
(
!
TRACE_ON
(
strmbase
)
||
!
mt
)
return
;
if
(
!
TRACE_ON
(
quartz
)
||
!
mt
)
return
;
TRACE
(
"Dumping media type %p: major type %s, subtype %s"
,
mt
,
strmbase_debugstr_guid
(
&
mt
->
majortype
),
strmbase_debugstr_guid
(
&
mt
->
subtype
));
...
...
dlls/strmbase/outputqueue.c
View file @
4600383b
...
...
@@ -20,7 +20,7 @@
#include "strmbase_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
strmbase
);
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
enum
{
SAMPLE_PACKET
,
EOS_PACKET
};
...
...
dlls/strmbase/pin.c
View file @
4600383b
...
...
@@ -21,7 +21,7 @@
#include "strmbase_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
strmbase
);
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
static
const
IMemInputPinVtbl
MemInputPin_Vtbl
;
...
...
@@ -152,7 +152,7 @@ static HRESULT WINAPI enum_media_types_Next(IEnumMediaTypes *iface, ULONG count,
else
if
(
hr
!=
S_OK
)
break
;
if
(
TRACE_ON
(
strmbase
))
if
(
TRACE_ON
(
quartz
))
{
TRACE
(
"Returning media type %u:
\n
"
,
enummt
->
index
+
i
);
strmbase_dump_media_type
(
mts
[
i
]);
...
...
dlls/strmbase/pospass.c
View file @
4600383b
...
...
@@ -22,7 +22,7 @@
#include "strmbase_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
strmbase
);
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
static
struct
strmbase_passthrough
*
impl_from_ISeekingPassThru
(
ISeekingPassThru
*
iface
)
{
...
...
dlls/strmbase/renderer.c
View file @
4600383b
...
...
@@ -20,7 +20,7 @@
#include "strmbase_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
strmbase
);
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
/* The following quality-of-service code is based on GstBaseSink QoS code, which
* is covered by the following copyright information:
...
...
dlls/strmbase/seeking.c
View file @
4600383b
...
...
@@ -21,7 +21,7 @@
#include "strmbase_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
strmbase
);
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
static
inline
SourceSeeking
*
impl_from_IMediaSeeking
(
IMediaSeeking
*
iface
)
{
...
...
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