muxing packets with unknown timestamps is not allowed
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 7 Feb 2007 22:26:48 +0000 (22:26 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 7 Feb 2007 22:26:48 +0000 (22:26 +0000)
Originally committed as revision 7877 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/asf-enc.c

index 45f727b..211a144 100644 (file)
@@ -725,16 +725,8 @@ static int asf_write_packet(AVFormatContext *s, AVPacket *pkt)
 
     //XXX /FIXME use duration from AVPacket (quick hack by)
     pts = (pkt->pts != AV_NOPTS_VALUE) ? pkt->pts : pkt->dts;
-    if (pts == AV_NOPTS_VALUE) {
-        if (codec->codec_type == CODEC_TYPE_AUDIO) {
-            duration = (codec->frame_number * (int64_t)codec->frame_size * INT64_C(10000000)) /
-                codec->sample_rate;
-        } else {
-            duration = av_rescale(codec->frame_number * (int64_t)codec->time_base.num, 10000000, codec->time_base.den);
-        }
-    } else {
-        duration = pts * 10000;
-    }
+    assert(pts != AV_NOPTS_VALUE);
+    duration = pts * 10000;
     asf->duration= FFMAX(asf->duration, duration);
 
     packet_st = asf->nb_packets;