[FFmpeg-cvslog] r22890 - trunk/libavformat/oggdec.c

conrad subversion
Fri Apr 16 14:21:35 CEST 2010


Author: conrad
Date: Fri Apr 16 14:21:35 2010
New Revision: 22890

Log:
oggdec: Fix duration calculation if the last page in a file has no granule

Modified:
   trunk/libavformat/oggdec.c

Modified: trunk/libavformat/oggdec.c
==============================================================================
--- trunk/libavformat/oggdec.c	Fri Apr 16 14:21:29 2010	(r22889)
+++ trunk/libavformat/oggdec.c	Fri Apr 16 14:21:35 2010	(r22890)
@@ -431,7 +431,7 @@ static int
 ogg_get_length (AVFormatContext * s)
 {
     struct ogg *ogg = s->priv_data;
-    int idx = -1, i;
+    int i;
     int64_t size, end;
 
     if(url_is_streamed(s->pb))
@@ -451,15 +451,12 @@ ogg_get_length (AVFormatContext * s)
 
     while (!ogg_read_page (s, &i)){
         if (ogg->streams[i].granule != -1 && ogg->streams[i].granule != 0 &&
-            ogg->streams[i].codec)
-            idx = i;
-    }
-
-    if (idx != -1){
-        s->streams[idx]->duration =
-            ogg_gptopts (s, idx, ogg->streams[idx].granule, NULL);
-        if (s->streams[idx]->start_time != AV_NOPTS_VALUE)
-            s->streams[idx]->duration -= s->streams[idx]->start_time;
+            ogg->streams[i].codec) {
+            s->streams[i]->duration =
+                ogg_gptopts (s, i, ogg->streams[i].granule, NULL);
+            if (s->streams[i]->start_time != AV_NOPTS_VALUE)
+                s->streams[i]->duration -= s->streams[i]->start_time;
+        }
     }
 
     ogg_restore (s, 0);



More information about the ffmpeg-cvslog mailing list