From f75ea5aca1000f24208a319e5a0bf38606f1307f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Thu, 5 Mar 2015 00:15:45 +0100 Subject: libva-intel-driver: Do not print warnings on stdout --- src/gen75_picture_process.c | 2 +- src/intel_driver.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gen75_picture_process.c b/src/gen75_picture_process.c index d64ef05..cf20ed9 100644 --- a/src/gen75_picture_process.c +++ b/src/gen75_picture_process.c @@ -221,7 +221,7 @@ gen75_proc_picture(VADriverContextP ctx, filter->type != VAProcFilterDeinterlacing && filter->type != VAProcFilterSkinToneEnhancement && filter->type != VAProcFilterColorBalance) { - printf("Do not support multiply filters outside vebox pipeline \n"); + fprintf(stderr, "Do not support multiply filters outside vebox pipeline \n"); assert(0); } } diff --git a/src/intel_driver.h b/src/intel_driver.h index 3715210..3c20ce4 100644 --- a/src/intel_driver.h +++ b/src/intel_driver.h @@ -119,7 +119,7 @@ extern uint32_t g_intel_debug_option_flags; static int g_once = 1; \ if (g_once) { \ g_once = 0; \ - printf("WARNING: " __VA_ARGS__); \ + fprintf(stderr, "WARNING: " __VA_ARGS__); \ } \ } while (0) -- 2.1.0