Skip to content
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.

Commit

Permalink
2182157 Fix for [RIO-7730] valgrind errors in opencore
Browse files Browse the repository at this point in the history
  • Loading branch information
Sahil Sachdeva committed Oct 15, 2009
1 parent 137e75b commit 806a89c
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions fileformats/rawaac/parser/src/aacfileparser.cpp
Expand Up @@ -1479,17 +1479,20 @@ class AutoPtrArrayContainer
// CAUTION
//
//------------------------------------------------------------------------------
OSCL_EXPORT_REF CAACFileParser::CAACFileParser(void)
OSCL_EXPORT_REF CAACFileParser::CAACFileParser(void) :
iAACDuration(0),
iAACSampleFrequency(0),
iAACBitRate(0),
iAACHeaderLen(0),
iFirstTime(false),
iAACFileSize(0),
iTotalNumFramesRead(0),
iAACFormat(EAACUnrecognized),
iLogger(PVLogger::GetLoggerObject("pvaacparser")),
iDiagnosticLogger(PVLogger::GetLoggerObject("playerdiagnostics.pvaac_parser")),
iEndOfFileReached(false),
ipBSO(NULL)
{
iAACDuration = 0;
iAACFormat = EAACUnrecognized;
iLogger = PVLogger::GetLoggerObject("pvaacparser");
iDiagnosticLogger = PVLogger::GetLoggerObject("playerdiagnostics.pvaac_parser");

iTotalNumFramesRead = 0;
iEndOfFileReached = false;
ipBSO = NULL;
iFirstTime = false;
}

//----------------------------------------------------------------------------
Expand Down

0 comments on commit 806a89c

Please sign in to comment.