blob: 30db64246a3486c7648554ff90430cd13c61c6c7 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 ** Copyright (C) 2008 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 **
15 ** limitations under the License.
16 */
17
18#ifndef ANDROID_MEDIARECORDER_H
19#define ANDROID_MEDIARECORDER_H
20
Mathias Agopian3b4062e2009-05-31 19:13:00 -070021#include <utils/Log.h>
22#include <utils/threads.h>
23#include <utils/List.h>
24#include <utils/Errors.h>
James Dongfe1bafe2010-06-25 17:06:47 -070025#include <media/IMediaRecorderClient.h>
James Dong34bbc222010-01-15 18:13:58 -080026#include <media/IMediaDeathNotifier.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027
28namespace android {
29
30class Surface;
31class IMediaRecorder;
32class ICamera;
Wu-cheng Li42419ce2011-06-01 17:22:24 +080033class ICameraRecordingProxy;
Pannag Sanketi897e27b2011-07-01 17:39:39 -070034class ISurfaceTexture;
35class SurfaceTextureClient;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036
37typedef void (*media_completion_f)(status_t status, void *cookie);
38
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039enum video_source {
40 VIDEO_SOURCE_DEFAULT = 0,
41 VIDEO_SOURCE_CAMERA = 1,
Pannag Sanketi897e27b2011-07-01 17:39:39 -070042 VIDEO_SOURCE_GRALLOC_BUFFER = 2,
Jianhong Jiang2bcda902009-06-08 08:50:42 -070043
44 VIDEO_SOURCE_LIST_END // must be last - used to validate audio source type
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045};
46
Jianhong Jiang2bcda902009-06-08 08:50:42 -070047//Please update media/java/android/media/MediaRecorder.java if the following is updated.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048enum output_format {
49 OUTPUT_FORMAT_DEFAULT = 0,
Jianhong Jiang2bcda902009-06-08 08:50:42 -070050 OUTPUT_FORMAT_THREE_GPP = 1,
51 OUTPUT_FORMAT_MPEG_4 = 2,
52
53
54 OUTPUT_FORMAT_AUDIO_ONLY_START = 3, // Used in validating the output format. Should be the
55 // at the start of the audio only output formats.
56
57 /* These are audio only file formats */
58 OUTPUT_FORMAT_RAW_AMR = 3, //to be backward compatible
59 OUTPUT_FORMAT_AMR_NB = 3,
60 OUTPUT_FORMAT_AMR_WB = 4,
61 OUTPUT_FORMAT_AAC_ADIF = 5,
62 OUTPUT_FORMAT_AAC_ADTS = 6,
63
Andreas Huber57648e42010-08-04 10:14:30 -070064 /* Stream over a socket, limited to a single stream */
65 OUTPUT_FORMAT_RTP_AVP = 7,
66
Andreas Huber9adf4662010-10-12 14:17:45 -070067 /* H.264/AAC data encapsulated in MPEG2/TS */
68 OUTPUT_FORMAT_MPEG2TS = 8,
69
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070 OUTPUT_FORMAT_LIST_END // must be last - used to validate format type
71};
72
73enum audio_encoder {
74 AUDIO_ENCODER_DEFAULT = 0,
75 AUDIO_ENCODER_AMR_NB = 1,
Jianhong Jiang2bcda902009-06-08 08:50:42 -070076 AUDIO_ENCODER_AMR_WB = 2,
77 AUDIO_ENCODER_AAC = 3,
78 AUDIO_ENCODER_AAC_PLUS = 4,
79 AUDIO_ENCODER_EAAC_PLUS = 5,
80
81 AUDIO_ENCODER_LIST_END // must be the last - used to validate the audio encoder type
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082};
83
84enum video_encoder {
85 VIDEO_ENCODER_DEFAULT = 0,
86 VIDEO_ENCODER_H263 = 1,
87 VIDEO_ENCODER_H264 = 2,
88 VIDEO_ENCODER_MPEG_4_SP = 3,
Jianhong Jiang2bcda902009-06-08 08:50:42 -070089
90 VIDEO_ENCODER_LIST_END // must be the last - used to validate the video encoder type
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091};
92
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093/*
James Dong7fc8b4f2011-03-18 11:25:41 -070094 * The state machine of the media_recorder.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095 */
96enum media_recorder_states {
James Dong7fc8b4f2011-03-18 11:25:41 -070097 // Error state.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098 MEDIA_RECORDER_ERROR = 0,
James Dong7fc8b4f2011-03-18 11:25:41 -070099
100 // Recorder was just created.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101 MEDIA_RECORDER_IDLE = 1 << 0,
James Dong7fc8b4f2011-03-18 11:25:41 -0700102
103 // Recorder has been initialized.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104 MEDIA_RECORDER_INITIALIZED = 1 << 1,
James Dong7fc8b4f2011-03-18 11:25:41 -0700105
106 // Configuration of the recorder has been completed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 MEDIA_RECORDER_DATASOURCE_CONFIGURED = 1 << 2,
James Dong7fc8b4f2011-03-18 11:25:41 -0700108
109 // Recorder is ready to start.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 MEDIA_RECORDER_PREPARED = 1 << 3,
James Dong7fc8b4f2011-03-18 11:25:41 -0700111
112 // Recording is in progress.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 MEDIA_RECORDER_RECORDING = 1 << 4,
114};
115
116// The "msg" code passed to the listener in notify.
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700117enum media_recorder_event_type {
James Dong7fc8b4f2011-03-18 11:25:41 -0700118 MEDIA_RECORDER_EVENT_LIST_START = 1,
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700119 MEDIA_RECORDER_EVENT_ERROR = 1,
James Dong7fc8b4f2011-03-18 11:25:41 -0700120 MEDIA_RECORDER_EVENT_INFO = 2,
121 MEDIA_RECORDER_EVENT_LIST_END = 99,
122
123 // Track related event types
124 MEDIA_RECORDER_TRACK_EVENT_LIST_START = 100,
125 MEDIA_RECORDER_TRACK_EVENT_ERROR = 100,
126 MEDIA_RECORDER_TRACK_EVENT_INFO = 101,
127 MEDIA_RECORDER_TRACK_EVENT_LIST_END = 1000,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800128};
129
James Dong7fc8b4f2011-03-18 11:25:41 -0700130/*
131 * The (part of) "what" code passed to the listener in notify.
132 * When the error or info type is track specific, the what has
133 * the following layout:
134 * the left-most 16-bit is meant for error or info type.
135 * the right-most 4-bit is meant for track id.
136 * the rest is reserved.
137 *
138 * | track id | reserved | error or info type |
139 * 31 28 16 0
140 *
141 */
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700142enum media_recorder_error_type {
James Dong7fc8b4f2011-03-18 11:25:41 -0700143 MEDIA_RECORDER_ERROR_UNKNOWN = 1,
144
145 // Track related error type
146 MEDIA_RECORDER_TRACK_ERROR_LIST_START = 100,
147 MEDIA_RECORDER_TRACK_ERROR_GENERAL = 100,
148 MEDIA_RECORDER_ERROR_VIDEO_NO_SYNC_FRAME = 200,
149 MEDIA_RECORDER_TRACK_ERROR_LIST_END = 1000,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150};
151
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700152// The codes are distributed as follow:
153// 0xx: Reserved
154// 8xx: General info/warning
Jianhong Jiang2bcda902009-06-08 08:50:42 -0700155//
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700156enum media_recorder_info_type {
157 MEDIA_RECORDER_INFO_UNKNOWN = 1,
James Dong7fc8b4f2011-03-18 11:25:41 -0700158
The Android Open Source Project10592532009-03-18 17:39:46 -0700159 MEDIA_RECORDER_INFO_MAX_DURATION_REACHED = 800,
James Dong68510e62010-05-14 11:48:00 -0700160 MEDIA_RECORDER_INFO_MAX_FILESIZE_REACHED = 801,
James Dong7fc8b4f2011-03-18 11:25:41 -0700161
162 // All track related informtional events start here
163 MEDIA_RECORDER_TRACK_INFO_LIST_START = 1000,
164 MEDIA_RECORDER_TRACK_INFO_COMPLETION_STATUS = 1000,
165 MEDIA_RECORDER_TRACK_INFO_PROGRESS_IN_TIME = 1001,
James Donged742302011-05-06 11:27:59 -0700166 MEDIA_RECORDER_TRACK_INFO_TYPE = 1002,
167 MEDIA_RECORDER_TRACK_INFO_DURATION_MS = 1003,
James Dong3aea0372011-05-06 12:19:04 -0700168
169 // The time to measure the max chunk duration
James Donged742302011-05-06 11:27:59 -0700170 MEDIA_RECORDER_TRACK_INFO_MAX_CHUNK_DUR_MS = 1004,
James Dong3aea0372011-05-06 12:19:04 -0700171
James Donged742302011-05-06 11:27:59 -0700172 MEDIA_RECORDER_TRACK_INFO_ENCODED_FRAMES = 1005,
James Dong3aea0372011-05-06 12:19:04 -0700173
174 // The time to measure how well the audio and video
175 // track data is interleaved.
176 MEDIA_RECORDER_TRACK_INTER_CHUNK_TIME_MS = 1006,
177
178 // The time to measure system response. Note that
179 // the delay does not include the intentional delay
180 // we use to eliminate the recording sound.
181 MEDIA_RECORDER_TRACK_INFO_INITIAL_DELAY_MS = 1007,
182
183 // The time used to compensate for initial A/V sync.
184 MEDIA_RECORDER_TRACK_INFO_START_OFFSET_MS = 1008,
185
James Dong0f32fb32011-05-14 07:22:40 -0700186 // Total number of bytes of the media data.
187 MEDIA_RECORDER_TRACK_INFO_DATA_KBYTES = 1009,
188
James Dong7fc8b4f2011-03-18 11:25:41 -0700189 MEDIA_RECORDER_TRACK_INFO_LIST_END = 2000,
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700190};
191
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192// ----------------------------------------------------------------------------
193// ref-counted object for callbacks
194class MediaRecorderListener: virtual public RefBase
195{
196public:
197 virtual void notify(int msg, int ext1, int ext2) = 0;
198};
199
James Dongfe1bafe2010-06-25 17:06:47 -0700200class MediaRecorder : public BnMediaRecorderClient,
James Dong34bbc222010-01-15 18:13:58 -0800201 public virtual IMediaDeathNotifier
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800202{
203public:
204 MediaRecorder();
205 ~MediaRecorder();
206
James Dong34bbc222010-01-15 18:13:58 -0800207 void died();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208 status_t initCheck();
Wu-cheng Li42419ce2011-06-01 17:22:24 +0800209 status_t setCamera(const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800210 status_t setPreviewSurface(const sp<Surface>& surface);
211 status_t setVideoSource(int vs);
212 status_t setAudioSource(int as);
213 status_t setOutputFormat(int of);
214 status_t setVideoEncoder(int ve);
215 status_t setAudioEncoder(int ae);
216 status_t setOutputFile(const char* path);
217 status_t setOutputFile(int fd, int64_t offset, int64_t length);
218 status_t setVideoSize(int width, int height);
219 status_t setVideoFrameRate(int frames_per_second);
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700220 status_t setParameters(const String8& params);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800221 status_t setListener(const sp<MediaRecorderListener>& listener);
222 status_t prepare();
223 status_t getMaxAmplitude(int* max);
224 status_t start();
225 status_t stop();
226 status_t reset();
227 status_t init();
228 status_t close();
229 status_t release();
230 void notify(int msg, int ext1, int ext2);
Pannag Sanketi897e27b2011-07-01 17:39:39 -0700231 sp<ISurfaceTexture> querySurfaceMediaSourceFromMediaServer();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232
233private:
234 void doCleanUp();
235 status_t doReset();
236
237 sp<IMediaRecorder> mMediaRecorder;
238 sp<MediaRecorderListener> mListener;
Pannag Sanketi897e27b2011-07-01 17:39:39 -0700239
240 // Reference toISurfaceTexture
241 // for encoding GL Frames. That is useful only when the
242 // video source is set to VIDEO_SOURCE_GRALLOC_BUFFER
243 sp<ISurfaceTexture> mSurfaceMediaSource;
244
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800245 media_recorder_states mCurrentState;
246 bool mIsAudioSourceSet;
247 bool mIsVideoSourceSet;
248 bool mIsAudioEncoderSet;
249 bool mIsVideoEncoderSet;
250 bool mIsOutputFileSet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800251 Mutex mLock;
252 Mutex mNotifyLock;
253};
254
255}; // namespace android
256
257#endif // ANDROID_MEDIARECORDER_H