diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-11 18:48:08 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-11 18:48:08 +0000 |
commit | 76f940b21e589341be28666755d13d8794b3d6af (patch) | |
tree | b3a5dcf0b7fcd517fdc2a5808d480b88d460137b /libavformat/rmdec.c | |
parent | fe9e9d60207980c60f2f545c752f3e78d8a1e51d (diff) | |
download | ffmpeg-76f940b21e589341be28666755d13d8794b3d6af.tar.gz |
Fix indenting.
Originally committed as revision 16056 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rmdec.c')
-rw-r--r-- | libavformat/rmdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index d9c508f71d..ea4cf809e9 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -67,9 +67,9 @@ static int rm_read_audio_stream_info(AVFormatContext *s, ByteIOContext *pb, get_str8(pb, s->copyright, sizeof(s->copyright)); get_str8(pb, s->comment, sizeof(s->comment)); if ((startpos + (version & 0xffff)) >= url_ftell(pb) + 2) { - // fourcc (should always be "lpcJ") - get_byte(pb); - get_str8(pb, buf, sizeof(buf)); + // fourcc (should always be "lpcJ") + get_byte(pb); + get_str8(pb, buf, sizeof(buf)); } // Skip extra header crap (this should never happen) if ((startpos + (version & 0xffff)) > url_ftell(pb)) |