mpxplugins/serviceplugins/playbackplugins/localaudio/data/101ffc04.rss
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Resource file.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <ecom/registryinfo.rh>
       
    20 
       
    21 #include <mpxplaybackplugin.hrh>
       
    22 
       
    23 /**
       
    24  * The opaque_data syntax is made up of three parts: 
       
    25  * a list of Uids for resolving the view plugin, feature flags, priority.
       
    26  * 
       
    27  * <p>uid1;uid2;uid3</p>
       
    28  *  uid*: Supported plugin types.
       
    29  *  E.g. if podcast plugin may support music plugin as well, KMPXColPluginMusic
       
    30  *
       
    31  * <t>uid</t>
       
    32  *  uid: plugin type uid.
       
    33  *  E.g. for music plugin will be: 0x101FFCDA
       
    34  *
       
    35  * <f>flags</f> [optional]
       
    36  *  flags: sum of the required feature flags, not used now
       
    37  *
       
    38  * <i>priority</i> [optional]
       
    39  *  priority: a value of type TMPXCollectionPluginPriorities. This value determines
       
    40  *  the returning order when several plugins can support the same set of Uids. 
       
    41  *  Default value of this field is EMPXCollectionPluginPriorityNormal.
       
    42  */
       
    43 
       
    44 RESOURCE REGISTRY_INFO theInfo
       
    45     {
       
    46     dll_uid = 0x101FFC04;
       
    47 
       
    48     interfaces = 
       
    49         {
       
    50         INTERFACE_INFO
       
    51             {
       
    52             interface_uid = KMPXPlaybackPluginInterfaceUid;
       
    53             implementations = 
       
    54                 {
       
    55                 IMPLEMENTATION_INFO
       
    56                     {
       
    57                     implementation_uid = 0x101FFC06;
       
    58                     version_no = 1;
       
    59                     display_name = "Local";
       
    60                     default_data = "audio/mp3;audio/3gp;audio/3gpp2;audio/x-ms-wma;x-caf-audio/x-ms-wma;audio/mpeg;"
       
    61                                    "audio/aac;audio/x-mp3;audio/mp4;audio/wav;audio/x-wav;audio/x-au;audio/au";
       
    62                     opaque_data = "<s><e>.mp3;.aac;.3gp;.3gpp;.3g2;.3gpp2;.mp4;.wav;.wma;.asf;.odf;.dcf;.m4a"
       
    63                                   "<t>"EPbLocal"</t>"
       
    64                                   "<i>"EMPXPlaybackPluginPriorityHighest"</i>";
       
    65                     }
       
    66                 };
       
    67             }
       
    68         };
       
    69     }
       
    70             
       
    71 
       
    72 
       
    73