[FFmpeg-cvslog] r16025 - trunk/libavformat/asf.c

rbultje subversion
Sat Dec 6 21:28:38 CET 2008


Author: rbultje
Date: Sat Dec  6 21:28:38 2008
New Revision: 16025

Log:
Remove static variable and a printf using it. See "[PATCH] asf.c: move
packet_time_start=0 statement" thread on ML.



Modified:
   trunk/libavformat/asf.c

Modified: trunk/libavformat/asf.c
==============================================================================
--- trunk/libavformat/asf.c	(original)
+++ trunk/libavformat/asf.c	Sat Dec  6 21:28:38 2008
@@ -710,7 +710,6 @@ static int asf_read_packet(AVFormatConte
     ASFContext *asf = s->priv_data;
     ASFStream *asf_st = 0;
     ByteIOContext *pb = s->pb;
-    //static int pc = 0;
     for (;;) {
         if(url_feof(pb))
             return AVERROR(EIO);
@@ -728,7 +727,6 @@ static int asf_read_packet(AVFormatConte
                 (asf->packet_pos - asf->data_object_offset >= asf->data_object_size))
                 return AVERROR(EIO); /* Do not exceed the size of the data object */
             ret = asf_get_packet(s);
-            //printf("READ ASF PACKET  %d   r:%d   c:%d\n", ret, asf->packet_size_left, pc++);
             if (ret < 0)
                 assert(asf->packet_size_left < FRAME_HEADER_SIZE || asf->packet_segments < 1);
             asf->packet_time_start = 0;




More information about the ffmpeg-cvslog mailing list