sl@0: // Copyright (c) 2007-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: // structures that contain information for video renderer sl@0: // sl@0: // sl@0: sl@0: #ifndef VIDEORENDERER_RH sl@0: #define VIDEORENDERER_RH sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @prototype sl@0: sl@0: The formats supported by video renderer/GCE sl@0: */ sl@0: sl@0: STRUCT SUPPORTED_FORMATS sl@0: { sl@0: STRUCT formats[]; sl@0: } sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @prototype sl@0: sl@0: A format item of type TVideoRendererPixelFormat sl@0: */ sl@0: STRUCT SUPPORTED_FORMAT sl@0: { sl@0: LONG format; sl@0: } sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @prototype sl@0: sl@0: Default delay value and maxinum allowed delay in microseconds for timed mode sl@0: */ sl@0: STRUCT TIMER_INFO sl@0: { sl@0: LONG default_delay; // default delay for GCE to display a buffer sl@0: LONG max_delay; // max delay allowed before video renderer skip a buffer sl@0: } sl@0: sl@0: #endif /* VIDEORENDERER_RH */