summaryrefslogtreecommitdiff
path: root/libavformat/wav.c
diff options
context:
space:
mode:
authorTomas Härdin <tomas.hardin@codemill.se>2011-03-03 16:41:11 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-05-18 18:36:45 +0200
commit40612f260160014165f045d66da1d7e35ce857cf (patch)
treee031d27b3513e8b2a2a105d9431d23fbc7860f8e /libavformat/wav.c
parent6629dbd299717169c2dc8cf9218cf98e43322fb5 (diff)
Cosmetics: indent
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r--libavformat/wav.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c
index bfc93d566e..2d6eea2ed9 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -287,13 +287,13 @@ static int wav_read_header(AVFormatContext *s,
* know where the data tag ends
*/
if (!pb->seekable || (!rf64 && !size))
- goto break_loop;
+ goto break_loop;
data_ofs = avio_tell(pb);
break;
case MKTAG('f','a','c','t'):
if(!sample_count)
- sample_count = avio_rl32(pb);
+ sample_count = avio_rl32(pb);
break;
}
avio_seek(pb, next_tag_ofs, SEEK_SET);