diff options
author | Austin Yuan <shengquan.yuan@gmail.com> | 2010-11-15 22:30:58 -0800 |
---|---|---|
committer | Austin Yuan <shengquan.yuan@gmail.com> | 2010-11-15 22:30:58 -0800 |
commit | b281a6fa9dbbbaeb2bf2d4f0b924170008a07fdb (patch) | |
tree | f9969615fb0fc654085095b24750c25fee83a6f1 | |
parent | 6f9205c51564ea429aa088767b2b711bba819b7a (diff) |
fix some typo for VA trace20101117_5.3.0.0031
Signed-off-by: Austin Yuan <shengquan.yuan@gmail.com>
-rw-r--r-- | va/va_trace.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/va/va_trace.c b/va/va_trace.c index f3414c3..707923b 100644 --- a/va/va_trace.c +++ b/va/va_trace.c @@ -830,7 +830,7 @@ static void va_TraceVAPictureParameterBufferH264( p->ReferenceFrames[i].picture_id, p->ReferenceFrames[i].frame_idx); } else - va_TraceMsg(idx, "\t\t%inv-%inv-%inv-%inv\n"); + va_TraceMsg(idx, "\t\tinv-inv-inv-inv\n"); } va_TraceMsg(idx, "\n"); @@ -1581,7 +1581,7 @@ void va_TraceRenderPicture( case VAProfileH264Main: case VAProfileH264High: for (j=0; j<num_elements; j++) { - va_TraceMsg(idx, "\t------------------", j); + va_TraceMsg(idx, "\t---------------------------\n", j); va_TraceMsg(idx, "\telement[%d] = ", j); va_TraceH264Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j); @@ -1591,7 +1591,7 @@ void va_TraceRenderPicture( case VAProfileVC1Main: case VAProfileVC1Advanced: for (j=0; j<num_elements; j++) { - va_TraceMsg(idx, "\t------------------", j); + va_TraceMsg(idx, "\t---------------------------\n", j); va_TraceMsg(idx, "\telement[%d] = ", j); va_TraceVC1Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j); @@ -1599,7 +1599,7 @@ void va_TraceRenderPicture( break; case VAProfileH263Baseline: for (j=0; j<num_elements; j++) { - va_TraceMsg(idx, "\t------------------", j); + va_TraceMsg(idx, "\t---------------------------\n", j); va_TraceMsg(idx, "\telement[%d] = ", j); va_TraceMPEG4Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j); |