]> git.sesse.net Git - ffmpeg/commitdiff
avienc: Update 2 debug statements to match the current code.
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 9 May 2011 15:49:25 +0000 (17:49 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 9 May 2011 15:49:25 +0000 (17:49 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/avienc.c

index ff74c3b492afba736f85b51b65986a95e0be9a5e..9f488d9600f28285d9f7499c9b7f17384ca51d01 100644 (file)
@@ -518,7 +518,7 @@ static int avi_write_packet(AVFormatContext *s, AVPacket *pkt)
     AVCodecContext *enc= s->streams[stream_index]->codec;
     int size= pkt->size;
 
-//    av_log(s, AV_LOG_DEBUG, "%"PRId64" %d %d\n", pkt->dts, avi->packet_count[stream_index], stream_index);
+//    av_log(s, AV_LOG_DEBUG, "%"PRId64" %d %d\n", pkt->dts, avist->packet_count, stream_index);
     while(enc->block_align==0 && pkt->dts != AV_NOPTS_VALUE && pkt->dts > avist->packet_count){
         AVPacket empty_packet;
 
@@ -527,7 +527,7 @@ static int avi_write_packet(AVFormatContext *s, AVPacket *pkt)
         empty_packet.data= NULL;
         empty_packet.stream_index= stream_index;
         avi_write_packet(s, &empty_packet);
-//        av_log(s, AV_LOG_DEBUG, "dup %"PRId64" %d\n", pkt->dts, avi->packet_count[stream_index]);
+//        av_log(s, AV_LOG_DEBUG, "dup %"PRId64" %d\n", pkt->dts, avist->packet_count);
     }
     avist->packet_count++;