hardware/intel/libva
Révision | c038a26165d2bb36074d9595527ab50149754c56 (tree) |
---|---|
l'heure | 2013-06-19 15:47:01 |
Auteur | Austin Yuan <shengquan.yuan@inte...> |
Commiter | Xiang, Haihao |
vatrace: remove the delimiter of every elements dump
Signed-off-by: Austin Yuan <shengquan.yuan@intel.com>
(cherry picked from commit 132f22ae9b42b4657361c87b5c7d5b14a26a52a9)
@@ -2348,7 +2348,6 @@ void va_TraceRenderPicture( | ||
2348 | 2348 | case VAProfileMPEG2Simple: |
2349 | 2349 | case VAProfileMPEG2Main: |
2350 | 2350 | for (j=0; j<num_elements; j++) { |
2351 | - va_TraceMsg(idx, "\t---------------------------\n", j); | |
2352 | 2351 | va_TraceMsg(idx, "\telement[%d] = ", j); |
2353 | 2352 | va_TraceMPEG2Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j); |
2354 | 2353 | } |
@@ -2357,7 +2356,6 @@ void va_TraceRenderPicture( | ||
2357 | 2356 | case VAProfileMPEG4AdvancedSimple: |
2358 | 2357 | case VAProfileMPEG4Main: |
2359 | 2358 | for (j=0; j<num_elements; j++) { |
2360 | - va_TraceMsg(idx, "\t---------------------------\n", j); | |
2361 | 2359 | va_TraceMsg(idx, "\telement[%d] = ", j); |
2362 | 2360 | va_TraceMPEG4Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j); |
2363 | 2361 | } |
@@ -2367,7 +2365,6 @@ void va_TraceRenderPicture( | ||
2367 | 2365 | case VAProfileH264High: |
2368 | 2366 | case VAProfileH264ConstrainedBaseline: |
2369 | 2367 | for (j=0; j<num_elements; j++) { |
2370 | - va_TraceMsg(idx, "\t---------------------------\n", j); | |
2371 | 2368 | va_TraceMsg(idx, "\telement[%d] = ", j); |
2372 | 2369 | |
2373 | 2370 | va_TraceH264Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j); |
@@ -2377,7 +2374,6 @@ void va_TraceRenderPicture( | ||
2377 | 2374 | case VAProfileVC1Main: |
2378 | 2375 | case VAProfileVC1Advanced: |
2379 | 2376 | for (j=0; j<num_elements; j++) { |
2380 | - va_TraceMsg(idx, "\t---------------------------\n", j); | |
2381 | 2377 | va_TraceMsg(idx, "\telement[%d] = ", j); |
2382 | 2378 | |
2383 | 2379 | va_TraceVC1Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j); |
@@ -2385,7 +2381,6 @@ void va_TraceRenderPicture( | ||
2385 | 2381 | break; |
2386 | 2382 | case VAProfileH263Baseline: |
2387 | 2383 | for (j=0; j<num_elements; j++) { |
2388 | - va_TraceMsg(idx, "\t---------------------------\n", j); | |
2389 | 2384 | va_TraceMsg(idx, "\telement[%d] = ", j); |
2390 | 2385 | |
2391 | 2386 | va_TraceH263Buf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j); |
@@ -2393,7 +2388,6 @@ void va_TraceRenderPicture( | ||
2393 | 2388 | break; |
2394 | 2389 | case VAProfileJPEGBaseline: |
2395 | 2390 | for (j=0; j<num_elements; j++) { |
2396 | - va_TraceMsg(idx, "\t---------------------------\n", j); | |
2397 | 2391 | va_TraceMsg(idx, "\telement[%d] = ", j); |
2398 | 2392 | |
2399 | 2393 | va_TraceJPEGBuf(dpy, context, buffers[i], type, size, num_elements, pbuf + size*j); |