OSDN Git Service

RIO-8418: Update the priority of some log messages
authorPacketVideo CM <engbuild@pv.com>
Tue, 26 Jan 2010 22:07:47 +0000 (14:07 -0800)
committerPacketVideo CM <engbuild@pv.com>
Tue, 26 Jan 2010 22:07:47 +0000 (14:07 -0800)
android/playerdriver.cpp
engines/2way/src/pv_2way_sdkinfo.h
engines/author/src/pv_author_sdkinfo.h
engines/player/src/pv_player_sdkinfo.h
fileformats/rawaac/parser/include/aacfileparser.h
nodes/pvmp3ffparsernode/src/pvmf_mp3ffparser_outport.h
nodes/pvmp4ffparsernode/src/pvmf_mp4ffparser_node.cpp
pvmi/content_policy_manager/src/cpm.cpp

index be927b9..d5f1907 100644 (file)
@@ -1297,6 +1297,7 @@ void PlayerDriver::HandleInformationalEvent(const PVAsyncInformationalEvent& aEv
         case PVMFInfoContentType:
         case PVMFInfoUnderflow:
         case PVMFInfoDataDiscarded:
+        case PVMFInfoActualPlaybackPosition:
             break;
 
         default:
@@ -1577,6 +1578,7 @@ status_t PVPlayer::getDuration(int *msec)
 {
     status_t ret = mPlayerDriver->enqueueCommand(new PlayerGetDuration(msec,0,0));
     if (ret == NO_ERROR) mDuration = *msec;
+    LOGI("duration = %d",mDuration);
     return ret;
 }
 
index 24c3a47..bf4780d 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 "1205574"
+#define PV2WAY_ENGINE_SDKINFO_LABEL "1205606"
 #define PV2WAY_ENGINE_SDKINFO_DATE 0x20100119
 
 #endif //PV_2WAY_SDKINFO_H_INCLUDED
index 296b70c..e34f098 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 "1205574"
+#define PVAUTHOR_ENGINE_SDKINFO_LABEL "1205606"
 #define PVAUTHOR_ENGINE_SDKINFO_DATE 0x20100119
 
 #endif //PV_AUTHOR_SDKINFO_H_INCLUDED
index 0ee6166..9a0b177 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 "1205574"
+#define PVPLAYER_ENGINE_SDKINFO_LABEL "1205606"
 #define PVPLAYER_ENGINE_SDKINFO_DATE 0x20100119
 
 #endif //PV_PLAYER_SDKINFO_H_INCLUDED
index 04be4c1..77c911a 100644 (file)
 
 #define PVMF_AACPARSER_LOGDIAGNOSTICS(m) PVLOGGER_LOGMSG(PVLOGMSG_INST_MLDBG,iDiagnosticLogger,PVLOGMSG_INFO,m);
 #define PVMF_AACPARSER_LOGERROR(m) PVLOGGER_LOGMSG(PVLOGMSG_INST_REL,iLogger,PVLOGMSG_ERR,m);
-#define PVMF_AACPARSER_LOGDEBUG(m) PVLOGGER_LOGMSG(PVLOGMSG_INST_REL,iLogger,PVLOGMSG_DEBUG,m);
+#define PVMF_AACPARSER_LOGDEBUG(m) PVLOGGER_LOGMSG(PVLOGMSG_INST_LLDBG,iLogger,PVLOGMSG_DEBUG,m);
 
 
 #define PV_AAC_FF_NEW(auditCB,T,params,ptr)\
index 03b772c..68c0ce3 100644 (file)
@@ -1,5 +1,5 @@
 /* ------------------------------------------------------------------
- * Copyright (C) 1998-2009 PacketVideo
+ * Copyright (C) 1998-2010 PacketVideo
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@
 #include "pvmi_config_and_capability_utils.h"
 #endif
 
-#define PVMF_MP3FPARSERNODE_LOGINFO(m)  PVLOGGER_LOGMSG(PVLOGMSG_INST_REL,iLogger,PVLOGMSG_INFO,m);
+#define PVMF_MP3FPARSERNODE_LOGINFO(m)  PVLOGGER_LOGMSG(PVLOGMSG_INST_LLDBG,iLogger,PVLOGMSG_INFO,m);
 #define PVMF_MP3FPARSERNODE_LOGERROR(m) PVLOGGER_LOGMSG(PVLOGMSG_INST_REL,iLogger,PVLOGMSG_ERR,m);
 
 class PVMFMP3FFParserNode;
index b7de737..fc037ac 100644 (file)
@@ -4661,7 +4661,7 @@ bool PVMFMP4FFParserNode::GenerateAACFrameFrags(PVMP4FFNodeTrackPortInfo& aTrack
     OsclBinIStreamBigEndian sampleStream;
     sampleStream.Attach(memFragIn.getMemFrag().ptr, memFragIn.getMemFrag().len);
 
-    PVMF_MP4FFPARSERNODE_LOGERROR((0, "PVMFMP4FFParserNode::GenerateAACFrameFrags - SeqNum=%d, samplesize=%d, TS=%d, PTR=0x%x, RC=%d", aTrackPortInfo.iMediaData->getSeqNum(), samplesize, aTrackPortInfo.iMediaData->getTimestamp(), sample, memFragIn.getRefCounter()->getCount()));
+    PVMF_MP4FFPARSERNODE_LOGDATATRAFFIC((0, "PVMFMP4FFParserNode::GenerateAACFrameFrags - SeqNum=%d, samplesize=%d, TS=%d, PTR=0x%x, RC=%d", aTrackPortInfo.iMediaData->getSeqNum(), samplesize, aTrackPortInfo.iMediaData->getTimestamp(), sample, memFragIn.getRefCounter()->getCount()));
 
     MediaMetaInfo *iInfo = NULL;
     bool appended_data = false;
index d7bc49a..80b39a1 100644 (file)
@@ -1,5 +1,5 @@
 /* ------------------------------------------------------------------
- * Copyright (C) 1998-2009 PacketVideo
+ * Copyright (C) 1998-2010 PacketVideo
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -1456,7 +1456,7 @@ void PVMFCPMImpl::DoRegisterContent(PVMFCPMCommand& aCmd)
         }
         else
         {
-            PVMF_CPM_LOGERROR((0, "PVMFCPMImpl::DoRegisterContent - PopulateListOfActivePlugIns Failed"));
+            PVMF_CPM_LOGINFOHI((0, "PVMFCPMImpl::DoRegisterContent - PopulateListOfActivePlugIns Failed"));
             CommandComplete(iInputCommands, aCmd, status);
         }
     }