-
Notifications
You must be signed in to change notification settings - Fork 58
/
AsyncCodecSource.h
152 lines (123 loc) · 4.28 KB
/
AsyncCodecSource.h
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
* Copyright (c) 2020 Open Mobile Platform LLC.
* Copyright 2016, 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 ASYNC_CODEC_SOURCE_H_
#define ASYNC_CODEC_SOURCE_H_
#include <media/openmax/OMX_IVCommon.h>
#include <media/stagefright/foundation/AString.h>
#include <media/stagefright/foundation/Mutexed.h>
#include <media/stagefright/foundation/AHandlerReflector.h>
#if ANDROID_MAJOR >= 9 && ANDROID_MAJOR <= 10
#include <media/MediaSource.h>
#else
#include <media/stagefright/MediaSource.h>
#endif
#include <media/stagefright/MediaBuffer.h>
#include <media/stagefright/MediaCodecSource.h>
#include <utils/Condition.h>
#include <utils/StrongPointer.h>
#include "mediabuffers.h"
struct ANativeWindow;
namespace android {
#if ANDROID_MAJOR < 9
typedef MediaBuffer DroidMediaBuffer;
#else
typedef MediaBufferBase DroidMediaBuffer;
#endif
struct ALooper;
struct AMessage;
struct MediaCodec;
class MetaData;
class Surface;
class AsyncCodecSource : public MediaSource {
public:
static sp<MediaSource> Create(const sp<MediaSource> &source,
const sp<AMessage> &format, bool isEncoder, uint32_t flags,
const sp<ANativeWindow> &nativeWindow, const sp<ALooper> &looper,
const char *desiredCodec = NULL,
OMX_COLOR_FORMATTYPE colorFormat = OMX_COLOR_FormatUnused);
bool configure(const sp<AMessage> format,
const sp<Surface> surface,
uint32_t flags = 0);
virtual ~AsyncCodecSource();
// starts this source (and its underlying source). |params| is ignored.
virtual status_t start(MetaData *params = NULL);
// stops this source (and its underlying source).
virtual status_t stop();
// returns the output format of this source.
virtual sp<MetaData> getFormat();
// reads from the source. This call always blocks.
virtual status_t read(
android::DroidMediaBuffer **buffer,
const ReadOptions *options);
// for AHandlerReflector
void onMessageReceived(const sp<AMessage> &msg);
// unsupported methods
virtual status_t pause() { return INVALID_OPERATION; }
status_t setParameters(const sp<AMessage> ¶ms);
void flush();
private:
class SourceReader : public Thread {
public:
explicit SourceReader(AsyncCodecSource *codec, const sp<MediaSource> source);
void inputBufferAvailable(size_t index);
private:
~SourceReader();
bool threadLoop() override;
size_t waitForInputBuffer();
volatile bool mRunning;
AsyncCodecSource *mCodec;
sp<MediaSource> mSource;
Buffers<size_t> mInputIndices;
};
// Construct this using a codec, source and looper.
AsyncCodecSource(
const AString &codecName, const sp<MediaSource> &source, const sp<ALooper> &looper,
bool isVorbis);
bool queueInputBuffer(DroidMediaBuffer *buffer, size_t inputBufferIndex);
void queueEOS(size_t index);
AString mComponentName;
sp<MediaCodec> mCodec;
sp<MediaSource> mSource;
sp<ALooper> mLooper;
sp<ALooper> mCodecLooper;
sp<AMessage> mNotify = 0;
sp<AHandlerReflector<AsyncCodecSource> > mReflector;
Mutexed<sp<MetaData>> mMeta;
bool mUsingSurface;
bool mIsVorbis;
bool mOutputChanged = false;
enum State {
INIT,
STARTED,
STOPPING,
STOPPED,
ERROR,
};
State mState = INIT;
struct Output {
Output();
List<DroidMediaBuffer*> mBufferQueue;
bool mReachedEOS;
bool mReading = false;
Condition mAvailable;
Condition mReadCondition;
};
Mutexed<Output> mOutput;
sp<SourceReader> mSourceReader;
};
} // namespace android
#endif //ASYNC_DECODING_SOURCE_H_