[rtmpdump] r354 - trunk/librtmp/rtmp.c
hyc
subversion at mplayerhq.hu
Mon Mar 15 18:07:56 CET 2010
Author: hyc
Date: Mon Mar 15 18:07:55 2010
New Revision: 354
Log:
Fix seek timestamp
Modified:
trunk/librtmp/rtmp.c
Modified: trunk/librtmp/rtmp.c
==============================================================================
--- trunk/librtmp/rtmp.c Mon Mar 15 09:31:21 2010 (r353)
+++ trunk/librtmp/rtmp.c Mon Mar 15 18:07:55 2010 (r354)
@@ -1284,7 +1284,7 @@ RTMP_SendSeek(RTMP *r, double dTime)
packet.m_nBodySize = enc - packet.m_body;
r->m_read.flags |= RTMP_READ_SEEKING;
- r->m_read.nResumeTS = (int)dTime;
+ r->m_read.nResumeTS = 0;
return RTMP_SendPacket(r, &packet, true);
}
More information about the rtmpdump
mailing list