First public contribution.
2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Video play reclaim external buffers custom interface.
20 #ifndef DEVVIDEORECLAIMEXTBUFFERSCUSTOMINTERFACE_H
21 #define DEVVIDEORECLAIMEXTBUFFERSCUSTOMINTERFACE_H
24 #include <mmf/common/mmfvideo.h>
27 DevVideo Reclaim External Buffers Custom Interface UID.
32 const TUid KUidMMFVideoReclaimExtBuffersControl = { 0x10204C33 };
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.
45 class MMmfVideoReclaimExtBuffersControl
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
54 virtual void MmvrebReclaimExtBuffers() = 0;
59 #endif // DEVVIDEORECLAIMEXTBUFFERSCUSTOMINTERFACE_H