diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:52:50 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:52:50 +0000 |
commit | a6072fdc184f863c84852864a53da1b2e53c8eb0 (patch) | |
tree | b587211fa7b0eb0b026073e12b093a1a6338647b | |
parent | ae76c49908af771fdc5a432e5a31fc013fabf202 (diff) | |
download | ffmpeg-streaming-a6072fdc184f863c84852864a53da1b2e53c8eb0.zip ffmpeg-streaming-a6072fdc184f863c84852864a53da1b2e53c8eb0.tar.gz |
Indent
Originally committed as revision 13362 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ra144.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index f4def6b..21255b1 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -188,8 +188,8 @@ static unsigned int rms(const int *data, int f) if (res == 0) return 0; - if (res > 0x10000) - return 0; /* We're screwed, might as well go out with a bang. :P */ + if (res > 0x10000) + return 0; /* We're screwed, might as well go out with a bang. :P */ while (res <= 0x3fff) { b++; |