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:
@@ -26,8 +26,6 @@ CPUCapabilities::CPUCapabilities()
|
|||||||
#if defined(__INTEL__) || defined(__x86_64__)
|
#if defined(__INTEL__) || defined(__x86_64__)
|
||||||
_SetIntelCapabilities();
|
_SetIntelCapabilities();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
PrintCapabilities();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
// http://www.joemaller.com/fcp/fxscript_yuv_color.shtml
|
// http://www.joemaller.com/fcp/fxscript_yuv_color.shtml
|
||||||
|
|
||||||
|
|
||||||
#if 1
|
#if DEBUG
|
||||||
#define TRACE(a...) printf(a)
|
#define TRACE(a...) printf(a)
|
||||||
#else
|
#else
|
||||||
#define TRACE(a...)
|
#define TRACE(a...)
|
||||||
|
|||||||
@@ -429,8 +429,6 @@ BMediaEventLooper::Run()
|
|||||||
|
|
||||||
// get latency information
|
// get latency information
|
||||||
fSchedulingLatency = estimate_max_scheduling_latency(fControlThread);
|
fSchedulingLatency = estimate_max_scheduling_latency(fControlThread);
|
||||||
printf("BMediaEventLooper: SchedulingLatency is %" B_PRId64 "\n",
|
|
||||||
fSchedulingLatency);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1037,7 +1037,6 @@ BMediaRoster::Connect(const media_source& from, const media_destination& to,
|
|||||||
strcpy(out_output->name, reply5.name);
|
strcpy(out_output->name, reply5.name);
|
||||||
|
|
||||||
// the connection is now made
|
// the connection is now made
|
||||||
printf("BMediaRoster::Connect connection established!\n");
|
|
||||||
PRINT_FORMAT(" format", *io_format);
|
PRINT_FORMAT(" format", *io_format);
|
||||||
PRINT_INPUT(" input", *out_input);
|
PRINT_INPUT(" input", *out_input);
|
||||||
PRINT_OUTPUT(" output", *out_output);
|
PRINT_OUTPUT(" output", *out_output);
|
||||||
@@ -2266,12 +2265,6 @@ BMediaRoster::GetParameterWebFor(const media_node& node, BParameterWeb** _web)
|
|||||||
if (web == NULL)
|
if (web == NULL)
|
||||||
rv = B_NO_MEMORY;
|
rv = B_NO_MEMORY;
|
||||||
else {
|
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);
|
rv = web->Unflatten(reply.code, data, reply.size);
|
||||||
if (rv != B_OK) {
|
if (rv != B_OK) {
|
||||||
ERROR("BMediaRoster::GetParameterWebFor Unflatten failed, "
|
ERROR("BMediaRoster::GetParameterWebFor Unflatten failed, "
|
||||||
|
|||||||
Reference in New Issue
Block a user