[Ffmpeg-cvslog] r7457 - trunk/libavformat/swf.c

bcoudurier subversion
Sun Jan 14 02:20:25 CET 2007


Author: bcoudurier
Date: Sun Jan 14 02:20:24 2007
New Revision: 7457

Modified:
   trunk/libavformat/swf.c

Log:
simplify

Modified: trunk/libavformat/swf.c
==============================================================================
--- trunk/libavformat/swf.c	(original)
+++ trunk/libavformat/swf.c	Sun Jan 14 02:20:24 2007
@@ -855,17 +855,17 @@
             return AVERROR_IO;
         if (tag == TAG_VIDEOFRAME) {
             int ch_id = get_le16(pb);
+            len -= 2;
             for( i=0; i<s->nb_streams; i++ ) {
                 st = s->streams[i];
                 if (st->codec->codec_type == CODEC_TYPE_VIDEO && st->id == ch_id) {
                     frame = get_le16(pb);
-                    av_get_packet(pb, pkt, len-4);
+                    av_get_packet(pb, pkt, len-2);
                     pkt->pts = frame * swf->ms_per_frame;
                     pkt->stream_index = st->index;
                     return pkt->size;
                 }
             }
-            url_fskip(pb, len-2);
         } else if (tag == TAG_STREAMBLOCK) {
             st = s->streams[swf->audio_stream_index];
             if (st->codec->codec_id == CODEC_ID_MP3) {
@@ -874,10 +874,8 @@
                 pkt->stream_index = st->index;
                 return pkt->size;
             }
-            url_fskip(pb, len);
-        } else {
-            url_fskip(pb, len);
         }
+        url_fskip(pb, len);
     }
     return 0;
 }




More information about the ffmpeg-cvslog mailing list