diff options
author | yamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-12 07:31:32 +0000 |
---|---|---|
committer | yamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-12 07:31:32 +0000 |
commit | 435cf881e288a8623b49eab2e35082f78509462f (patch) | |
tree | 27b398a94333ae223e1330bb2a338825a706a0c7 /TAO/orbsvcs/tests/AVStreams/Latency | |
parent | 86188190d0dda935c59e4c02d5702217bd3e282b (diff) | |
download | ATCD-435cf881e288a8623b49eab2e35082f78509462f.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams/Latency')
-rw-r--r-- | TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp | 3 | ||||
-rw-r--r-- | TAO/orbsvcs/tests/AVStreams/Latency/pong.cpp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp b/TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp index a5a9aed1c4d..a09e9bb391d 100644 --- a/TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp +++ b/TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp @@ -117,8 +117,9 @@ int main (int argc, char *argv[]) // Register the video mmdevice object with the ORB Reactive_Strategy *reactive_strategy; ACE_NEW_RETURN (reactive_strategy, - Reactive_Strategy (orb.in (), poa.in ()), + Reactive_Strategy, 1); + reactive_strategy->init (orb.in (), poa.in ()); TAO_MMDevice *mmdevice_impl; ACE_NEW_RETURN (mmdevice_impl, TAO_MMDevice (reactive_strategy), diff --git a/TAO/orbsvcs/tests/AVStreams/Latency/pong.cpp b/TAO/orbsvcs/tests/AVStreams/Latency/pong.cpp index 76d223feb0f..3ad29475c6a 100644 --- a/TAO/orbsvcs/tests/AVStreams/Latency/pong.cpp +++ b/TAO/orbsvcs/tests/AVStreams/Latency/pong.cpp @@ -130,8 +130,9 @@ int main (int argc, char *argv[]) Reactive_Strategy *reactive_strategy; ACE_NEW_RETURN (reactive_strategy, - Reactive_Strategy (orb.in (), poa.in ()), + Reactive_Strategy, 1); + reactive_strategy->init (orb.in (), poa.in ()); TAO_MMDevice *mmdevice_impl; ACE_NEW_RETURN (mmdevice_impl, TAO_MMDevice (reactive_strategy), |