os/mm/mmswadaptation/videorenderer/inc/videorenderer.rh
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // structures that contain information for video renderer
    15 // 
    16 //
    17 
    18 #ifndef VIDEORENDERER_RH
    19 #define VIDEORENDERER_RH
    20 
    21 /**
    22 @publishedPartner
    23 @prototype
    24 
    25 The formats supported by video renderer/GCE
    26 */
    27 
    28 STRUCT SUPPORTED_FORMATS
    29 	{
    30 	STRUCT formats[];
    31 	}
    32 
    33 /**
    34 @publishedPartner
    35 @prototype
    36 
    37 A format item of type TVideoRendererPixelFormat
    38 */
    39 STRUCT SUPPORTED_FORMAT
    40 	{
    41 	LONG format;
    42 	}
    43 
    44 /**
    45 @publishedPartner
    46 @prototype
    47 
    48 Default delay value and maxinum allowed delay in microseconds for timed mode
    49 */
    50 STRUCT TIMER_INFO
    51 	{
    52 	LONG default_delay;	// default delay for GCE to display a buffer
    53 	LONG max_delay;		// max delay allowed before video renderer skip a buffer
    54 	}
    55 
    56 #endif /* VIDEORENDERER_RH */