change message type from debug to error 89/27389/1
authorBoram Park <boram1288.park@samsung.com>
Fri, 12 Sep 2014 04:30:57 +0000 (13:30 +0900)
committerBoram Park <boram1288.park@samsung.com>
Fri, 12 Sep 2014 07:13:04 +0000 (16:13 +0900)
   these message should be printed as error.

Change-Id: I49f275f87e062300c4658de904772514a273dc86

src/xv/sec_video_tvout.c

index 4f59e46..e098199 100644 (file)
@@ -522,27 +522,27 @@ secVideoTvPutImage (SECVideoTv *tv, SECVideoBuf *vbuf, xRectangle *rect, int csc
 
         if (!secCvtEnsureSize (&src_prop, &dst_prop))
         {
-            XDBG_DEBUG(MTVO, "Can't ensure size\n");
+            XDBG_ERROR(MTVO, "Can't ensure size\n");
             return 0;
         }
 
         outbuf = _secVideoTvGetOutBuffer (tv, dst_prop.width, dst_prop.height, vbuf->secure);
         if (!outbuf)
         {
-            XDBG_DEBUG(MTVO, "Can't get outbuf\n");
+            XDBG_ERROR(MTVO, "Can't get outbuf\n");
             return 0;
         }
         outbuf->crop = dst_prop.crop;
 
         if (!secCvtSetProperpty (tv->cvt, &src_prop, &dst_prop))
         {
-            XDBG_DEBUG(MTVO, "Can't set cvt property\n");
+            XDBG_ERROR(MTVO, "Can't set cvt property\n");
             return 0;
         }
 
         if (!secCvtConvert (tv->cvt, vbuf, outbuf))
         {
-            XDBG_DEBUG(MTVO, "Can't start cvt\n");
+            XDBG_ERROR(MTVO, "Can't start cvt\n");
             return 0;
         }