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

michael subversion
Mon Aug 6 22:37:45 CEST 2007


Author: michael
Date: Mon Aug  6 22:37:45 2007
New Revision: 9964

Log:
more verbose error


Modified:
   trunk/libavformat/asf.c

Modified: trunk/libavformat/asf.c
==============================================================================
--- trunk/libavformat/asf.c	(original)
+++ trunk/libavformat/asf.c	Mon Aug  6 22:37:45 2007
@@ -829,7 +829,7 @@ static int asf_read_packet(AVFormatConte
             /* return packet */
             if (asf_st->ds_span > 1) {
               if(asf_st->pkt.size != asf_st->ds_packet_size * asf_st->ds_span){
-                    av_log(s, AV_LOG_ERROR, "pkt.size != ds_packet_size * ds_span\n");
+                    av_log(s, AV_LOG_ERROR, "pkt.size != ds_packet_size * ds_span (%d %d %d)\n", asf_st->pkt.size, asf_st->ds_packet_size, asf_st->ds_span);
               }else{
                 /* packet descrambling */
                 uint8_t *newdata = av_malloc(asf_st->pkt.size);




More information about the ffmpeg-cvslog mailing list