strmbase: Switch to the quartz debug channel.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2021-07-10 19:22:22 -05:00 committed by Alexandre Julliard
parent 82c3205c26
commit 4600383b79
8 changed files with 10 additions and 10 deletions

View File

@ -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];

View File

@ -20,7 +20,7 @@
#include "strmbase_private.h"
WINE_DEFAULT_DEBUG_CHANNEL(strmbase);
WINE_DEFAULT_DEBUG_CHANNEL(quartz);
struct enum_pins
{

View File

@ -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));

View File

@ -20,7 +20,7 @@
#include "strmbase_private.h"
WINE_DEFAULT_DEBUG_CHANNEL(strmbase);
WINE_DEFAULT_DEBUG_CHANNEL(quartz);
enum {SAMPLE_PACKET, EOS_PACKET};

View File

@ -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]);

View File

@ -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)
{

View File

@ -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:

View File

@ -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)
{