MediaPlayer_to_android.h revision 92b245bf8828db9e469febebbe8774c00570b5b9
1/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <surfaceflinger/Surface.h>
18#include <gui/ISurfaceTexture.h>
19
20
21/**************************************************************************************************
22 * Player lifecycle
23 ****************************/
24extern XAresult android_Player_checkSourceSink(CMediaPlayer *mp);
25
26extern XAresult android_Player_create(CMediaPlayer *mp);
27
28extern XAresult android_Player_realize(CMediaPlayer *mp, SLboolean async);
29
30extern XAresult android_Player_destroy(CMediaPlayer *mp);
31
32
33/**************************************************************************************************
34 * Configuration
35 ****************************/
36/**
37 * pre-conditions: gp != 0, surface != 0
38 */
39extern XAresult android_Player_setVideoSurface(
40        const android::sp<android::GenericPlayer> &gp,
41        const android::sp<android::Surface> &surface);
42
43/**
44 * pre-conditions: gp != 0, surfaceTexture != 0
45 */
46extern XAresult android_Player_setVideoSurfaceTexture(
47        const android::sp<android::GenericPlayer> &gp,
48        const android::sp<android::ISurfaceTexture> &surfaceTexture);
49
50extern XAresult android_Player_getDuration(IPlay *pPlayItf, SLmillisecond *pDurMsec);
51
52/**
53 * pre-condition: avp != NULL, pVolItf != NULL
54 */
55extern XAresult android_Player_volumeUpdate(android::GenericPlayer *avp, IVolume *pVolItf);
56
57/**************************************************************************************************
58 * Playback control and events
59 ****************************/
60/**
61 * pre-condition: avp != NULL
62 */
63extern XAresult android_Player_setPlayState(android::GenericPlayer *avp, SLuint32 playState,
64        AndroidObjectState* pObjState);
65
66/**
67 * for all functions below: pre-condition: mp != NULL
68 */
69extern XAresult android_Player_seek(CMediaPlayer *ap, SLmillisecond posMsec);
70extern XAresult android_Player_loop(CMediaPlayer *mp, SLboolean loopEnable);
71
72
73
74/**************************************************************************************************
75 * Buffer Queue events
76 ****************************/
77
78/**************************************************************************************************
79 * Android Buffer Queue
80 ****************************/
81
82/* must be called with a lock on mp->mThis */
83extern void android_Player_androidBufferQueue_registerCallback_l(CMediaPlayer *mp);
84/* must be called with a lock on mp->mThis */
85extern void android_Player_androidBufferQueue_clear_l(CMediaPlayer *mp);
86/* must be called with a lock on mp->mThis */
87extern void android_Player_androidBufferQueue_onRefilled_l(CMediaPlayer *mp);
88