os/mm/mm_plat/video_reclaim_extbuffers_ci/inc/reclaimextbuffersci.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2005 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:  Video play reclaim external buffers custom interface. 
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef DEVVIDEORECLAIMEXTBUFFERSCUSTOMINTERFACE_H
    21 #define DEVVIDEORECLAIMEXTBUFFERSCUSTOMINTERFACE_H
    22 
    23 
    24 #include <mmf/common/mmfvideo.h>
    25 
    26 /** 
    27 DevVideo Reclaim External Buffers Custom Interface UID.
    28 
    29 @publishedPartner
    30 @prototype
    31 */
    32 const TUid KUidMMFVideoReclaimExtBuffersControl = { 0x10204C33 };	
    33 
    34 /**
    35 Video play reclaim external buffers custom interface. This interface is used in situation 
    36 when the buffers used at the output of the decoder are shared with the rest of the 
    37 pipeline (post-processor and display-posting surface). This interface can be used by a 
    38 decoder H/W device to signal the situations when buffers will be unavailable to 
    39 the rest of the pipeline. Typically implemented by the post processor and used by a decoder.
    40 
    41 
    42 @publishedPartner
    43 @prototype
    44 */
    45 class MMmfVideoReclaimExtBuffersControl
    46 	{
    47 	public:
    48 
    49 	/**
    50 		This method is called when the owner of the buffers needs to free the buffers. 
    51         In order to do it in a clean way it needs to notify this to the other parties using the buffers
    52 	@param 
    53 	*/
    54 	virtual void MmvrebReclaimExtBuffers() = 0;
    55 
    56 	};
    57 
    58 
    59 #endif // DEVVIDEORECLAIMEXTBUFFERSCUSTOMINTERFACE_H
    60