FIX: [stagefright] dyload the whole codec to prevent potential future api breakage
[vuplus_xbmc] / xbmc / cores / dvdplayer / DVDCodecs / Video / libstagefrightICS / StageFrightInterface.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2013 Team XBMC
5  *      http://xbmc.org
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, see
19  *  <http://www.gnu.org/licenses/>.
20  *
21  */
22
23 #include "DVDVideoCodec.h"
24
25 class CStageFrightVideo;
26 class CWinSystemEGL;
27 class CAdvancedSettings;
28
29 extern "C"
30 {
31   void* create_stf(CWinSystemEGL* windowing, CAdvancedSettings* advsettings);
32   void destroy_stf(void*);
33
34   bool stf_Open(void*, CDVDStreamInfo &hints);
35   void stf_Close(void*);
36   int  stf_Decode(void*, uint8_t *pData, int iSize, double dts, double pts);
37   void stf_Reset(void*);
38   bool stf_GetPicture(void*, DVDVideoPicture *pDvdVideoPicture);
39   bool stf_ClearPicture(void*, DVDVideoPicture* pDvdVideoPicture);
40   void stf_SetDropState(void*, bool bDrop);
41   void stf_SetSpeed(void*, int iSpeed);
42
43   void stf_LockBuffer(void*, EGLImageKHR eglimg);
44   void stf_ReleaseBuffer(void*, EGLImageKHR eglimg);
45 }