[FFmpeg-cvslog] r22549 - trunk/libavformat/rtspenc.c
mstorsjo
subversion
Mon Mar 15 17:36:54 CET 2010
Author: mstorsjo
Date: Mon Mar 15 17:36:54 2010
New Revision: 22549
Log:
Reindent
Modified:
trunk/libavformat/rtspenc.c
Modified: trunk/libavformat/rtspenc.c
==============================================================================
--- trunk/libavformat/rtspenc.c Mon Mar 15 17:36:20 2010 (r22548)
+++ trunk/libavformat/rtspenc.c Mon Mar 15 17:36:54 2010 (r22549)
@@ -79,9 +79,9 @@ static int rtsp_write_packet(AVFormatCon
while (1) {
FD_ZERO(&rfds);
FD_SET(tcp_fd, &rfds);
- tv.tv_sec = 0;
- tv.tv_usec = 0;
- n = select(tcp_fd + 1, &rfds, NULL, NULL, &tv);
+ tv.tv_sec = 0;
+ tv.tv_usec = 0;
+ n = select(tcp_fd + 1, &rfds, NULL, NULL, &tv);
if (n <= 0)
break;
if (FD_ISSET(tcp_fd, &rfds)) {
More information about the ffmpeg-cvslog
mailing list