Skip to content

Commit

Permalink
UltraGrid 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinPulec committed Dec 23, 2014
1 parent 96ca460 commit df66508
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 1 addition & 2 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
* further Windows compatibility (including GPUJPEG)
* added encryption
* added AV Foundation capture
* OS X 10.9 compatibility
* added CUDA implementation of LDGM
* multiple performance improvements
* added logo capture filter
Expand All @@ -12,7 +11,7 @@
* support for new operating systems (OS X 10.10, Ubuntu 14.10, Windows 8)
* added RTSP capturer
* added resize capture filter
* standard encapsulation for H.264 and A-law/u-law/OPUS audio and RTSP transmission/server
* standard encapsulation for H.264 and A-law/u-law/OPUS audio and RTSP server

1.2
=====
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.

AC_INIT([UltraGrid], [1.3-rc1], [[email protected]])
AC_INIT([UltraGrid], [1.3], [[email protected]])
AM_INIT_AUTOMAKE([1.10])
AC_PREREQ(2.61)
AC_CONFIG_SRCDIR([src/main.cpp])
Expand Down
3 changes: 3 additions & 0 deletions src/transmit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -626,6 +626,9 @@ tx_send_base(struct tx *tx, struct video_frame *frame, struct rtp *rtp_session,
mult_index = (mult_index + 1) % tx->mult_count;
}

//fprintf(stderr, "%d\n", packet_rate);
struct timespec tm = { 0, packet_rate };
nanosleep(&tm, NULL);
do {
GET_STOPTIME;
GET_DELTA;
Expand Down
1 change: 1 addition & 0 deletions src/video_rxtx/rtp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ using namespace std;
void rtp_video_rxtx::process_message(struct msg_sender *msg)
{
int ret;
assert(m_rxtx_mode == MODE_SENDER); // sender only
switch(msg->type) {
case SENDER_MSG_CHANGE_RECEIVER:
assert(m_connections_count == 1);
Expand Down

0 comments on commit df66508

Please sign in to comment.