From 45becaf337dabd8583a92e248bf1e3354560cff5 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 17 Jan 2010 00:27:22 +0000 Subject: [PATCH] Fix indentation after r21257. Originally committed as revision 21258 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/oma.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libavformat/oma.c b/libavformat/oma.c index b0d2607cc..7052ad374 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; -- 2.11.0