[FFmpeg-cvslog] avconv: remove commented out cruft.

Anton Khirnov git at videolan.org
Thu Aug 9 15:42:09 CEST 2012


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sat Aug  4 11:50:30 2012 +0200| [d64901f99d850881d4a9f8ea3f161e7a280d9147] | committer: Anton Khirnov

avconv: remove commented out cruft.

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

 avconv.c |    5 -----
 1 file changed, 5 deletions(-)

diff --git a/avconv.c b/avconv.c
index f7ec841..46d16a1 100644
--- a/avconv.c
+++ b/avconv.c
@@ -2203,10 +2203,6 @@ static int transcode(void)
         if (pkt.dts != AV_NOPTS_VALUE)
             pkt.dts *= ist->ts_scale;
 
-        //fprintf(stderr, "next:%"PRId64" dts:%"PRId64" off:%"PRId64" %d\n",
-        //        ist->next_dts,
-        //        pkt.dts, input_files[ist->file_index].ts_offset,
-        //        ist->st->codec->codec_type);
         if (pkt.dts != AV_NOPTS_VALUE && ist->next_dts != AV_NOPTS_VALUE
             && (is->iformat->flags & AVFMT_TS_DISCONT)) {
             int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
@@ -2222,7 +2218,6 @@ static int transcode(void)
             }
         }
 
-        // fprintf(stderr,"read #%d.%d size=%d\n", ist->file_index, ist->st->index, pkt.size);
         if (output_packet(ist, &pkt) < 0 || poll_filters() < 0) {
             av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d\n",
                    ist->file_index, ist->st->index);



More information about the ffmpeg-cvslog mailing list