OSDN Git Service

RIO-6819: Add player engine test to perform repositioning in downloaded area during...
authorPacketVideo CM <engbuild@pv.com>
Wed, 21 Oct 2009 16:46:38 +0000 (09:46 -0700)
committerPacketVideo CM <engbuild@pv.com>
Wed, 21 Oct 2009 16:46:38 +0000 (09:46 -0700)
engines/2way/src/pv_2way_sdkinfo.h
engines/author/src/pv_author_sdkinfo.h
engines/player/src/pv_player_sdkinfo.h
engines/player/test/src/test_pv_player_engine_testset5.cpp

index caaa566..8de71b8 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 "1021104"
-#define PV2WAY_ENGINE_SDKINFO_DATE 0x20091014
+#define PV2WAY_ENGINE_SDKINFO_LABEL "1021272"
+#define PV2WAY_ENGINE_SDKINFO_DATE 0x20091015
 
 #endif //PV_2WAY_SDKINFO_H_INCLUDED
index d13f846..99b04c2 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 "1021104"
-#define PVAUTHOR_ENGINE_SDKINFO_DATE 0x20091014
+#define PVAUTHOR_ENGINE_SDKINFO_LABEL "1021272"
+#define PVAUTHOR_ENGINE_SDKINFO_DATE 0x20091015
 
 #endif //PV_AUTHOR_SDKINFO_H_INCLUDED
index a5a020a..c010b08 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 "1021104"
-#define PVPLAYER_ENGINE_SDKINFO_DATE 0x20091014
+#define PVPLAYER_ENGINE_SDKINFO_LABEL "1021272"
+#define PVPLAYER_ENGINE_SDKINFO_DATE 0x20091015
 
 #endif //PV_PLAYER_SDKINFO_H_INCLUDED
index ff1ae63..73f0a36 100644 (file)
@@ -1123,6 +1123,11 @@ void pvplayer_async_test_downloadbase::CommandCompleted(const PVCmdResponse& aRe
                     RunIfNotReady(10*1000*1000);
                 }
             }
+            //ignore PVMFErrNotSupported
+            else if (aResponse.GetCmdStatus() == PVMFErrNotSupported)
+            {
+                RunIfNotReady(5*1000*1000);
+            }
             else
             {
                 fprintf(iTestMsgOutputFile, "***Repositioning Failed...\n");
@@ -1407,6 +1412,9 @@ void pvplayer_async_test_downloadbase::HandleErrorEvent(const PVAsyncErrorEvent&
             fprintf(file, "   GOT PVMFErrTimeout error event");
             break;
 
+        case PVMFErrNotSupported:
+            break;
+
         default:
             // Unknown error and just log the error
             PVPATB_TEST_IS_TRUE(false);