blob: ecbd96cfa12907e012bda3bbdf5af832b6fddd55 [file] [log] [blame]
Andreas Huber07bf09d2010-01-25 14:27:12 -08001/*
2 * Copyright (C) 2010 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#include <media/stagefright/AMRWriter.h>
Andreas Huber07bf09d2010-01-25 14:27:12 -080018#include <media/stagefright/MediaBuffer.h>
19#include <media/stagefright/MediaDebug.h>
20#include <media/stagefright/MediaDefs.h>
21#include <media/stagefright/MediaErrors.h>
22#include <media/stagefright/MediaSource.h>
23#include <media/stagefright/MetaData.h>
James Dong18244862010-05-11 14:57:02 -070024#include <media/mediarecorder.h>
James Dongc67acb22010-10-07 20:20:59 -070025#include <sys/prctl.h>
26#include <sys/resource.h>
Andreas Huber07bf09d2010-01-25 14:27:12 -080027
28namespace android {
29
30AMRWriter::AMRWriter(const char *filename)
31 : mFile(fopen(filename, "wb")),
James Dongb1262a82010-11-16 14:04:54 -080032 mFd(mFile == NULL? -1: fileno(mFile)),
Andreas Huber07bf09d2010-01-25 14:27:12 -080033 mInitCheck(mFile != NULL ? OK : NO_INIT),
James Dong08c74732010-06-10 12:28:15 -070034 mStarted(false),
35 mPaused(false),
36 mResumed(false) {
Andreas Huber07bf09d2010-01-25 14:27:12 -080037}
38
39AMRWriter::AMRWriter(int fd)
40 : mFile(fdopen(fd, "wb")),
James Dongb1262a82010-11-16 14:04:54 -080041 mFd(mFile == NULL? -1: fileno(mFile)),
Andreas Huber07bf09d2010-01-25 14:27:12 -080042 mInitCheck(mFile != NULL ? OK : NO_INIT),
James Dong08c74732010-06-10 12:28:15 -070043 mStarted(false),
44 mPaused(false),
45 mResumed(false) {
Andreas Huber07bf09d2010-01-25 14:27:12 -080046}
47
48AMRWriter::~AMRWriter() {
49 if (mStarted) {
50 stop();
51 }
52
53 if (mFile != NULL) {
54 fclose(mFile);
55 mFile = NULL;
56 }
57}
58
59status_t AMRWriter::initCheck() const {
60 return mInitCheck;
61}
62
63status_t AMRWriter::addSource(const sp<MediaSource> &source) {
Andreas Huber07bf09d2010-01-25 14:27:12 -080064 if (mInitCheck != OK) {
65 return mInitCheck;
66 }
67
68 if (mSource != NULL) {
69 // AMR files only support a single track of audio.
70 return UNKNOWN_ERROR;
71 }
72
73 sp<MetaData> meta = source->getFormat();
74
75 const char *mime;
76 CHECK(meta->findCString(kKeyMIMEType, &mime));
77
78 bool isWide = false;
79 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_WB)) {
80 isWide = true;
81 } else if (strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_NB)) {
82 return ERROR_UNSUPPORTED;
83 }
84
85 int32_t channelCount;
86 int32_t sampleRate;
87 CHECK(meta->findInt32(kKeyChannelCount, &channelCount));
88 CHECK_EQ(channelCount, 1);
89 CHECK(meta->findInt32(kKeySampleRate, &sampleRate));
90 CHECK_EQ(sampleRate, (isWide ? 16000 : 8000));
91
92 mSource = source;
93
94 const char *kHeader = isWide ? "#!AMR-WB\n" : "#!AMR\n";
95 size_t n = strlen(kHeader);
James Dongb1262a82010-11-16 14:04:54 -080096 if (write(mFd, kHeader, n) != n) {
Andreas Huber07bf09d2010-01-25 14:27:12 -080097 return ERROR_IO;
98 }
99
100 return OK;
101}
102
James Dong6feaa462010-06-20 08:20:54 -0700103status_t AMRWriter::start(MetaData *params) {
Andreas Huber07bf09d2010-01-25 14:27:12 -0800104 if (mInitCheck != OK) {
105 return mInitCheck;
106 }
107
James Dong08c74732010-06-10 12:28:15 -0700108 if (mSource == NULL) {
Andreas Huber07bf09d2010-01-25 14:27:12 -0800109 return UNKNOWN_ERROR;
110 }
111
James Dong08c74732010-06-10 12:28:15 -0700112 if (mStarted && mPaused) {
113 mPaused = false;
114 mResumed = true;
115 return OK;
116 } else if (mStarted) {
117 // Already started, does nothing
118 return OK;
119 }
120
Andreas Huber07bf09d2010-01-25 14:27:12 -0800121 status_t err = mSource->start();
122
123 if (err != OK) {
124 return err;
125 }
126
127 pthread_attr_t attr;
128 pthread_attr_init(&attr);
129 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
130
Andreas Huber996dddf2010-01-25 15:30:31 -0800131 mReachedEOS = false;
Andreas Huber07bf09d2010-01-25 14:27:12 -0800132 mDone = false;
133
134 pthread_create(&mThread, &attr, ThreadWrapper, this);
135 pthread_attr_destroy(&attr);
136
137 mStarted = true;
138
139 return OK;
140}
141
James Dongd0366622010-08-18 19:10:39 -0700142status_t AMRWriter::pause() {
James Dong08c74732010-06-10 12:28:15 -0700143 if (!mStarted) {
James Dongd0366622010-08-18 19:10:39 -0700144 return OK;
James Dong08c74732010-06-10 12:28:15 -0700145 }
146 mPaused = true;
James Dongd0366622010-08-18 19:10:39 -0700147 return OK;
James Dong08c74732010-06-10 12:28:15 -0700148}
149
James Dongd0366622010-08-18 19:10:39 -0700150status_t AMRWriter::stop() {
Andreas Hubere2018ca2010-03-23 14:33:02 -0700151 if (!mStarted) {
James Dongd0366622010-08-18 19:10:39 -0700152 return OK;
Andreas Huber07bf09d2010-01-25 14:27:12 -0800153 }
154
Andreas Hubere2018ca2010-03-23 14:33:02 -0700155 mDone = true;
156
Andreas Huber07bf09d2010-01-25 14:27:12 -0800157 void *dummy;
158 pthread_join(mThread, &dummy);
159
James Dongd0366622010-08-18 19:10:39 -0700160 status_t err = (status_t) dummy;
161 {
162 status_t status = mSource->stop();
163 if (err == OK &&
164 (status != OK && status != ERROR_END_OF_STREAM)) {
165 err = status;
166 }
167 }
Andreas Huber07bf09d2010-01-25 14:27:12 -0800168
169 mStarted = false;
James Dongd0366622010-08-18 19:10:39 -0700170 return err;
Andreas Huber07bf09d2010-01-25 14:27:12 -0800171}
172
James Dong18244862010-05-11 14:57:02 -0700173bool AMRWriter::exceedsFileSizeLimit() {
174 if (mMaxFileSizeLimitBytes == 0) {
175 return false;
176 }
177 return mEstimatedSizeBytes >= mMaxFileSizeLimitBytes;
178}
179
180bool AMRWriter::exceedsFileDurationLimit() {
181 if (mMaxFileDurationLimitUs == 0) {
182 return false;
183 }
184 return mEstimatedDurationUs >= mMaxFileDurationLimitUs;
185}
186
Andreas Huber07bf09d2010-01-25 14:27:12 -0800187// static
188void *AMRWriter::ThreadWrapper(void *me) {
James Dongd0366622010-08-18 19:10:39 -0700189 return (void *) static_cast<AMRWriter *>(me)->threadFunc();
Andreas Huber07bf09d2010-01-25 14:27:12 -0800190}
191
James Dongd0366622010-08-18 19:10:39 -0700192status_t AMRWriter::threadFunc() {
James Dong18244862010-05-11 14:57:02 -0700193 mEstimatedDurationUs = 0;
194 mEstimatedSizeBytes = 0;
James Dong68510e62010-05-14 11:48:00 -0700195 bool stoppedPrematurely = true;
James Dong08c74732010-06-10 12:28:15 -0700196 int64_t previousPausedDurationUs = 0;
197 int64_t maxTimestampUs = 0;
James Dongd0366622010-08-18 19:10:39 -0700198 status_t err = OK;
James Dong08c74732010-06-10 12:28:15 -0700199
James Dongc67acb22010-10-07 20:20:59 -0700200 prctl(PR_SET_NAME, (unsigned long)"AMRWriter", 0, 0, 0);
Andreas Hubere2018ca2010-03-23 14:33:02 -0700201 while (!mDone) {
Andreas Huber07bf09d2010-01-25 14:27:12 -0800202 MediaBuffer *buffer;
James Dongd0366622010-08-18 19:10:39 -0700203 err = mSource->read(&buffer);
Andreas Huber07bf09d2010-01-25 14:27:12 -0800204
205 if (err != OK) {
206 break;
207 }
208
James Dong08c74732010-06-10 12:28:15 -0700209 if (mPaused) {
210 buffer->release();
211 buffer = NULL;
212 continue;
213 }
214
James Dong18244862010-05-11 14:57:02 -0700215 mEstimatedSizeBytes += buffer->range_length();
216 if (exceedsFileSizeLimit()) {
217 buffer->release();
218 buffer = NULL;
219 notify(MEDIA_RECORDER_EVENT_INFO, MEDIA_RECORDER_INFO_MAX_FILESIZE_REACHED, 0);
220 break;
221 }
222
223 int64_t timestampUs;
224 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
225 if (timestampUs > mEstimatedDurationUs) {
226 mEstimatedDurationUs = timestampUs;
227 }
James Dong08c74732010-06-10 12:28:15 -0700228 if (mResumed) {
229 previousPausedDurationUs += (timestampUs - maxTimestampUs - 20000);
230 mResumed = false;
231 }
232 timestampUs -= previousPausedDurationUs;
233 LOGV("time stamp: %lld, previous paused duration: %lld",
234 timestampUs, previousPausedDurationUs);
235 if (timestampUs > maxTimestampUs) {
236 maxTimestampUs = timestampUs;
237 }
238
James Dong18244862010-05-11 14:57:02 -0700239 if (exceedsFileDurationLimit()) {
240 buffer->release();
241 buffer = NULL;
242 notify(MEDIA_RECORDER_EVENT_INFO, MEDIA_RECORDER_INFO_MAX_DURATION_REACHED, 0);
243 break;
244 }
James Dongb1262a82010-11-16 14:04:54 -0800245 ssize_t n = write(mFd,
246 (const uint8_t *)buffer->data() + buffer->range_offset(),
247 buffer->range_length());
Andreas Huber07bf09d2010-01-25 14:27:12 -0800248
Andreas Huber07bf09d2010-01-25 14:27:12 -0800249 if (n < (ssize_t)buffer->range_length()) {
Andreas Huber259b7c12010-02-10 15:04:31 -0800250 buffer->release();
251 buffer = NULL;
252
Andreas Huber07bf09d2010-01-25 14:27:12 -0800253 break;
254 }
Andreas Huber259b7c12010-02-10 15:04:31 -0800255
James Dong68510e62010-05-14 11:48:00 -0700256 // XXX: How to tell it is stopped prematurely?
257 if (stoppedPrematurely) {
258 stoppedPrematurely = false;
259 }
260
Andreas Huber259b7c12010-02-10 15:04:31 -0800261 buffer->release();
262 buffer = NULL;
Andreas Huber07bf09d2010-01-25 14:27:12 -0800263 }
Andreas Huber996dddf2010-01-25 15:30:31 -0800264
James Dong68510e62010-05-14 11:48:00 -0700265 if (stoppedPrematurely) {
James Dong09936ed2010-06-24 19:04:27 -0700266 notify(MEDIA_RECORDER_EVENT_INFO, MEDIA_RECORDER_INFO_COMPLETION_STATUS, UNKNOWN_ERROR);
James Dong68510e62010-05-14 11:48:00 -0700267 }
268
269 fflush(mFile);
270 fclose(mFile);
271 mFile = NULL;
Andreas Huber996dddf2010-01-25 15:30:31 -0800272 mReachedEOS = true;
James Dongd0366622010-08-18 19:10:39 -0700273 if (err == ERROR_END_OF_STREAM) {
274 return OK;
275 }
276 return err;
Andreas Huber996dddf2010-01-25 15:30:31 -0800277}
278
279bool AMRWriter::reachedEOS() {
Andreas Huber996dddf2010-01-25 15:30:31 -0800280 return mReachedEOS;
Andreas Huber07bf09d2010-01-25 14:27:12 -0800281}
282
283} // namespace android