summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2009-12-06 07:03:46 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-12-06 07:03:46 +0000
commite07c92e4bb25b387381b0cd9268a3105f3b6cddb (patch)
tree5c1b2310420b731e89cda0acbf3ce47cb3baa39f /libavformat
parent615c2879903cde62f70785cf19dcc94cbdefe93d (diff)
cosmetics: insert space between codeword and left parenthesis
Originally committed as revision 20746 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/rtmpproto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c
index 10b04fe694..96367e5eb5 100644
--- a/libavformat/rtmpproto.c
+++ b/libavformat/rtmpproto.c
@@ -581,7 +581,7 @@ static int rtmp_parse_result(URLContext *s, RTMPContext *rt, RTMPPacket *pkt)
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 for_header)
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);