summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmeric Grange <emeric.grange@gmail.com>2011-10-30 21:04:49 +0100
committerEmeric Grange <emeric.grange@gmail.com>2012-06-24 16:57:31 +0200
commit11a3dbeaa0d228e543bfc81488ae8acb9955b703 (patch)
treee530df00dc7cb852ec3a7a812cc9f4ac4191830c
parentc233687f435e5615c7ed67244b7c88eeeb4fa344 (diff)
g3dvl: Remove useless printf
Signed-off-by: Emeric Grange <emeric.grange@gmail.com>
-rw-r--r--src/gallium/auxiliary/vl/vp8/decoder/onyxd_if.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/vl/vp8/decoder/onyxd_if.c b/src/gallium/auxiliary/vl/vp8/decoder/onyxd_if.c
index a615e6e443..cf4c471863 100644
--- a/src/gallium/auxiliary/vl/vp8/decoder/onyxd_if.c
+++ b/src/gallium/auxiliary/vl/vp8/decoder/onyxd_if.c
@@ -30,8 +30,6 @@ VP8D_PTR vp8dx_create_decompressor(int input_partition)
{
VP8D_COMP *pbi = vpx_memalign(32, sizeof(VP8D_COMP));
- printf("[VP8] vp8dx_create_decompressor()\n");
-
if (!pbi)
return NULL;
@@ -69,8 +67,6 @@ void vp8dx_remove_decompressor(VP8D_PTR ptr)
{
VP8D_COMP *pbi = (VP8D_COMP *)ptr;
- printf("[VP8] vp8dx_remove_decompressor()\n");
-
if (!pbi)
return;