summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams
diff options
context:
space:
mode:
authorsumedh <sumedh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-22 22:17:17 +0000
committersumedh <sumedh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-22 22:17:17 +0000
commit96fc92c88234c8a697219e4fee5670d23cc2cd69 (patch)
tree0f51045e5fd6602e605861df7af0213e799052fa /TAO/orbsvcs/tests/AVStreams
parent69f3b973893c1902644c0921332f7578d9b2f5b3 (diff)
downloadATCD-96fc92c88234c8a697219e4fee5670d23cc2cd69.tar.gz
CVS:
CVS:
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/Command_Handler.cpp4
-rw-r--r--TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/parseblock.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/Command_Handler.cpp b/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/Command_Handler.cpp
index c8a08abfada..75deaf1bd55 100644
--- a/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/Command_Handler.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/Command_Handler.cpp
@@ -288,7 +288,7 @@ Command_Handler::init_av (void)
/* try to stop and close previous playing */
if (audioSocket >= 0 || videoSocket >= 0)
{
- ACE_DEBUG ((LM_DEBUG, "(%P|%t) Reached line %d in %s\n", __LINE__, __FILE__));
+ // ACE_DEBUG ((LM_DEBUG, "(%P|%t) Reached line %d in %s\n", __LINE__, __FILE__));
// this may have to be taken care of afterwards.
unsigned char tmp = CmdCLOSE;
int result =
@@ -773,7 +773,7 @@ Command_Handler::init_video_channel (char *phostname, char *videofile)
exit(1);
}
while (msgo + msgs < pkts) {
- ACE_DEBUG ((LM_DEBUG, "(%P|%t) Reached line %d in %s\n", __LINE__, __FILE__));
+ // ACE_DEBUG ((LM_DEBUG, "(%P|%t) Reached line %d in %s\n", __LINE__, __FILE__));
// cerr << "expecting a packet of size " << sizeof (*msg) << endl;
VideoRead(buf, sizeof(*msg));
diff --git a/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/parseblock.cpp b/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/parseblock.cpp
index ed13635d4d9..4002fcd9abb 100644
--- a/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/parseblock.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/parseblock.cpp
@@ -238,7 +238,7 @@ ParseReconBlock(int n)
if (run == END_OF_BLOCK) break;
if (i >= 64)
{
- ACE_DEBUG ((LM_DEBUG,"(%P|%t) subscript out of range \n"));
+ // ACE_DEBUG ((LM_DEBUG,"(%P|%t) subscript out of range \n"));
break;
}
i = i + run + 1;
@@ -305,7 +305,7 @@ ParseReconBlock(int n)
i = i+run+1;
if (i >= 64)
{
- ACE_DEBUG ((LM_DEBUG,"(%P|%t) subscript out of range \n"));
+ // ACE_DEBUG ((LM_DEBUG,"(%P|%t) subscript out of range \n"));
break;
}
pos = zigzag_direct[i];