diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-04-13 22:08:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-04-13 22:08:36 +0000 |
commit | fc122efd664ef5a13bd3dee58847b016d9ffafd4 (patch) | |
tree | f506befd88c20973e451c8b84ff83025123b9e5a /libavformat/librtmp.c | |
parent | 8b9ec992a74c86e510bc2c46fac47080aa8a2159 (diff) | |
download | ffmpeg-fc122efd664ef5a13bd3dee58847b016d9ffafd4.tar.gz |
whitespace cosmetics
Originally committed as revision 22874 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/librtmp.c')
-rw-r--r-- | libavformat/librtmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/librtmp.c b/libavformat/librtmp.c index 82f1bc8362..b3d78f354d 100644 --- a/libavformat/librtmp.c +++ b/libavformat/librtmp.c @@ -21,7 +21,7 @@ /** * @file libavformat/librtmp.c - * RTMP protocol based on http://rtmpdump.mplayerhq.hu librtmp + * RTMP protocol based on http://rtmpdump.mplayerhq.hu/ librtmp */ #include "avformat.h" @@ -59,7 +59,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags) if (!r) return AVERROR(ENOMEM); - switch(av_log_get_level()) { + switch (av_log_get_level()) { default: case AV_LOG_FATAL: rc = RTMP_LOGCRIT; break; case AV_LOG_ERROR: rc = RTMP_LOGERROR; break; @@ -84,7 +84,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags) goto fail; } - s->priv_data = r; + s->priv_data = r; s->is_streamed = 1; return 0; fail: |