Remove some traces sent to application stdout.

* This may be fine in media server where it lands in logs, but certainly
not when the code is run in applications.
* Helps with all media-related webkit tests.
This commit is contained in:
Adrien Destugues 2014-04-23 15:10:50 +02:00
parent 804056af27
commit 179c6ec2fd
4 changed files with 1 additions and 12 deletions

View File

@ -26,8 +26,6 @@ CPUCapabilities::CPUCapabilities()
#if defined(__INTEL__) || defined(__x86_64__)
_SetIntelCapabilities();
#endif
PrintCapabilities();
}

View File

@ -12,7 +12,7 @@
// http://www.joemaller.com/fcp/fxscript_yuv_color.shtml
#if 1
#if DEBUG
#define TRACE(a...) printf(a)
#else
#define TRACE(a...)

View File

@ -429,8 +429,6 @@ BMediaEventLooper::Run()
// get latency information
fSchedulingLatency = estimate_max_scheduling_latency(fControlThread);
printf("BMediaEventLooper: SchedulingLatency is %" B_PRId64 "\n",
fSchedulingLatency);
}

View File

@ -1037,7 +1037,6 @@ BMediaRoster::Connect(const media_source& from, const media_destination& to,
strcpy(out_output->name, reply5.name);
// the connection is now made
printf("BMediaRoster::Connect connection established!\n");
PRINT_FORMAT(" format", *io_format);
PRINT_INPUT(" input", *out_input);
PRINT_OUTPUT(" output", *out_output);
@ -2266,12 +2265,6 @@ BMediaRoster::GetParameterWebFor(const media_node& node, BParameterWeb** _web)
if (web == NULL)
rv = B_NO_MEMORY;
else {
printf("BMediaRoster::GetParameterWebFor Unflattening %"
B_PRId32 " bytes, %#" B_PRIx32 ", %#" B_PRIx32 ", %#"
B_PRIx32 ", %#" B_PRIx32 "\n", reply.size,
((uint32*)data)[0], ((uint32*)data)[1], ((uint32*)data)[2],
((uint32*)data)[3]);
rv = web->Unflatten(reply.code, data, reply.size);
if (rv != B_OK) {
ERROR("BMediaRoster::GetParameterWebFor Unflatten failed, "