[FFmpeg-cvslog] r20746 - trunk/libavformat/rtmpproto.c

kostya subversion
Sun Dec 6 08:03:46 CET 2009


Author: kostya
Date: Sun Dec  6 08:03:46 2009
New Revision: 20746

Log:
cosmetics: insert space between codeword and left parenthesis

Modified:
   trunk/libavformat/rtmpproto.c

Modified: trunk/libavformat/rtmpproto.c
==============================================================================
--- trunk/libavformat/rtmpproto.c	Sun Dec  6 08:01:37 2009	(r20745)
+++ trunk/libavformat/rtmpproto.c	Sun Dec  6 08:03:46 2009	(r20746)
@@ -581,7 +581,7 @@ static int rtmp_parse_result(URLContext 
                     if (pkt_id == 4)
                         rt->state = STATE_CONNECTING;
                 }
-                if(rt->state != STATE_CONNECTING)
+                if (rt->state != STATE_CONNECTING)
                     break;
             case STATE_CONNECTING:
                 //extract a number from the result
@@ -642,7 +642,7 @@ static int get_packet(URLContext *s, int
     RTMPContext *rt = s->priv_data;
     int ret;
 
-    for(;;) {
+    for (;;) {
         RTMPPacket rpkt;
         if ((ret = ff_rtmp_packet_read(rt->stream, &rpkt,
                                        rt->chunk_size, rt->prev_pkt[0])) != 0) {
@@ -702,7 +702,7 @@ static int rtmp_close(URLContext *h)
 {
     RTMPContext *rt = h->priv_data;
 
-    if(!rt->is_input) {
+    if (!rt->is_input) {
         rt->flv_data = NULL;
         if (rt->out_pkt.data_size)
             ff_rtmp_packet_destroy(&rt->out_pkt);



More information about the ffmpeg-cvslog mailing list