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

bcoudurier subversion
Fri Nov 14 04:45:31 CET 2008


Author: bcoudurier
Date: Fri Nov 14 04:45:31 2008
New Revision: 15821

Log:
timestamp is dts in wmv/asf

Modified:
   trunk/libavformat/asf.c

Modified: trunk/libavformat/asf.c
==============================================================================
--- trunk/libavformat/asf.c	(original)
+++ trunk/libavformat/asf.c	Fri Nov 14 04:45:31 2008
@@ -791,7 +791,7 @@ static int asf_read_packet(AVFormatConte
             /* new packet */
             av_new_packet(&asf_st->pkt, asf->packet_obj_size);
             asf_st->seq = asf->packet_seq;
-            asf_st->pkt.pts = asf->packet_frag_timestamp;
+            asf_st->pkt.dts = asf->packet_frag_timestamp;
             asf_st->pkt.stream_index = asf->stream_index;
             asf_st->pkt.pos =
             asf_st->packet_pos= asf->packet_pos;




More information about the ffmpeg-cvslog mailing list