summaryrefslogtreecommitdiffstats
path: root/include/media/stagefright/MediaPlayerImpl.h
blob: c48400c530e9a51c18073c730351fd5089b77825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
 * Copyright (C) 2009 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.
 */

#ifndef MEDIA_PLAYER_IMPL_H_

#define MEDIA_PLAYER_IMPL_H_

#include <pthread.h>

#include <media/MediaPlayerInterface.h>
#include <media/stagefright/OMXClient.h>
#include <utils/RefBase.h>
#include <utils/threads.h>

namespace android {

class AudioPlayer;
class ISurface;
class MediaExtractor;
class MediaBuffer;
class MediaSource;
class MemoryHeapPmem;
class MetaData;
class OMXDecoder;
class Surface;
class TimeSource;
class VideoRenderer;

class MediaPlayerImpl {
public:
    MediaPlayerImpl(const char *uri);

    status_t initCheck() const;

    // Assumes ownership of "fd".
    MediaPlayerImpl(int fd, int64_t offset, int64_t length);

    ~MediaPlayerImpl();

    void play();
    void pause();
    bool isPlaying() const;

    void setSurface(const sp<Surface> &surface);
    void setISurface(const sp<ISurface> &isurface);

    void setAudioSink(const sp<MediaPlayerBase::AudioSink> &audioSink);

    int32_t getWidth() const { return mVideoWidth; }
    int32_t getHeight() const { return mVideoHeight; }

    int64_t getDuration();
    int64_t getPosition();
    status_t seekTo(int64_t time);

private:
    status_t mInitCheck;

    OMXClient mClient;

    MediaExtractor *mExtractor;

    TimeSource *mTimeSource;

    MediaSource *mAudioSource;
    OMXDecoder *mAudioDecoder;
    AudioPlayer *mAudioPlayer;

    MediaSource *mVideoSource;
    MediaSource *mVideoDecoder;
    int32_t mVideoWidth, mVideoHeight;
    int64_t mVideoPosition;

    int64_t mDuration;

    bool mPlaying;
    bool mPaused;

    int64_t mTimeSourceDeltaUs;

    sp<Surface> mSurface;
    sp<ISurface> mISurface;
    VideoRenderer *mRenderer;

    sp<MediaPlayerBase::AudioSink> mAudioSink;

    Mutex mLock;
    pthread_t mVideoThread;

    bool mSeeking;
    int64_t mSeekTimeUs;

    size_t mFrameSize;
    bool mUseSoftwareColorConversion;

    void init();

    static void *VideoWrapper(void *me);
    void videoEntry();

    void setAudioSource(MediaSource *source);
    void setVideoSource(MediaSource *source);

    MediaSource *makeShoutcastSource(const char *path);

    void displayOrDiscardFrame(MediaBuffer *buffer, int64_t pts_us);
    void populateISurface();
    void depopulateISurface();
    void sendFrameToISurface(MediaBuffer *buffer);

    void stop();

    MediaPlayerImpl(const MediaPlayerImpl &);
    MediaPlayerImpl &operator=(const MediaPlayerImpl &);
};

}  // namespace android

#endif  // MEDIA_PLAYER_IMPL_H_