Commit dc713546 authored by Clément Bœsch's avatar Clément Bœsch Committed by Diego Biurrun

oggdec: reindent after 8f3eebd6

Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
parent e9251bb5
...@@ -242,14 +242,14 @@ ogg_read_page (AVFormatContext * s, int *str) ...@@ -242,14 +242,14 @@ ogg_read_page (AVFormatContext * s, int *str)
idx = ogg_find_stream (ogg, serial); idx = ogg_find_stream (ogg, serial);
if (idx < 0){ if (idx < 0){
if (ogg->headers) { if (ogg->headers) {
int n; int n;
for (n = 0; n < ogg->nstreams; n++) { for (n = 0; n < ogg->nstreams; n++) {
av_freep(&ogg->streams[n].buf); av_freep(&ogg->streams[n].buf);
av_freep(&ogg->streams[n].private); av_freep(&ogg->streams[n].private);
} }
ogg->curidx = -1; ogg->curidx = -1;
ogg->nstreams = 0; ogg->nstreams = 0;
} }
idx = ogg_new_stream (s, serial); idx = ogg_new_stream (s, serial);
if (idx < 0) if (idx < 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment