MediaPlayer_to_android.h revision ad1ab1d13a9b043202b9d5cdc1d8c4ef66cbbca8
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 * Player lifecycle 22 ****************************/ 23extern XAresult android_Player_checkSourceSink(CMediaPlayer *mp); 24 25extern XAresult android_Player_create(CMediaPlayer *mp); 26 27extern XAresult android_Player_realize(CMediaPlayer *mp, SLboolean async); 28 29extern XAresult android_Player_destroy(CMediaPlayer *mp); 30 31 32/************************************************************************************************** 33 * Configuration 34 ****************************/ 35/** 36 * pre-conditions: avp != NULL, surface != 0 37 */ 38extern XAresult android_Player_setVideoSurface(android::GenericMediaPlayer *avp, 39 const android::sp<android::Surface> &surface); 40 41/** 42 * pre-conditions: avp != NULL, surfaceTexture != 0 43 */ 44extern XAresult android_Player_setVideoSurfaceTexture(android::GenericMediaPlayer *avp, 45 const android::sp<android::ISurfaceTexture> &surfaceTexture); 46 47/************************************************************************************************** 48 * Playback control and events 49 ****************************/ 50/** 51 * pre-condition: avp != NULL 52 */ 53extern XAresult android_Player_setPlayState(android::GenericPlayer *avp, SLuint32 playState, 54 AndroidObject_state* pObjState); 55 56 57 58/************************************************************************************************** 59 * Buffer Queue events 60 ****************************/ 61 62/************************************************************************************************** 63 * Android Buffer Queue 64 ****************************/ 65 66/* must be called with a lock on mp->mThis */ 67extern void android_Player_androidBufferQueue_registerCallback_l(CMediaPlayer *mp); 68/* must be called with a lock on mp->mThis */ 69extern void android_Player_androidBufferQueue_enqueue_l(CMediaPlayer *mp, 70 SLuint32 bufferId, SLuint32 length, SLuint32 event, void *pData); 71