From 44fb055cf47a3a54cce0d746af23955753284422 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 30 May 2014 10:54:44 +0200 Subject: Modify unit tests to match API change. --- test/test_raw.cc | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'test/test_raw.cc') diff --git a/test/test_raw.cc b/test/test_raw.cc index e219ffa..ffadabb 100644 --- a/test/test_raw.cc +++ b/test/test_raw.cc @@ -55,7 +55,9 @@ public: unsigned int csrc = 42; { // Encode - struct lrtp_t *lrtp = lrtp_init(KEY, SSRC); + lrtp_status_t status; + struct lrtp_t *lrtp = lrtp_init(&status, KEY, SSRC); + CPPUNIT_ASSERT_EQUAL(status, LRTP_OK); int x = lrtp_create_profile(lrtp, PROFILE_RAW, csrc, OPTION_RAW_PKG_SIZE, pkg_size, @@ -72,7 +74,8 @@ public: for(size_t i = 0; i < sizeof(frame); i++) frame[i] = num++; int ret = 0; - ret = lrtp_enqueue_frame(lrtp, csrc, frame, sizeof(frame), ts); + ret = lrtp_enqueue_frame(lrtp, csrc, frame, sizeof(frame), ts, + LRTP_COPY); while( (ret = lrtp_pack(lrtp, packet, sizeof(packet))) != 0) { std::string p; p.append(packet, ret); @@ -87,7 +90,9 @@ public: } { // Decode - struct lrtp_t *lrtp = lrtp_init(KEY, SSRC); + lrtp_status_t status; + struct lrtp_t *lrtp = lrtp_init(&status, KEY, SSRC); + CPPUNIT_ASSERT_EQUAL(status, LRTP_OK); int x = lrtp_create_profile(lrtp, PROFILE_RAW, csrc, OPTION_RAW_PKG_SIZE, pkg_size, -- cgit v1.2.3