blob: 5cc8dcffe0d14b2c876589ed72e5361eadcb4597 [file] [log] [blame]
Andreas Huber996dddf2010-01-25 15:30:31 -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#ifndef MEDIA_WRITER_H_
18
19#define MEDIA_WRITER_H_
20
21#include <utils/RefBase.h>
James Dongfe1bafe2010-06-25 17:06:47 -070022#include <media/IMediaRecorderClient.h>
Andreas Huber996dddf2010-01-25 15:30:31 -080023
24namespace android {
25
26struct MediaSource;
James Dong6feaa462010-06-20 08:20:54 -070027struct MetaData;
Andreas Huber996dddf2010-01-25 15:30:31 -080028
29struct MediaWriter : public RefBase {
Andreas Huber45bac572010-07-01 08:19:52 -070030 MediaWriter()
31 : mMaxFileSizeLimitBytes(0),
32 mMaxFileDurationLimitUs(0) {
33 }
Andreas Huber996dddf2010-01-25 15:30:31 -080034
35 virtual status_t addSource(const sp<MediaSource> &source) = 0;
36 virtual bool reachedEOS() = 0;
James Dong6feaa462010-06-20 08:20:54 -070037 virtual status_t start(MetaData *params = NULL) = 0;
James Dongd0366622010-08-18 19:10:39 -070038 virtual status_t stop() = 0;
39 virtual status_t pause() = 0;
40
James Dong18244862010-05-11 14:57:02 -070041 virtual void setMaxFileSize(int64_t bytes) { mMaxFileSizeLimitBytes = bytes; }
42 virtual void setMaxFileDuration(int64_t durationUs) { mMaxFileDurationLimitUs = durationUs; }
James Dongfe1bafe2010-06-25 17:06:47 -070043 virtual void setListener(const sp<IMediaRecorderClient>& listener) {
James Dong18244862010-05-11 14:57:02 -070044 mListener = listener;
45 }
Andreas Huber996dddf2010-01-25 15:30:31 -080046
James Dong3f51fa72010-08-18 03:32:26 -070047 virtual status_t dump(int fd, const Vector<String16>& args) {
48 return OK;
49 }
50
Andreas Huber996dddf2010-01-25 15:30:31 -080051protected:
52 virtual ~MediaWriter() {}
James Dong18244862010-05-11 14:57:02 -070053 int64_t mMaxFileSizeLimitBytes;
54 int64_t mMaxFileDurationLimitUs;
James Dongfe1bafe2010-06-25 17:06:47 -070055 sp<IMediaRecorderClient> mListener;
Andreas Huber996dddf2010-01-25 15:30:31 -080056
James Dong18244862010-05-11 14:57:02 -070057 void notify(int msg, int ext1, int ext2) {
58 if (mListener != NULL) {
59 mListener->notify(msg, ext1, ext2);
60 }
61 }
Andreas Huber996dddf2010-01-25 15:30:31 -080062private:
63 MediaWriter(const MediaWriter &);
64 MediaWriter &operator=(const MediaWriter &);
65};
66
67} // namespace android
68
69#endif // MEDIA_WRITER_H_