Skip to content

Commit df66508

Browse files
committed
UltraGrid 1.3
1 parent 96ca460 commit df66508

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

NEWS

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* further Windows compatibility (including GPUJPEG)
44
* added encryption
55
* added AV Foundation capture
6-
* OS X 10.9 compatibility
76
* added CUDA implementation of LDGM
87
* multiple performance improvements
98
* added logo capture filter
@@ -12,7 +11,7 @@
1211
* support for new operating systems (OS X 10.10, Ubuntu 14.10, Windows 8)
1312
* added RTSP capturer
1413
* added resize capture filter
15-
* standard encapsulation for H.264 and A-law/u-law/OPUS audio and RTSP transmission/server
14+
* standard encapsulation for H.264 and A-law/u-law/OPUS audio and RTSP server
1615

1716
1.2
1817
=====

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dnl Process this file with autoconf to produce a configure script.
22

3-
AC_INIT([UltraGrid], [1.3-rc1], [[email protected]])
3+
AC_INIT([UltraGrid], [1.3], [[email protected]])
44
AM_INIT_AUTOMAKE([1.10])
55
AC_PREREQ(2.61)
66
AC_CONFIG_SRCDIR([src/main.cpp])

src/transmit.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,9 @@ tx_send_base(struct tx *tx, struct video_frame *frame, struct rtp *rtp_session,
626626
mult_index = (mult_index + 1) % tx->mult_count;
627627
}
628628

629+
//fprintf(stderr, "%d\n", packet_rate);
630+
struct timespec tm = { 0, packet_rate };
631+
nanosleep(&tm, NULL);
629632
do {
630633
GET_STOPTIME;
631634
GET_DELTA;

src/video_rxtx/rtp.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ using namespace std;
7777
void rtp_video_rxtx::process_message(struct msg_sender *msg)
7878
{
7979
int ret;
80+
assert(m_rxtx_mode == MODE_SENDER); // sender only
8081
switch(msg->type) {
8182
case SENDER_MSG_CHANGE_RECEIVER:
8283
assert(m_connections_count == 1);

0 commit comments

Comments
 (0)