Update contrib.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "tsu_3gplibrary_parse_and_check.h"
18 _LIT( KAvcBaseline, "Baseline" );
19 _LIT( KAvcMain, "Main" );
20 _LIT( KAvcExtended, "Extended" );
21 _LIT( KAvcHigh, "High" );
23 const static TDesC* KAvcProfileNames[] = {
30 const TUint16 KAudioModeSet = 0x81ff;
32 C3GPLibParseAndCheckTypes::C3GPLibParseAndCheckTypes()
36 TVerdict C3GPLibParseAndCheckTypes::doTestStepPreambleL()
38 // ensure test always starts with clean results
39 SetTestStepResult(EPass);
40 SetTestStepError(KErrNone);
43 _LIT(KTestFileName, "filepath");
45 _LIT(KTestFileName, "filepathHw");
49 if (!GetStringFromConfig(ConfigSection(), KTestFileName, inputFilePath))
51 ERR_PRINTF1(_L("Error to read data from ini file."));
52 SetTestStepResult(ETestSuiteError);
53 return TestStepResult();
56 if (inputFilePath.Length() == 0)
58 ERR_PRINTF1(_L("Error to read input file path from ini file."));
59 SetTestStepResult(ETestSuiteError);
60 return TestStepResult();
64 if (!GetIntFromConfig(ConfigSection(), _L("audioType"), temp))
66 ERR_PRINTF1(_L("expected audio type not specified"));
67 SetTestStepResult(ETestSuiteError);
68 return TestStepResult();
72 iExpectedAudioType = (T3GPAudioType)temp;
75 if (!GetIntFromConfig(ConfigSection(), _L("videoType"), temp))
77 ERR_PRINTF1(_L("expected video type not specified"));
78 SetTestStepResult(ETestSuiteError);
79 return TestStepResult();
83 iExpectedVideoType = (T3GPVideoType)temp;
87 iInputFilePath.CreateL(inputFilePath);
89 iParser = C3GPParse::NewL();
91 return TestStepResult();
94 TVerdict C3GPLibParseAndCheckTypes::doTestStepL()
96 // ensure test always starts with clean results
97 SetTestStepResult(EPass);
98 SetTestStepError(KErrNone);
100 INFO_PRINTF2(_L("ParseFileL: file=%S"), &iInputFilePath);
101 TRAPD(err, ParseAndCheckFileL(iInputFilePath));
102 INFO_PRINTF2(_L("ParseFileL returns: err = %d"), err);
103 if( err != KErrNone )
105 SetTestStepError( err );
106 SetTestStepResult( EFail );
112 return TestStepResult();
115 TVerdict C3GPLibParseAndCheckTypes::doTestStepPostambleL()
117 iInputFilePath.Close();
121 return TestStepResult();
124 void C3GPLibParseAndCheckTypes::ParseAndCheckFileL(const TDesC& aInputFile)
126 INFO_PRINTF1(_L("C3GPLibParseFileMainHigh::ParseFileL START"));
130 err = iParser->Open(aInputFile);
134 ERR_PRINTF2(_L("C3GPParse::Open() returns %d"), err);
139 // Retrieve Video Properties
141 T3GPVideoPropertiesBase* videoProperties = NULL;
142 CleanupStack::PushL(videoProperties);
144 RBuf8 videoDecoderSpecificInfo;
145 CleanupClosePushL(videoDecoderSpecificInfo);
147 TUint videoLengthInMs = 0;
149 err = ParseVideoProperties(*iParser, videoDecoderSpecificInfo, videoProperties, videoLengthInMs);
150 if ( err != KErrNone )
152 ERR_PRINTF2(_L("ParseVideoProperties failed: err = %d"), err);
157 // Retrieve Audio Properties
159 T3GPAudioPropertiesBase* audioProperties = NULL;
160 CleanupStack::PushL(audioProperties);
162 RBuf8 audioDecoderSpecificInfo;
163 CleanupClosePushL(audioDecoderSpecificInfo);
165 TUint audioLengthInMs = 0;
166 err = ParseAudioProperties(*iParser, audioDecoderSpecificInfo, audioProperties, audioLengthInMs);
167 if( err != KErrNone )
169 ERR_PRINTF2(_L("ParseAudioProperties failed: err = %d"), err);
173 if (!videoProperties && !audioProperties)
175 ERR_PRINTF1(_L("File contains neither video nor audio data"));
176 User::Leave(KErrNotFound);
180 // Check that types were as expected
182 if( audioProperties->iType != iExpectedAudioType )
184 INFO_PRINTF3(_L("Audio type check failed (expected %d, got %d)"), iExpectedAudioType, audioProperties->iType );
185 SetTestStepResult( EFail );
188 if( videoProperties->iType != iExpectedVideoType )
190 INFO_PRINTF3(_L("Video type check failed (expected %d, got %d)"), iExpectedVideoType, videoProperties->iType );
191 SetTestStepResult( EFail );
198 CleanupStack::PopAndDestroy(4);
199 // audioDecoderSpecificInfo
201 // videoDecoderSpecificInfo
204 err = iParser->Complete();
207 ERR_PRINTF1(_L("aParser->Complete() failed"));
211 INFO_PRINTF1(_L("C3GPLibParseFileMainHigh::ParseFileL END"));
214 TInt C3GPLibParseAndCheckTypes::ParseVideoProperties(C3GPParse& aParser,
215 RBuf8& aDecoderSpecificInfo,
216 T3GPVideoPropertiesBase*& aProperties,
227 TInt err = aParser.GetVideoProperties(type, aLengthInMs, frameRate, avgBitRate, size, timeScale);
228 if ( err != KErrNone )
230 ERR_PRINTF2(_L("aParser->GetVideoProperties failed: %d"), err);
238 INFO_PRINTF1(_L("Video Type: Mpeg4"));
239 err = GetVideoDecoderSpecificInfo(aDecoderSpecificInfo);
242 aProperties = new T3GPVideoPropertiesMpeg4Video(timeScale, size,
243 64000, avgBitRate, aDecoderSpecificInfo);
246 ERR_PRINTF1(_L("T3GPVideoPropertiesMpeg4Video allocation failed"));
253 case E3GPH263Profile0:
254 case E3GPH263Profile3:
256 INFO_PRINTF1(_L("Video Type: H263"));
257 T3GPVideoPropertiesH263::TProfile profile = T3GPVideoPropertiesH263::EProfile0;
258 if (type == E3GPH263Profile3)
260 profile = T3GPVideoPropertiesH263::EProfile3;
264 err = iParser->GetH263VideoLevel(videoLevel);
265 if( err != KErrNone )
267 ERR_PRINTF1(_L("aParser->GetH263VideoLevel() failed"));
271 aProperties = new T3GPVideoPropertiesH263(timeScale, size, videoLevel, profile);
274 ERR_PRINTF1(_L("T3GPVideoPropertiesH263 allocation failed"));
282 case E3GPAvcProfileBaseline:
283 case E3GPAvcProfileMain:
284 case E3GPAvcProfileExtended:
285 case E3GPAvcProfileHigh:
287 err = GetVideoDecoderSpecificInfo(aDecoderSpecificInfo);
290 INFO_PRINTF2(_L("Video Type: Avc Profile %S"), KAvcProfileNames[type-E3GPAvcProfileBaseline] );
291 aProperties = new T3GPVideoPropertiesAvc(timeScale, size, aDecoderSpecificInfo);
294 ERR_PRINTF1(_L("T3GPVideoPropertiesAvc allocation failed"));
299 // T3GPVideoPropertiesAvc defaults the video type to AVC baseline profile.
300 // Need to override that here because we want to check for the specific
301 // profile in this test.
302 aProperties->iType = type;
309 INFO_PRINTF1(_L("Video Type: None"));
313 err = KErrNotSupported;
317 if( err == KErrNone )
319 INFO_PRINTF1(_L("**********"));
320 INFO_PRINTF2(_L("Length In Miliseconds = %d"), aLengthInMs);
321 INFO_PRINTF2(_L("Frame Rate = %f"), frameRate);
322 INFO_PRINTF2(_L("Average Bit Rate = %d"), avgBitRate);
323 INFO_PRINTF2(_L("Frame Width = %d"), size.iWidth);
324 INFO_PRINTF2(_L("Frame Height = %d"), size.iHeight);
325 INFO_PRINTF2(_L("Time Scale = %d"), timeScale);
326 INFO_PRINTF1(_L("**********"));
331 TInt C3GPLibParseAndCheckTypes::ParseAudioProperties(C3GPParse& aParser,
332 RBuf8& aAudioDecoderSpecificInfo,
333 T3GPAudioPropertiesBase*& aAudioProperties,
340 TUint audioAvgBitRate;
343 TInt err = aParser.GetAudioProperties(type, aLength, audioFPS, audioAvgBitRate, timeScale);
344 if( err != KErrNone )
346 ERR_PRINTF2(_L("GetAudioProperties() failed: %d"), err);
354 INFO_PRINTF1(_L("Audio Type: Mpeg4"));
355 err = GetAudioDecoderSpecificInfo(aAudioDecoderSpecificInfo);
358 aAudioProperties = new T3GPAudioPropertiesMpeg4Audio(timeScale, aAudioDecoderSpecificInfo);
359 if( !aAudioProperties )
361 ERR_PRINTF1(_L("T3GPAudioPropertiesMpeg4Audio allocation failed"));
370 INFO_PRINTF1(_L("Audio Type: Qcelp13K"));
371 T3GPQcelpStorageMode mode;
372 err = iParser->GetQcelpStorageMode(mode);
375 ERR_PRINTF1(_L("GetQcelpStorageMode failed"));
379 if( mode == E3GPMP4AudioDescriptionBox)
381 err = GetAudioDecoderSpecificInfo(aAudioDecoderSpecificInfo);
382 aAudioProperties = new T3GPAudioPropertiesQcelp(timeScale, audioFPS, aAudioDecoderSpecificInfo);
386 aAudioProperties = new T3GPAudioPropertiesQcelp(timeScale, audioFPS);
389 if( !aAudioProperties )
391 ERR_PRINTF1(_L("T3GPAudioPropertiesQcelp allocation failed"));
400 INFO_PRINTF1(_L("Audio Type: AMR NB"));
401 aAudioProperties = new T3GPAudioPropertiesAmr(timeScale, audioFPS, KAudioModeSet, T3GPAudioPropertiesAmr::EAmrNB);
402 if( !aAudioProperties )
404 ERR_PRINTF1(_L("T3GPAudioPropertiesAmr allocation failed"));
412 INFO_PRINTF1(_L("Audio Type: AMR WB"));
413 aAudioProperties = new T3GPAudioPropertiesAmr(timeScale, audioFPS, KAudioModeSet, T3GPAudioPropertiesAmr::EAmrWB);
414 if( !aAudioProperties )
416 ERR_PRINTF1(_L("T3GPAudioPropertiesAmr allocation failed"));
423 INFO_PRINTF1(_L("Audio Type: None"));
427 INFO_PRINTF1(_L("Audio Type: Unrecognized!"));
428 err = KErrNotSupported;
435 TInt C3GPLibParseAndCheckTypes::GetAudioDecoderSpecificInfo(RBuf8& aBuffer)
440 TInt err = iParser->GetAudioDecoderSpecificInfoSize(size);
441 if( err != KErrNone )
443 ERR_PRINTF2(_L("GetAudioDecoderSpecificInfoSize() failed: %d"), err);
447 err = aBuffer.Create(size);
448 if( err != KErrNone )
450 ERR_PRINTF1(_L("Create buffer failed"));
454 err = iParser->GetAudioDecoderSpecificInfo(aBuffer);
455 if( err != KErrNone )
457 ERR_PRINTF2(_L("GetAudioDecoderSpecificInfo() failed: %d"), err);
463 TInt C3GPLibParseAndCheckTypes::GetVideoDecoderSpecificInfo(RBuf8& aBuffer)
466 TInt err = iParser->GetVideoDecoderSpecificInfoSize(size);
469 ERR_PRINTF1(_L("GetVideoDecoderSpecificInfoSize() failed"));
473 err = aBuffer.Create(size);
476 ERR_PRINTF1(_L("Create buffer failed"));
480 err = iParser->GetVideoDecoderSpecificInfo(aBuffer);
481 if( err != KErrNone )
483 ERR_PRINTF1(_L("GetVideoDecoderSpecificInfo() failed"));