X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Fstate_trackers%2Fvdpau%2Fmixer.c;h=85f4e1541ab4a92ffc1e6a5c845fb3c74c0dc21d;hb=08f3a7cf7e9133f50adf33f800aa3696c909347f;hp=0c0d200c6d45839f3ac8ff8dcb580891f7dd367c;hpb=7709e6ebc3d9f159063e40ca217d61f20ce507f0;p=mesa.git diff --git a/src/gallium/state_trackers/vdpau/mixer.c b/src/gallium/state_trackers/vdpau/mixer.c index 0c0d200c6d4..85f4e1541ab 100644 --- a/src/gallium/state_trackers/vdpau/mixer.c +++ b/src/gallium/state_trackers/vdpau/mixer.c @@ -48,7 +48,7 @@ vlVdpVideoMixerCreate(VdpDevice device, VdpStatus ret; float csc[16]; - debug_printf("[VDPAU] Creating VideoMixer\n"); + VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Creating VideoMixer\n"); vlVdpDevice *dev = vlGetDataHTAB(device); if (!dev) @@ -91,7 +91,7 @@ vlVdpVideoMixerDestroy(VdpVideoMixer mixer) { vlVdpVideoMixer *vmixer; - debug_printf("[VDPAU] Destroying VideoMixer\n"); + VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Destroying VideoMixer\n"); vmixer = vlGetDataHTAB(mixer); if (!vmixer) @@ -110,7 +110,7 @@ vlVdpVideoMixerSetFeatureEnables(VdpVideoMixer mixer, VdpVideoMixerFeature const *features, VdpBool const *feature_enables) { - debug_printf("[VDPAU] Setting VideoMixer features\n"); + VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Setting VideoMixer features\n"); if (!(features && feature_enables)) return VDP_STATUS_INVALID_POINTER; @@ -228,7 +228,7 @@ vlVdpGenerateCSCMatrix(VdpProcamp *procamp, VdpColorStandard standard, VdpCSCMatrix *csc_matrix) { - debug_printf("[VDPAU] Generating CSCMatrix\n"); + VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Generating CSCMatrix\n"); if (!(csc_matrix && procamp)) return VDP_STATUS_INVALID_POINTER;