Commit e654b653 authored by diego's avatar diego

whitespace cosmetics


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22874 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 01246860
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
/** /**
* @file libavformat/librtmp.c * @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" #include "avformat.h"
...@@ -59,7 +59,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags) ...@@ -59,7 +59,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags)
if (!r) if (!r)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
switch(av_log_get_level()) { switch (av_log_get_level()) {
default: default:
case AV_LOG_FATAL: rc = RTMP_LOGCRIT; break; case AV_LOG_FATAL: rc = RTMP_LOGCRIT; break;
case AV_LOG_ERROR: rc = RTMP_LOGERROR; break; case AV_LOG_ERROR: rc = RTMP_LOGERROR; break;
...@@ -84,7 +84,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags) ...@@ -84,7 +84,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags)
goto fail; goto fail;
} }
s->priv_data = r; s->priv_data = r;
s->is_streamed = 1; s->is_streamed = 1;
return 0; return 0;
fail: fail:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment