os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_compliancesuiteconstants.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_compliancesuiteconstants.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,205 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef CHAR_A3F_DEVSOUND_COMPLIANCESUITECONSTANTS_H
1.20 +#define CHAR_A3F_DEVSOUND_COMPLIANCESUITECONSTANTS_H
1.21 +
1.22 +
1.23 +// constant declarations
1.24 +const TInt KMaxStringLength = 255; // Used to define DTMF length
1.25 +const TInt KSizeBuf = 256;
1.26 +const TInt KMicrosecsInTenSec = 10000000;
1.27 +const TInt KMicroSecsInOneSec = 1000000;
1.28 +const TInt KMicroSecsTwoSec = 2000000;
1.29 +const TInt KMinimumPriority = -100;
1.30 +const TInt KMaximumPriority = 100;
1.31 +const TInt KFourCCMaxBitDisplacement = 24;
1.32 +const TInt K8Bits = 8;
1.33 +const TInt KTFourCC = 4;
1.34 +const TInt KMaxSampleRateStringLength = 21;
1.35 +const TInt KMaxChannelsStringLength = 10;
1.36 +const TInt KExtraVolume = 50;
1.37 +// To compute elapsed time for some timed test cases
1.38 +const TInt64 KPlayVarianceTime = 1500000; // 1.5 seconds
1.39 +const TInt KMaxSpeakerBalanceValue = 100;
1.40 +const TInt KMinSpeakerBalanceValue = 0;
1.41 +const TInt KMaxRecordBalanceValue = 100;
1.42 +
1.43 +
1.44 +_LIT(KMsgDeleteDevsound, "---- Deleting DevSound object ----");
1.45 +_LIT(KMsgErrorGetParameter,"Error in getting parameter %S from INI file");
1.46 +_LIT(KMsgErrorDevSoundCallback,"DevSound called %S() callback with error = %d");
1.47 +_LIT(KMsgErrorFourccLength,"Error in getting parameter length from INI file %d");
1.48 +
1.49 +_LIT(KInitializeCompleteText, "InitializeComplete");
1.50 +_LIT(KPlayErrorText, "PlayError");
1.51 +_LIT(KRecordErrorText, "RecordError");
1.52 +_LIT(KToneFinishedText, "ToneFinished");
1.53 +
1.54 +// Section error name keys
1.55 +_LIT(KExpectedError, "ExpectedError");
1.56 +
1.57 +_LIT(KEMMFSampleRate8000Hz,"EMMFSampleRate8000Hz");
1.58 +_LIT(KEMMFSampleRate11025Hz,"EMMFSampleRate11025Hz");
1.59 +_LIT(KEMMFSampleRate16000Hz,"EMMFSampleRate16000Hz");
1.60 +_LIT(KEMMFSampleRate22050Hz,"EMMFSampleRate22050Hz");
1.61 +_LIT(KEMMFSampleRate32000Hz,"EMMFSampleRate32000Hz");
1.62 +_LIT(KEMMFSampleRate44100Hz,"EMMFSampleRate44100Hz");
1.63 +_LIT(KEMMFSampleRate48000Hz,"EMMFSampleRate48000Hz");
1.64 +_LIT(KEMMFSampleRate88200Hz,"EMMFSampleRate88200Hz");
1.65 +_LIT(KEMMFSampleRate96000Hz,"EMMFSampleRate96000Hz");
1.66 +_LIT(KEMMFSampleRate12000Hz,"EMMFSampleRate12000Hz");
1.67 +_LIT(KEMMFSampleRate24000Hz,"EMMFSampleRate24000Hz");
1.68 +_LIT(KEMMFSampleRate64000Hz,"EMMFSampleRate64000Hz");
1.69 +
1.70 +_LIT(KEMMFMono,"EMMFMono");
1.71 +_LIT(KEMMFStereo,"EMMFStereo");
1.72 +
1.73 +// Section name keys
1.74 +_LIT(KSampleRate, "SampleRate");
1.75 +_LIT(KChannel, "Channel");
1.76 +_LIT(KPriority, "Priority");
1.77 +_LIT(KVolume, "Volume");
1.78 +_LIT(KExVolume, "ExVolume");
1.79 +_LIT(KGain, "Gain");
1.80 +_LIT(KExGain, "ExGain");
1.81 +_LIT(KVolumeRamp, "VolumeRamp");
1.82 +_LIT(KRepeatCount, "RepeatCount");
1.83 +_LIT(KRepeatTrailingSilence, "RepeatTrailingSilence");
1.84 +_LIT(KToneOnLength, "ToneOnLength");
1.85 +_LIT(KToneOffLength, "ToneOffLength");
1.86 +_LIT(KPauseLength, "PauseLength");
1.87 +_LIT(KFilename, "Filename");
1.88 +_LIT(KOtherFilename, "OtherFilename");
1.89 +_LIT(KDuration, "Duration");
1.90 +_LIT(KFrequencyTone1, "FrequencyTone1");
1.91 +_LIT(KFrequencyTone2, "FrequencyTone2");
1.92 +_LIT(KDTMFString, "DTMFString");
1.93 +_LIT(KInvalidToneSequence,"InvalidToneSequence");
1.94 +_LIT(KLSpeakerBalance, "LSpeakerBalance");
1.95 +_LIT(KRSpeakerBalance, "RSpeakerBalance");
1.96 +_LIT(KLRecordBalance, "LRecordBalance");
1.97 +_LIT(KRRecordBalance, "RRecordBalance");
1.98 +_LIT(KExLSpeakerBalance, "ExLSpeakerBalance");
1.99 +_LIT(KExRSpeakerBalance, "ExRSpeakerBalance");
1.100 +_LIT(KExLRecordBalance, "ExLRecordBalance");
1.101 +_LIT(KExRRecordBalance, "ExRRecordBalance");
1.102 +_LIT(KFourccCode, "FourccCode");
1.103 +_LIT(KExSamplesPlayed, "ExSamplesPlayed");
1.104 +_LIT(KExSamplesRecorded, "ExSamplesRecorded");
1.105 +_LIT(KExCapChannels, "ExCapChannels");
1.106 +_LIT(KExCapRate, "ExCapRate");
1.107 +
1.108 +
1.109 +enum TPanicCodes
1.110 + {
1.111 + EFsmIncorrectErrorPassed = 0,
1.112 + EInvalidCallbackCall
1.113 + };
1.114 +
1.115 +// DevSound events
1.116 +enum TMmfDevSoundEvent
1.117 + {
1.118 + EEventInitialize = 0,
1.119 + EEventInitComplete,
1.120 + EEventBTBF,
1.121 + EEventBTBE,
1.122 + EResourceAvailable,
1.123 + EEventTimerComplete
1.124 + };
1.125 +
1.126 +// DevSound states
1.127 +enum TMmfDevSoundState
1.128 + {
1.129 + EStateInitial = 0,
1.130 + EStateCreated,
1.131 + EStateInitializing,
1.132 + EStatePlaying,
1.133 + EStateRecording,
1.134 + EStatePause,
1.135 + EStateResumePlaying
1.136 + };
1.137 +
1.138 +// User defined "devSound client" error codes
1.139 +enum TMmfDevSoundClientErrorCodes
1.140 + {
1.141 + EInvalidClientFSMEvent = 1,
1.142 + EInvalidClientFSMState,
1.143 + EReadFileErrorInClient,
1.144 + EWriteFileErrorInClient
1.145 + };
1.146 +
1.147 +// Panic function
1.148 +static void Panic(const TDesC &aCategory, TInt aReason)
1.149 + {
1.150 + User::Panic(aCategory, aReason);
1.151 + }
1.152 +
1.153 +#ifdef MM_TB101_L
1.154 + // Valid data for tone sequence. This code should be used for non-ref tests. This is a valid tone sequence for HW
1.155 + const TUint8 KFixedSequenceTestSequenceDataX[]=
1.156 + {
1.157 + 0x02, 0x4A, 0x3A, 0x69, 0x39, 0xBD, 0xAD, 0xA5,
1.158 + 0x84, 0x81, 0xD1, 0xD5, 0xB9, 0x94, 0x04, 0x00,
1.159 + 0x27, 0x34, 0x41, 0x0B, 0x2A, 0x82, 0x68, 0x51,
1.160 + 0x72, 0x19, 0x22, 0xC9, 0x21, 0x47, 0x10, 0x4C,
1.161 + 0x85, 0x48, 0x71, 0x06, 0x90, 0x48, 0x85, 0x48,
1.162 + 0x68, 0x20, 0x00
1.163 + };
1.164 +#else
1.165 + // Valid data for tone sequence for reference platform. Below tone data may not work for HW devices
1.166 + const TUint8 KFixedSequenceTestSequenceDataX[]=
1.167 + {
1.168 + 0x53, 0x51, 0x4E, 0x43, // HEADER
1.169 + 0xFE, 0xFF, // -2 STARTLOOP INDICATOR
1.170 + 0x0A, 0x00, // Number of times that the sequence will be played
1.171 + /* Tone Data constitutes the following:
1.172 + ToneDur, Freq1, Vol1, Freq2 Vol2
1.173 + The sequence is arranged in blocks of 8 bits to represent 16 bit values,
1.174 + which allows more dynamic range, frequency and time values.
1.175 + The tag Low and High mean low and high byte block.
1.176 + Low Hi Low Hi Low Hi Low Hi Low Hi
1.177 + */
1.178 + 0x64, 0x00, 0xB8, 0x01, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.179 + 0x64, 0x00, 0xD2, 0x01, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.180 + 0x64, 0x00, 0xEE, 0x01, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.181 + 0x64, 0x00, 0x0B, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.182 + 0x64, 0x00, 0x2A, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.183 + 0x64, 0x00, 0x4B, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.184 + 0x64, 0x00, 0x6E, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.185 + 0x64, 0x00, 0x93, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.186 + 0x64, 0x00, 0xBA, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.187 + 0x64, 0x00, 0xE4, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.188 + 0x64, 0x00, 0x3F, 0x03, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.189 + 0x64, 0x00, 0x70, 0x03, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.190 + 0x64, 0x00, 0xA4, 0x03, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.191 + 0x64, 0x00, 0xDC, 0x03, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.192 + 0x64, 0x00, 0x17, 0x04, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00,
1.193 + // Silence
1.194 + // ToneDur, Freq1, Vol1, Freq2 Vol2
1.195 + 0x70, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1.196 + 0xFD, 0xFF, // -3 ENDOFLOOP INDICATOR
1.197 + // Another silence
1.198 + // ToneDur, Freq1, Vol1, Freq2 Vol2
1.199 + 0x70, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1.200 + 0xFF, 0xFF // -1 SEQ_CMD_RET INDICATOR
1.201 + };
1.202 +
1.203 +
1.204 +#endif//#if defined(MM_TB101_L)
1.205 +
1.206 +
1.207 +#endif // CHAR_A3F_DEVSOUND_COMPLIANCESUITECONSTANTS_H
1.208 +