summaryrefslogtreecommitdiff
path: root/libavformat/oma.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-01-17 00:27:22 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-01-17 00:27:22 +0000
commit45becaf337dabd8583a92e248bf1e3354560cff5 (patch)
tree487039d02cd7d9003fccec4f2fcee254abd66ed9 /libavformat/oma.c
parente922e34c962c3b60f9a7ce9a48fbcf5e13e4630b (diff)
Fix indentation after r21257.
Originally committed as revision 21258 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oma.c')
-rw-r--r--libavformat/oma.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavformat/oma.c b/libavformat/oma.c
index b0d2607ccb..7052ad374e 100644
--- a/libavformat/oma.c
+++ b/libavformat/oma.c
@@ -79,16 +79,16 @@ static int oma_read_header(AVFormatContext *s,
return -1;
if(!memcmp(buf, "ea3", 3)) {
- ea3_taglen = ((buf[6] & 0x7f) << 21) | ((buf[7] & 0x7f) << 14) | ((buf[8] & 0x7f) << 7) | (buf[9] & 0x7f);
+ ea3_taglen = ((buf[6] & 0x7f) << 21) | ((buf[7] & 0x7f) << 14) | ((buf[8] & 0x7f) << 7) | (buf[9] & 0x7f);
- EA3_pos = ea3_taglen + 10;
- if (buf[5] & 0x10)
- EA3_pos += 10;
+ EA3_pos = ea3_taglen + 10;
+ if (buf[5] & 0x10)
+ EA3_pos += 10;
- url_fseek(s->pb, EA3_pos, SEEK_SET);
- ret = get_buffer(s->pb, buf, EA3_HEADER_SIZE);
- if (ret != EA3_HEADER_SIZE)
- return -1;
+ url_fseek(s->pb, EA3_pos, SEEK_SET);
+ ret = get_buffer(s->pb, buf, EA3_HEADER_SIZE);
+ if (ret != EA3_HEADER_SIZE)
+ return -1;
} else {
ret = get_buffer(s->pb, buf + 10, EA3_HEADER_SIZE - 10);
EA3_pos = 0;