Commit 23f64200 authored by Clément Bœsch's avatar Clément Bœsch

lavf/oggdec: reindent and comment blocks.

parent a218c5eb
...@@ -205,6 +205,7 @@ static int ogg_new_stream(AVFormatContext *s, uint32_t serial) ...@@ -205,6 +205,7 @@ static int ogg_new_stream(AVFormatContext *s, uint32_t serial)
struct ogg_stream *os; struct ogg_stream *os;
size_t size; size_t size;
/* Allocate and init a new Ogg Stream */
if (av_size_mult(ogg->nstreams + 1, sizeof(*ogg->streams), &size) < 0 || if (av_size_mult(ogg->nstreams + 1, sizeof(*ogg->streams), &size) < 0 ||
!(os = av_realloc(ogg->streams, size))) !(os = av_realloc(ogg->streams, size)))
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
...@@ -218,14 +219,14 @@ static int ogg_new_stream(AVFormatContext *s, uint32_t serial) ...@@ -218,14 +219,14 @@ static int ogg_new_stream(AVFormatContext *s, uint32_t serial)
if (!os->buf) if (!os->buf)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
st = avformat_new_stream(s, NULL); /* Create the associated AVStream */
if (!st) { st = avformat_new_stream(s, NULL);
av_freep(&os->buf); if (!st) {
return AVERROR(ENOMEM); av_freep(&os->buf);
} return AVERROR(ENOMEM);
}
st->id = idx; st->id = idx;
avpriv_set_pts_info(st, 64, 1, 1000000); avpriv_set_pts_info(st, 64, 1, 1000000);
ogg->nstreams++; ogg->nstreams++;
return idx; return idx;
......
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