OSDN Git Service

RIO-8876: Duration was not converted to millisec timescale properly
authorPacketVideo CM <engbuild@pv.com>
Sat, 27 Mar 2010 02:09:17 +0000 (19:09 -0700)
committerPacketVideo CM <engbuild@pv.com>
Sat, 27 Mar 2010 02:09:17 +0000 (19:09 -0700)
Change-Id: Ic3773908a0ba4996793de7538f92821f43962f19

engines/2way/src/pv_2way_sdkinfo.h
engines/author/src/pv_author_sdkinfo.h
engines/player/src/pv_player_sdkinfo.h
nodes/pvmp4ffparsernode/src/pvmf_mp4ffparser_node.cpp

index e13a1ff..218f6c1 100644 (file)
@@ -21,7 +21,7 @@
 // This header file is automatically generated at build-time
 // *** OFFICIAL RELEASE INFO -- Will not auto update
 
-#define PV2WAY_ENGINE_SDKINFO_LABEL "1331852"
-#define PV2WAY_ENGINE_SDKINFO_DATE 0x20100318
+#define PV2WAY_ENGINE_SDKINFO_LABEL "1332935"
+#define PV2WAY_ENGINE_SDKINFO_DATE 0x20100319
 
 #endif //PV_2WAY_SDKINFO_H_INCLUDED
index 336fdb0..497ff5b 100644 (file)
@@ -21,7 +21,7 @@
 // This header file is automatically generated at build-time
 // *** OFFICIAL RELEASE INFO -- Will not auto update
 
-#define PVAUTHOR_ENGINE_SDKINFO_LABEL "1331852"
-#define PVAUTHOR_ENGINE_SDKINFO_DATE 0x20100318
+#define PVAUTHOR_ENGINE_SDKINFO_LABEL "1332935"
+#define PVAUTHOR_ENGINE_SDKINFO_DATE 0x20100319
 
 #endif //PV_AUTHOR_SDKINFO_H_INCLUDED
index bea0850..e80da3d 100644 (file)
@@ -21,7 +21,7 @@
 // This header file is automatically generated at build-time
 // *** OFFICIAL RELEASE INFO -- Will not auto update
 
-#define PVPLAYER_ENGINE_SDKINFO_LABEL "1331852"
-#define PVPLAYER_ENGINE_SDKINFO_DATE 0x20100318
+#define PVPLAYER_ENGINE_SDKINFO_LABEL "1332935"
+#define PVPLAYER_ENGINE_SDKINFO_DATE 0x20100319
 
 #endif //PV_PLAYER_SDKINFO_H_INCLUDED
index ab965e3..7ea6ecc 100644 (file)
@@ -2730,7 +2730,7 @@ PVMFStatus PVMFMP4FFParserNode::SetPlaybackStartupTime(uint32& aTargetNPT,
     {
         // Convert to milliseconds
         MediaClockConverter mcc(timescale);
-        mcc.update_clock(duration);
+        mcc.set_clock(duration64, 0);
         duration = mcc.get_converted_ts(1000);
     }
     if ((aTargetNPT >= duration) && (PVMF_DATA_SOURCE_DIRECTION_REVERSE != iPlayBackDirection))