blob: 3335d6cc39e4b92c10788f43914a16de0bf1e638 [file] [log] [blame]
Linus Nilssonc6221db2020-03-18 14:46:22 -07001/*
2 * Copyright (C) 2020 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// #define LOG_NDEBUG 0
18#define LOG_TAG "PassthroughTrackTranscoder"
19
20#include <android-base/logging.h>
21#include <media/PassthroughTrackTranscoder.h>
Linus Nilsson22df0f22021-04-21 15:11:27 -070022#include <sys/prctl.h>
Linus Nilssonc6221db2020-03-18 14:46:22 -070023
24namespace android {
25
26PassthroughTrackTranscoder::BufferPool::~BufferPool() {
27 for (auto it = mAddressSizeMap.begin(); it != mAddressSizeMap.end(); ++it) {
28 delete[] it->first;
29 }
30}
31
32uint8_t* PassthroughTrackTranscoder::BufferPool::getBufferWithSize(size_t minimumBufferSize)
33 NO_THREAD_SAFETY_ANALYSIS {
34 std::unique_lock lock(mMutex);
35
36 // Wait if maximum number of buffers are allocated but none are free.
37 while (mAddressSizeMap.size() >= mMaxBufferCount && mFreeBufferMap.empty() && !mAborted) {
38 mCondition.wait(lock);
39 }
40
41 if (mAborted) {
42 return nullptr;
43 }
44
45 // Check if the free list contains a large enough buffer.
46 auto it = mFreeBufferMap.lower_bound(minimumBufferSize);
47 if (it != mFreeBufferMap.end()) {
Linus Nilsson16a55212020-07-14 15:59:58 -070048 uint8_t* buffer = it->second;
Linus Nilssonc6221db2020-03-18 14:46:22 -070049 mFreeBufferMap.erase(it);
Linus Nilsson16a55212020-07-14 15:59:58 -070050 return buffer;
51 }
52
53 // If the maximum buffer count is reached, remove an existing free buffer.
54 if (mAddressSizeMap.size() >= mMaxBufferCount) {
55 auto it = mFreeBufferMap.begin();
56 mAddressSizeMap.erase(it->second);
57 delete[] it->second;
58 mFreeBufferMap.erase(it);
Linus Nilssonc6221db2020-03-18 14:46:22 -070059 }
60
61 // Allocate a new buffer.
62 uint8_t* buffer = new (std::nothrow) uint8_t[minimumBufferSize];
63 if (buffer == nullptr) {
64 LOG(ERROR) << "Unable to allocate new buffer of size: " << minimumBufferSize;
65 return nullptr;
66 }
67
Linus Nilssonc6221db2020-03-18 14:46:22 -070068 // Add the buffer to the tracking set.
69 mAddressSizeMap.emplace(buffer, minimumBufferSize);
70 return buffer;
71}
72
73void PassthroughTrackTranscoder::BufferPool::returnBuffer(uint8_t* buffer) {
74 std::scoped_lock lock(mMutex);
75
76 if (buffer == nullptr || mAddressSizeMap.find(buffer) == mAddressSizeMap.end()) {
77 LOG(WARNING) << "Ignoring untracked buffer " << buffer;
78 return;
79 }
80
81 mFreeBufferMap.emplace(mAddressSizeMap[buffer], buffer);
82 mCondition.notify_one();
83}
84
85void PassthroughTrackTranscoder::BufferPool::abort() {
86 std::scoped_lock lock(mMutex);
87 mAborted = true;
88 mCondition.notify_all();
89}
90
91media_status_t PassthroughTrackTranscoder::configureDestinationFormat(
92 const std::shared_ptr<AMediaFormat>& destinationFormat __unused) {
93 // Called by MediaTrackTranscoder. Passthrough doesn't care about destination so just return ok.
94 return AMEDIA_OK;
95}
96
Linus Nilssonfdb3e332020-09-18 17:11:41 -070097media_status_t PassthroughTrackTranscoder::runTranscodeLoop(bool* stopped) {
Linus Nilsson22df0f22021-04-21 15:11:27 -070098 prctl(PR_SET_NAME, (unsigned long)"PassthruThread", 0, 0, 0);
99
Linus Nilssonc6221db2020-03-18 14:46:22 -0700100 MediaSampleInfo info;
101 std::shared_ptr<MediaSample> sample;
Linus Nilssonfdb3e332020-09-18 17:11:41 -0700102 bool eosReached = false;
Linus Nilssonc6221db2020-03-18 14:46:22 -0700103
Chong Zhanga2cc86b2020-06-17 16:56:49 -0700104 // Notify the track format as soon as we start. It's same as the source format.
105 notifyTrackFormatAvailable();
106
Linus Nilssonc6221db2020-03-18 14:46:22 -0700107 MediaSample::OnSampleReleasedCallback bufferReleaseCallback =
108 [bufferPool = mBufferPool](MediaSample* sample) {
109 bufferPool->returnBuffer(const_cast<uint8_t*>(sample->buffer));
110 };
111
112 // Move samples until EOS is reached or transcoding is stopped.
Linus Nilssonfdb3e332020-09-18 17:11:41 -0700113 while (mStopRequest != STOP_NOW && !eosReached) {
Linus Nilssonc6221db2020-03-18 14:46:22 -0700114 media_status_t status = mMediaSampleReader->getSampleInfoForTrack(mTrackIndex, &info);
115
116 if (status == AMEDIA_OK) {
117 uint8_t* buffer = mBufferPool->getBufferWithSize(info.size);
118 if (buffer == nullptr) {
Linus Nilssonfdb3e332020-09-18 17:11:41 -0700119 if (mStopRequest == STOP_NOW) {
Linus Nilssonc6221db2020-03-18 14:46:22 -0700120 break;
121 }
122
123 LOG(ERROR) << "Unable to get buffer from pool";
Linus Nilssonfdb3e332020-09-18 17:11:41 -0700124 return AMEDIA_ERROR_UNKNOWN;
Linus Nilssonc6221db2020-03-18 14:46:22 -0700125 }
126
127 sample = MediaSample::createWithReleaseCallback(
128 buffer, 0 /* offset */, 0 /* bufferId */, bufferReleaseCallback);
129
130 status = mMediaSampleReader->readSampleDataForTrack(mTrackIndex, buffer, info.size);
131 if (status != AMEDIA_OK) {
132 LOG(ERROR) << "Unable to read next sample data. Aborting transcode.";
133 return status;
134 }
135
136 } else if (status == AMEDIA_ERROR_END_OF_STREAM) {
137 sample = std::make_shared<MediaSample>();
Linus Nilssonfdb3e332020-09-18 17:11:41 -0700138 eosReached = true;
Linus Nilssonc6221db2020-03-18 14:46:22 -0700139 } else {
140 LOG(ERROR) << "Unable to get next sample info. Aborting transcode.";
141 return status;
142 }
143
144 sample->info = info;
Linus Nilssonc31d2492020-09-23 12:30:00 -0700145 onOutputSampleAvailable(sample);
Linus Nilssonfdb3e332020-09-18 17:11:41 -0700146
147 if (mStopRequest == STOP_ON_SYNC && info.flags & SAMPLE_FLAG_SYNC_SAMPLE) {
148 break;
149 }
Linus Nilssonc6221db2020-03-18 14:46:22 -0700150 }
151
Linus Nilssonfdb3e332020-09-18 17:11:41 -0700152 if (mStopRequest != NONE && !eosReached) {
153 *stopped = true;
Linus Nilssonc6221db2020-03-18 14:46:22 -0700154 }
155 return AMEDIA_OK;
156}
157
158void PassthroughTrackTranscoder::abortTranscodeLoop() {
Linus Nilssonfdb3e332020-09-18 17:11:41 -0700159 if (mStopRequest == STOP_NOW) {
160 mBufferPool->abort();
161 }
Linus Nilssonc6221db2020-03-18 14:46:22 -0700162}
163
Linus Nilssoncab39d82020-05-14 16:32:21 -0700164std::shared_ptr<AMediaFormat> PassthroughTrackTranscoder::getOutputFormat() const {
165 return mSourceFormat;
166}
Linus Nilssonc6221db2020-03-18 14:46:22 -0700167} // namespace android