Tizen release 1.0
[apps/core/preloaded/video-player.git] / include / mp-video-view-ctrl.h
1 /*
2  * Copyright   2000 - 2012 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * This file is part of org.tizen.video-player
5  * Written by  JongDong Lee <jongdong.lee@samsung.com>, ChangSun Lee <cs78.lee@samsung.com>
6  *
7  * PROPRIETARY/CONFIDENTIAL
8  *
9  * This software is the confidential and proprietary information of SAMSUNG ELECTRONICS ("Confidential Information").
10  * You shall not disclose such Confidential Information and shall
11  * use it only in accordance with the terms of the license agreement you entered into with SAMSUNG ELECTRONICS.
12  * SAMSUNG make no representations or warranties about the suitability
13  * of the software, either express or implied, including but not
14  * limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement.
15  * SAMSUNG shall not be liable for any damages suffered by licensee as
16  * a result of using, modifying or distributing this software or its derivatives.
17  *
18  */
19
20
21 #ifndef _VIDEO_VIEW_CTRL_
22 #define  _VIDEO_VIEW_CTRL_
23
24
25
26 bool    MpVideoViewCtrlInit(VideoAppData* pAppData);
27 void    MpVideoViewCtrlDestroy(void* pUserData);
28 void    MpVideoViewCtrlInitAfterBeginOfStream(void*);
29 void    MpVideoViewCtrlPause(void* pUserData);
30 void    MpVideoViewCtrlResume(void* pUserData);
31 void    MpVideoViewShowLayout(void* pUserData);
32 void    MpVideoViewHideLayout(void* pUserData);
33 void    MpVideoViewSetBufferingRateForStreamingView(int nSetBufferingRate, void* pUserData);
34 void    MpVideoViewHideSoundpath(void* pUserData);
35 void    MpVideoViewCtrlChangeTitle(void *pUserData);
36 void    MpVideoViewCtrlUpdateSubtitle(double nDuration, char* szSubtitleString);
37 bool    MpVideoViewCtrlIsTopView(void *pUserData);
38 void    MpVideoViewCtrlShowNocontentImage(void);
39 void    MpVideoViewCtrlHideNocontentImage(void);
40
41 #endif //_VIDEO_VIEW_CTRL_