[Libva] [PATCH] va_trace.c: fix a wrong conditional check

Yuan, Shengquan shengquan.yuan at gmail.com
Tue Aug 7 20:54:31 PDT 2012


>From b8c15ab17e80e6613d4849aca39ec13d981f1868 Mon Sep 17 00:00:00 2001
From: Austin Yuan <shengquan.yuan at intel.com>
Date: Thu, 2 Aug 2012 18:24:20 +0800
Subject: [PATCH 2/4] va_trace.c: fix a wrong conditional check

Should check trace_fp_codedbuf instead of trace_fp_log because
we write to trace_fp_codedbuf

Signed-off-by: Austin Yuan <shengquan.yuan at intel.com>
---
 va/va_trace.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/va/va_trace.c b/va/va_trace.c
index a88f4a8..e6fd2b2 100644
--- a/va/va_trace.c
+++ b/va/va_trace.c
@@ -309,7 +309,7 @@ void va_TraceCodedBuf(VADisplay dpy)
         unsigned int i;

         va_TraceMsg(idx, "\tsize = %d\n", buf_list->size);
-        if (trace_context[idx].trace_fp_log)
+        if (trace_context[idx].trace_fp_codedbuf)
             fwrite(buf_list->buf, buf_list->size, 1,
trace_context[idx].trace_fp_codedbuf);

         for (i=0; i<buf_list->size; i++)
-- 
1.7.9.5



-- 
Thanks
-Austin


More information about the Libva mailing list