[FFmpeg-cvslog] lavf/oggdec: reindent and comment blocks.

Clément Bœsch git at videolan.org
Sun Sep 16 18:34:20 CEST 2012


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Sat Sep 15 00:42:25 2012 +0200| [23f6420026e130f1eb8d118f1b7bb7e7ddb67bce] | committer: Clément Bœsch

lavf/oggdec: reindent and comment blocks.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=23f6420026e130f1eb8d118f1b7bb7e7ddb67bce
---

 libavformat/oggdec.c |   17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

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



More information about the ffmpeg-cvslog mailing list