StagefrightPlayer.h revision e2b1028852120bcfded33b8f06f66b780437fe92
1/*
2**
3** Copyright 2009, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9**     http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef ANDROID_STAGEFRIGHTPLAYER_H
19#define ANDROID_STAGEFRIGHTPLAYER_H
20
21#include <media/MediaPlayerInterface.h>
22
23namespace android {
24
25struct AwesomePlayer;
26
27class StagefrightPlayer : public MediaPlayerInterface {
28public:
29    StagefrightPlayer();
30    virtual ~StagefrightPlayer();
31
32    virtual status_t initCheck();
33
34    virtual status_t setDataSource(
35            const char *url, const KeyedVector<String8, String8> *headers);
36
37    virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
38
39    virtual status_t setDataSource(const sp<IStreamSource> &source);
40
41    virtual status_t setVideoSurface(const sp<Surface> &surface);
42    virtual status_t prepare();
43    virtual status_t prepareAsync();
44    virtual status_t start();
45    virtual status_t stop();
46    virtual status_t pause();
47    virtual bool isPlaying();
48    virtual status_t seekTo(int msec);
49    virtual status_t getCurrentPosition(int *msec);
50    virtual status_t getDuration(int *msec);
51    virtual status_t reset();
52    virtual status_t setLooping(int loop);
53    virtual player_type playerType();
54    virtual status_t invoke(const Parcel &request, Parcel *reply);
55    virtual void setAudioSink(const sp<AudioSink> &audioSink);
56
57    virtual status_t getMetadata(
58            const media::Metadata::Filter& ids, Parcel *records);
59
60private:
61    AwesomePlayer *mPlayer;
62
63    StagefrightPlayer(const StagefrightPlayer &);
64    StagefrightPlayer &operator=(const StagefrightPlayer &);
65};
66
67}  // namespace android
68
69#endif  // ANDROID_STAGEFRIGHTPLAYER_H
70