aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacketVideo CM <engbuild@pv.com>2010-06-15 16:36:05 -0700
committerPacketVideo CM <engbuild@pv.com>2010-06-15 16:36:05 -0700
commit5246e853bcd21fad4c71209a11304e2e30a91f42 (patch)
tree6b86cb02ac6120c6277702ef4875089d94fe159a
parent1e8eead51e8c09b66691ead9c0aa57da4a92db10 (diff)
downloadopencore-5246e853bcd21fad4c71209a11304e2e30a91f42.tar.gz
RIO-8722: Large File Support in MP4 PDL and PPB (minor additional change 4)
Change-Id: Ib93b5b0f30fad3ec4536ef62bf6b9553f2a4c248
-rw-r--r--engines/2way/src/pv_2way_sdkinfo.h2
-rw-r--r--engines/author/src/pv_author_sdkinfo.h2
-rw-r--r--engines/player/src/pv_player_sdkinfo.h2
-rw-r--r--nodes/pvmp4ffparsernode/src/pvmf_mp4ffparser_node.cpp4
4 files changed, 5 insertions, 5 deletions
diff --git a/engines/2way/src/pv_2way_sdkinfo.h b/engines/2way/src/pv_2way_sdkinfo.h
index 6bcc2b767..9fe81f9ee 100644
--- a/engines/2way/src/pv_2way_sdkinfo.h
+++ b/engines/2way/src/pv_2way_sdkinfo.h
@@ -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 "1487575"
+#define PV2WAY_ENGINE_SDKINFO_LABEL "1487764"
#define PV2WAY_ENGINE_SDKINFO_DATE 0x20100609
#endif //PV_2WAY_SDKINFO_H_INCLUDED
diff --git a/engines/author/src/pv_author_sdkinfo.h b/engines/author/src/pv_author_sdkinfo.h
index 3461d0e08..6a6240109 100644
--- a/engines/author/src/pv_author_sdkinfo.h
+++ b/engines/author/src/pv_author_sdkinfo.h
@@ -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 "1487575"
+#define PVAUTHOR_ENGINE_SDKINFO_LABEL "1487764"
#define PVAUTHOR_ENGINE_SDKINFO_DATE 0x20100609
#endif //PV_AUTHOR_SDKINFO_H_INCLUDED
diff --git a/engines/player/src/pv_player_sdkinfo.h b/engines/player/src/pv_player_sdkinfo.h
index de4a4ef45..3749713f8 100644
--- a/engines/player/src/pv_player_sdkinfo.h
+++ b/engines/player/src/pv_player_sdkinfo.h
@@ -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 "1487575"
+#define PVPLAYER_ENGINE_SDKINFO_LABEL "1487764"
#define PVPLAYER_ENGINE_SDKINFO_DATE 0x20100609
#endif //PV_PLAYER_SDKINFO_H_INCLUDED
diff --git a/nodes/pvmp4ffparsernode/src/pvmf_mp4ffparser_node.cpp b/nodes/pvmp4ffparsernode/src/pvmf_mp4ffparser_node.cpp
index d88143cd0..e528f26ed 100644
--- a/nodes/pvmp4ffparsernode/src/pvmf_mp4ffparser_node.cpp
+++ b/nodes/pvmp4ffparsernode/src/pvmf_mp4ffparser_node.cpp
@@ -7890,11 +7890,11 @@ PVMFStatus PVMFMP4FFParserNode::CheckForMP4HeaderAvailability()
}
else if (iExternalDownload == true)
{
- uint32 maxSize = MAX_TOSCLFILEOFFSET_VALUE;
+ TOsclFileOffset maxSize = MAX_TOSCLFILEOFFSET_VALUE;
iRequestReadCapacityNotificationID =
iDataStreamInterface->RequestReadCapacityNotification(iDataStreamSessionID,
*this,
- maxSize);
+ (uint32)maxSize);
iDataStreamRequestPending = true;
PVMF_MP4FFPARSERNODE_LOGDATATRAFFIC((0, "PVMFMP4FFParserNode::CheckForMP4HeaderAvailability() - Auto Pause Triggered - Waiting on download complete"));
return PVMFPending;