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:
parent
82c3205c26
commit
4600383b79
|
@ -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];
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include "strmbase_private.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(strmbase);
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(quartz);
|
||||
|
||||
struct enum_pins
|
||||
{
|
||||
|
|
|
@ -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));
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include "strmbase_private.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(strmbase);
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(quartz);
|
||||
|
||||
enum {SAMPLE_PACKET, EOS_PACKET};
|
||||
|
||||
|
|
|
@ -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]);
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue