diff options
author | Christian König <[email protected]> | 2011-05-04 19:58:33 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-05-04 19:58:33 +0200 |
commit | 08f3a7cf7e9133f50adf33f800aa3696c909347f (patch) | |
tree | 67d66095f7b1ceba324a12cc569ed2dbdbeef925 /src/gallium/state_trackers/vdpau/mixer.c | |
parent | 7709e6ebc3d9f159063e40ca217d61f20ce507f0 (diff) |
vdpau: make state tracker far less noisy
Diffstat (limited to 'src/gallium/state_trackers/vdpau/mixer.c')
-rw-r--r-- | src/gallium/state_trackers/vdpau/mixer.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; |