lavf/oggdec: reindent and comment blocks.
This commit is contained in:
parent
a218c5ebd2
commit
23f6420026
@ -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,12 +219,12 @@ static int ogg_new_stream(AVFormatContext *s, uint32_t serial)
|
|||||||
if (!os->buf)
|
if (!os->buf)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
|
/* Create the associated AVStream */
|
||||||
st = avformat_new_stream(s, NULL);
|
st = avformat_new_stream(s, NULL);
|
||||||
if (!st) {
|
if (!st) {
|
||||||
av_freep(&os->buf);
|
av_freep(&os->buf);
|
||||||
return AVERROR(ENOMEM);
|
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);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user