mmappfw_plat/mpx_common_api/inc/mpxmediacontainerdefs.h
changeset 0 a2952bb97e68
equal deleted inserted replaced
-1:000000000000 0:a2952bb97e68
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Definitions for media type containing other media objects
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CMPXMEDIACONTAINERDEFS_H
       
    21 #define CMPXMEDIACONTAINERDEFS_H
       
    22 
       
    23 #include <e32base.h>
       
    24 #include <mpxattribute.h>
       
    25 
       
    26 /**
       
    27 *  Content ID identifying conatiner category. This media object
       
    28 *  contains other media objects contained in a CMPXMediaArray  
       
    29 */
       
    30 
       
    31 const TInt KMPXMediaIdContainer=0x101FFC43;
       
    32 
       
    33 /**
       
    34 *  Attributes supported for KMPXMediaIdContainer
       
    35 */    
       
    36 const TMPXAttributeData KMPXMediaArrayContents = {KMPXMediaIdContainer, 0x01}; // CMPXMediaArray
       
    37 const TMPXAttributeData KMPXMediaArrayCount = {KMPXMediaIdContainer, 0x02}; // TInt
       
    38 const TMPXAttributeData KMPXMediaArrayAll = {KMPXMediaIdContainer, 0xffffffff};
       
    39 
       
    40 /** 
       
    41 *  Attributes supported for KMPXMediaIdContainer.
       
    42 *
       
    43 *  @deprecated Use the above consts
       
    44 */    
       
    45 enum 
       
    46     {
       
    47     EMPXMediaArrayContents=0x01, // CMPXMediaArray
       
    48     EMPXMediaArrayCount=0x02, // TInt
       
    49     EMPXMediaArrayAll=0xffffffff
       
    50     };
       
    51      
       
    52   
       
    53 #endif // CMPXMEDIACONTAINERDEFS_H