summaryrefslogtreecommitdiff
path: root/libavformat/oggdec.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-04-24 15:40:57 +0200
committerDiego Biurrun <diego@biurrun.de>2011-04-24 16:45:45 +0200
commitdc713546d4ffcd2fbc8e0ecd28fbcf6cd252061a (patch)
tree47a0aeac6e80e0d88cc15a5d021d7b43236a3573 /libavformat/oggdec.c
parente9251bb5555f6daa6be10437f97579d85d6fdc89 (diff)
oggdec: reindent after 8f3eebd6
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavformat/oggdec.c')
-rw-r--r--libavformat/oggdec.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c
index d2725792e9..8d96320b3f 100644
--- a/libavformat/oggdec.c
+++ b/libavformat/oggdec.c
@@ -242,14 +242,14 @@ ogg_read_page (AVFormatContext * s, int *str)
idx = ogg_find_stream (ogg, serial);
if (idx < 0){
if (ogg->headers) {
- int n;
+ int n;
- for (n = 0; n < ogg->nstreams; n++) {
- av_freep(&ogg->streams[n].buf);
- av_freep(&ogg->streams[n].private);
- }
- ogg->curidx = -1;
- ogg->nstreams = 0;
+ for (n = 0; n < ogg->nstreams; n++) {
+ av_freep(&ogg->streams[n].buf);
+ av_freep(&ogg->streams[n].private);
+ }
+ ogg->curidx = -1;
+ ogg->nstreams = 0;
}
idx = ogg_new_stream (s, serial);
if (idx < 0)