sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef CHAR_A3F_DEVSOUND_COMPLIANCESUITECONSTANTS_H sl@0: #define CHAR_A3F_DEVSOUND_COMPLIANCESUITECONSTANTS_H sl@0: sl@0: sl@0: // constant declarations sl@0: const TInt KMaxStringLength = 255; // Used to define DTMF length sl@0: const TInt KSizeBuf = 256; sl@0: const TInt KMicrosecsInTenSec = 10000000; sl@0: const TInt KMicroSecsInOneSec = 1000000; sl@0: const TInt KMicroSecsTwoSec = 2000000; sl@0: const TInt KMinimumPriority = -100; sl@0: const TInt KMaximumPriority = 100; sl@0: const TInt KFourCCMaxBitDisplacement = 24; sl@0: const TInt K8Bits = 8; sl@0: const TInt KTFourCC = 4; sl@0: const TInt KMaxSampleRateStringLength = 21; sl@0: const TInt KMaxChannelsStringLength = 10; sl@0: const TInt KExtraVolume = 50; sl@0: // To compute elapsed time for some timed test cases sl@0: const TInt64 KPlayVarianceTime = 1500000; // 1.5 seconds sl@0: const TInt KMaxSpeakerBalanceValue = 100; sl@0: const TInt KMinSpeakerBalanceValue = 0; sl@0: const TInt KMaxRecordBalanceValue = 100; sl@0: sl@0: sl@0: _LIT(KMsgDeleteDevsound, "---- Deleting DevSound object ----"); sl@0: _LIT(KMsgErrorGetParameter,"Error in getting parameter %S from INI file"); sl@0: _LIT(KMsgErrorDevSoundCallback,"DevSound called %S() callback with error = %d"); sl@0: _LIT(KMsgErrorFourccLength,"Error in getting parameter length from INI file %d"); sl@0: sl@0: _LIT(KInitializeCompleteText, "InitializeComplete"); sl@0: _LIT(KPlayErrorText, "PlayError"); sl@0: _LIT(KRecordErrorText, "RecordError"); sl@0: _LIT(KToneFinishedText, "ToneFinished"); sl@0: sl@0: // Section error name keys sl@0: _LIT(KExpectedError, "ExpectedError"); sl@0: sl@0: _LIT(KEMMFSampleRate8000Hz,"EMMFSampleRate8000Hz"); sl@0: _LIT(KEMMFSampleRate11025Hz,"EMMFSampleRate11025Hz"); sl@0: _LIT(KEMMFSampleRate16000Hz,"EMMFSampleRate16000Hz"); sl@0: _LIT(KEMMFSampleRate22050Hz,"EMMFSampleRate22050Hz"); sl@0: _LIT(KEMMFSampleRate32000Hz,"EMMFSampleRate32000Hz"); sl@0: _LIT(KEMMFSampleRate44100Hz,"EMMFSampleRate44100Hz"); sl@0: _LIT(KEMMFSampleRate48000Hz,"EMMFSampleRate48000Hz"); sl@0: _LIT(KEMMFSampleRate88200Hz,"EMMFSampleRate88200Hz"); sl@0: _LIT(KEMMFSampleRate96000Hz,"EMMFSampleRate96000Hz"); sl@0: _LIT(KEMMFSampleRate12000Hz,"EMMFSampleRate12000Hz"); sl@0: _LIT(KEMMFSampleRate24000Hz,"EMMFSampleRate24000Hz"); sl@0: _LIT(KEMMFSampleRate64000Hz,"EMMFSampleRate64000Hz"); sl@0: sl@0: _LIT(KEMMFMono,"EMMFMono"); sl@0: _LIT(KEMMFStereo,"EMMFStereo"); sl@0: sl@0: // Section name keys sl@0: _LIT(KSampleRate, "SampleRate"); sl@0: _LIT(KChannel, "Channel"); sl@0: _LIT(KPriority, "Priority"); sl@0: _LIT(KVolume, "Volume"); sl@0: _LIT(KExVolume, "ExVolume"); sl@0: _LIT(KGain, "Gain"); sl@0: _LIT(KExGain, "ExGain"); sl@0: _LIT(KVolumeRamp, "VolumeRamp"); sl@0: _LIT(KRepeatCount, "RepeatCount"); sl@0: _LIT(KRepeatTrailingSilence, "RepeatTrailingSilence"); sl@0: _LIT(KToneOnLength, "ToneOnLength"); sl@0: _LIT(KToneOffLength, "ToneOffLength"); sl@0: _LIT(KPauseLength, "PauseLength"); sl@0: _LIT(KFilename, "Filename"); sl@0: _LIT(KOtherFilename, "OtherFilename"); sl@0: _LIT(KDuration, "Duration"); sl@0: _LIT(KFrequencyTone1, "FrequencyTone1"); sl@0: _LIT(KFrequencyTone2, "FrequencyTone2"); sl@0: _LIT(KDTMFString, "DTMFString"); sl@0: _LIT(KInvalidToneSequence,"InvalidToneSequence"); sl@0: _LIT(KLSpeakerBalance, "LSpeakerBalance"); sl@0: _LIT(KRSpeakerBalance, "RSpeakerBalance"); sl@0: _LIT(KLRecordBalance, "LRecordBalance"); sl@0: _LIT(KRRecordBalance, "RRecordBalance"); sl@0: _LIT(KExLSpeakerBalance, "ExLSpeakerBalance"); sl@0: _LIT(KExRSpeakerBalance, "ExRSpeakerBalance"); sl@0: _LIT(KExLRecordBalance, "ExLRecordBalance"); sl@0: _LIT(KExRRecordBalance, "ExRRecordBalance"); sl@0: _LIT(KFourccCode, "FourccCode"); sl@0: _LIT(KExSamplesPlayed, "ExSamplesPlayed"); sl@0: _LIT(KExSamplesRecorded, "ExSamplesRecorded"); sl@0: _LIT(KExCapChannels, "ExCapChannels"); sl@0: _LIT(KExCapRate, "ExCapRate"); sl@0: sl@0: sl@0: enum TPanicCodes sl@0: { sl@0: EFsmIncorrectErrorPassed = 0, sl@0: EInvalidCallbackCall sl@0: }; sl@0: sl@0: // DevSound events sl@0: enum TMmfDevSoundEvent sl@0: { sl@0: EEventInitialize = 0, sl@0: EEventInitComplete, sl@0: EEventBTBF, sl@0: EEventBTBE, sl@0: EResourceAvailable, sl@0: EEventTimerComplete sl@0: }; sl@0: sl@0: // DevSound states sl@0: enum TMmfDevSoundState sl@0: { sl@0: EStateInitial = 0, sl@0: EStateCreated, sl@0: EStateInitializing, sl@0: EStatePlaying, sl@0: EStateRecording, sl@0: EStatePause, sl@0: EStateResumePlaying sl@0: }; sl@0: sl@0: // User defined "devSound client" error codes sl@0: enum TMmfDevSoundClientErrorCodes sl@0: { sl@0: EInvalidClientFSMEvent = 1, sl@0: EInvalidClientFSMState, sl@0: EReadFileErrorInClient, sl@0: EWriteFileErrorInClient sl@0: }; sl@0: sl@0: // Panic function sl@0: static void Panic(const TDesC &aCategory, TInt aReason) sl@0: { sl@0: User::Panic(aCategory, aReason); sl@0: } sl@0: sl@0: #ifdef MM_TB101_L sl@0: // Valid data for tone sequence. This code should be used for non-ref tests. This is a valid tone sequence for HW sl@0: const TUint8 KFixedSequenceTestSequenceDataX[]= sl@0: { sl@0: 0x02, 0x4A, 0x3A, 0x69, 0x39, 0xBD, 0xAD, 0xA5, sl@0: 0x84, 0x81, 0xD1, 0xD5, 0xB9, 0x94, 0x04, 0x00, sl@0: 0x27, 0x34, 0x41, 0x0B, 0x2A, 0x82, 0x68, 0x51, sl@0: 0x72, 0x19, 0x22, 0xC9, 0x21, 0x47, 0x10, 0x4C, sl@0: 0x85, 0x48, 0x71, 0x06, 0x90, 0x48, 0x85, 0x48, sl@0: 0x68, 0x20, 0x00 sl@0: }; sl@0: #else sl@0: // Valid data for tone sequence for reference platform. Below tone data may not work for HW devices sl@0: const TUint8 KFixedSequenceTestSequenceDataX[]= sl@0: { sl@0: 0x53, 0x51, 0x4E, 0x43, // HEADER sl@0: 0xFE, 0xFF, // -2 STARTLOOP INDICATOR sl@0: 0x0A, 0x00, // Number of times that the sequence will be played sl@0: /* Tone Data constitutes the following: sl@0: ToneDur, Freq1, Vol1, Freq2 Vol2 sl@0: The sequence is arranged in blocks of 8 bits to represent 16 bit values, sl@0: which allows more dynamic range, frequency and time values. sl@0: The tag Low and High mean low and high byte block. sl@0: Low Hi Low Hi Low Hi Low Hi Low Hi sl@0: */ sl@0: 0x64, 0x00, 0xB8, 0x01, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0xD2, 0x01, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0xEE, 0x01, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0x0B, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0x2A, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0x4B, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0x6E, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0x93, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0xBA, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0xE4, 0x02, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0x3F, 0x03, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0x70, 0x03, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0xA4, 0x03, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0xDC, 0x03, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: 0x64, 0x00, 0x17, 0x04, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, sl@0: // Silence sl@0: // ToneDur, Freq1, Vol1, Freq2 Vol2 sl@0: 0x70, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, sl@0: 0xFD, 0xFF, // -3 ENDOFLOOP INDICATOR sl@0: // Another silence sl@0: // ToneDur, Freq1, Vol1, Freq2 Vol2 sl@0: 0x70, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, sl@0: 0xFF, 0xFF // -1 SEQ_CMD_RET INDICATOR sl@0: }; sl@0: sl@0: sl@0: #endif//#if defined(MM_TB101_L) sl@0: sl@0: sl@0: #endif // CHAR_A3F_DEVSOUND_COMPLIANCESUITECONSTANTS_H sl@0: