From 3b172723d6c7ce5edc8a1580f1bbb4babab5efb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 26 Dec 2012 12:38:32 +0100 Subject: [PATCH] mfc: Downgrade an error to debug output --- sys/mfc/mfc_decoder/mfc_decoder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mfc/mfc_decoder/mfc_decoder.c b/sys/mfc/mfc_decoder/mfc_decoder.c index 4ce6bee1dd..c835f0d362 100644 --- a/sys/mfc/mfc_decoder/mfc_decoder.c +++ b/sys/mfc/mfc_decoder/mfc_decoder.c @@ -185,7 +185,7 @@ static int request_input_buffers(struct mfc_dec_context *ctx, int num) return -1; } ctx->num_input_buffers = reqbuf.count; - GST_ERROR ("Requested %d input buffers, got %d", num, reqbuf.count); + GST_INFO ("Requested %d input buffers, got %d", num, reqbuf.count); for (i = 0; i < num; i++) { void *ptr; struct v4l2_plane planes[NUM_INPUT_PLANES] = {{.length = 0}};