mmfenh/advancedaudiocontroller/audiocontrollerpluginsvariant/3gpaudiorecordcontroller/Data/3GPAudioRecordControllerResource.rss
changeset 0 71ca22bcf22a
child 7 709f89d8c047
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  3GPAudioRecordControllerPlugin Resource file.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 //  INCLUDES
       
    20 #include "3GPAudioRecordControllerResource.rh"
       
    21 
       
    22 //  RESOURCE DEFINITIONS 
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 //   
       
    26 // aacEncoder
       
    27 // AAC encoder resource file.
       
    28 //
       
    29 // -----------------------------------------------------------------------------
       
    30 //
       
    31 RESOURCE ADVANCED_AUDIO_CONTROLLER_RESOURCE aacEncoder
       
    32     {
       
    33     shared_buffer_max_num = 2;
       
    34     shared_buffer_max_size = 20480;
       
    35     sampling_rate = EAapSampleRate8000Hz;
       
    36     stereo_support = 1;
       
    37     metadata_support = EAapMetadataSupportFalse;
       
    38 
       
    39     configuration_parameters =
       
    40     		{
       
    41     		AAC_ENCODER_CONFIG_PARAMS
       
    42     			{
       
    43     			bitrate = 64000;            // Default bitrate
       
    44      			sampling_frequency = 48000;  // Default sampling frequency  			
       
    45      			tool_flag = 0;
       
    46     			num_of_channels = 1;        // 1 = mono, 2 = stereo
       
    47     			use_format = 0;             // Raw
       
    48     			fill_buffer = 0;
       
    49     			supported_bit_rates = 
       
    50     				{
       
    51     				MODE { bit_rate = 32000; },
       
    52     				MODE { bit_rate = 64000; },
       
    53     				MODE { bit_rate = 96000; },
       
    54     				MODE { bit_rate = 128000; },
       
    55      				MODE { bit_rate = 160000; },
       
    56                     MODE { bit_rate = 192000; },
       
    57                     MODE { bit_rate = 224000; },
       
    58     				MODE { bit_rate = 256000; }
       
    59     				};
       
    60     			supported_sample_rates = 
       
    61     				{
       
    62     				SAMPLERATE { sample_rate = 8000; },
       
    63     				SAMPLERATE { sample_rate = 11025; },
       
    64     				SAMPLERATE { sample_rate = 12000; },
       
    65      				SAMPLERATE { sample_rate = 16000; },
       
    66     				SAMPLERATE { sample_rate = 22050; },
       
    67     				SAMPLERATE { sample_rate = 24000; },
       
    68     				SAMPLERATE { sample_rate = 32000; },
       
    69     				SAMPLERATE { sample_rate = 44100; },
       
    70     				SAMPLERATE { sample_rate = 48000; }
       
    71    				};
       
    72     			}
       
    73     		};
       
    74     }
       
    75     
       
    76 
       
    77 
       
    78 // End of File
       
    79 
       
    80