• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/libva


Commit MetaInfo

Révisionc038a26165d2bb36074d9595527ab50149754c56 (tree)
l'heure2013-06-19 15:47:01
AuteurAustin Yuan <shengquan.yuan@inte...>
CommiterXiang, Haihao

Message de Log

vatrace: remove the delimiter of every elements dump

Signed-off-by: Austin Yuan <shengquan.yuan@intel.com>
(cherry picked from commit 132f22ae9b42b4657361c87b5c7d5b14a26a52a9)

Change Summary

Modification

--- a/va/va_trace.c
+++ b/va/va_trace.c
@@ -2348,7 +2348,6 @@ void va_TraceRenderPicture(
23482348 case VAProfileMPEG2Simple:
23492349 case VAProfileMPEG2Main:
23502350 for (j=0; j<num_elements; j++) {
2351- va_TraceMsg(idx, "\t---------------------------\n", j);
23522351 va_TraceMsg(idx, "\telement[%d] = ", j);
23532352 va_TraceMPEG2Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j);
23542353 }
@@ -2357,7 +2356,6 @@ void va_TraceRenderPicture(
23572356 case VAProfileMPEG4AdvancedSimple:
23582357 case VAProfileMPEG4Main:
23592358 for (j=0; j<num_elements; j++) {
2360- va_TraceMsg(idx, "\t---------------------------\n", j);
23612359 va_TraceMsg(idx, "\telement[%d] = ", j);
23622360 va_TraceMPEG4Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j);
23632361 }
@@ -2367,7 +2365,6 @@ void va_TraceRenderPicture(
23672365 case VAProfileH264High:
23682366 case VAProfileH264ConstrainedBaseline:
23692367 for (j=0; j<num_elements; j++) {
2370- va_TraceMsg(idx, "\t---------------------------\n", j);
23712368 va_TraceMsg(idx, "\telement[%d] = ", j);
23722369
23732370 va_TraceH264Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j);
@@ -2377,7 +2374,6 @@ void va_TraceRenderPicture(
23772374 case VAProfileVC1Main:
23782375 case VAProfileVC1Advanced:
23792376 for (j=0; j<num_elements; j++) {
2380- va_TraceMsg(idx, "\t---------------------------\n", j);
23812377 va_TraceMsg(idx, "\telement[%d] = ", j);
23822378
23832379 va_TraceVC1Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j);
@@ -2385,7 +2381,6 @@ void va_TraceRenderPicture(
23852381 break;
23862382 case VAProfileH263Baseline:
23872383 for (j=0; j<num_elements; j++) {
2388- va_TraceMsg(idx, "\t---------------------------\n", j);
23892384 va_TraceMsg(idx, "\telement[%d] = ", j);
23902385
23912386 va_TraceH263Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j);
@@ -2393,7 +2388,6 @@ void va_TraceRenderPicture(
23932388 break;
23942389 case VAProfileJPEGBaseline:
23952390 for (j=0; j<num_elements; j++) {
2396- va_TraceMsg(idx, "\t---------------------------\n", j);
23972391 va_TraceMsg(idx, "\telement[%d] = ", j);
23982392
23992393 va_TraceJPEGBuf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j);