blob: 4c2f961e7330a1f93c5071b9ca6ded059b4c114c [file] [log] [blame]
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <binder/IServiceManager.h>
//--------------------------------------------------------------------------------------------------
namespace android {
class MediaPlayerNotificationClient : public BnMediaPlayerClient
{
public:
MediaPlayerNotificationClient();
virtual ~MediaPlayerNotificationClient();
// IMediaPlayerClient implementation
virtual void notify(int msg, int ext1, int ext2);
void blockUntilPlayerPrepared();
private:
Mutex mLock;
Condition mPlayerPreparedCondition;
bool mPlayerPrepared;
};
//--------------------------------------------------------------------------------------------------
class GenericMediaPlayer : public GenericPlayer
{
public:
GenericMediaPlayer(const AudioPlayback_Parameters* params, bool hasVideo);
virtual ~GenericMediaPlayer();
virtual void setVideoSurface(void* surface);
protected:
// Async event handlers (called from GenericPlayer's event loop)
virtual void onPrepare();
virtual void onPlay();
virtual void onPause();
bool mHasVideo;
sp<Surface> mVideoSurface;
sp<IMediaPlayer> mPlayer;
// Receives Android MediaPlayer events from mPlayer
sp<MediaPlayerNotificationClient> mPlayerClient;
sp<IServiceManager> mServiceManager;
sp<IBinder> mBinder;
sp<IMediaPlayerService> mMediaPlayerService;
private:
DISALLOW_EVIL_CONSTRUCTORS(GenericMediaPlayer);
};
} // namespace android