blob: ccbad8c695dcaa1917d07ca86315470059d2d26b [file] [log] [blame]
Andreas Huber88572f72012-02-21 11:47:18 -08001/*
2 * Copyright 2012, 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 _ANDROID_MEDIA_MEDIAEXTRACTOR_H_
18#define _ANDROID_MEDIA_MEDIAEXTRACTOR_H_
19
20#include <media/stagefright/foundation/ABase.h>
Andreas Huberf2855b32012-04-25 15:57:43 -070021#include <media/stagefright/MediaSource.h>
Marco Nelissenc209a062012-08-24 09:55:44 -070022#include <media/stagefright/DataSource.h>
Andreas Huber88572f72012-02-21 11:47:18 -080023#include <utils/Errors.h>
Andreas Huber07ea4262012-04-11 12:21:20 -070024#include <utils/KeyedVector.h>
Andreas Huber88572f72012-02-21 11:47:18 -080025#include <utils/RefBase.h>
Andreas Huber07ea4262012-04-11 12:21:20 -070026#include <utils/String8.h>
Andreas Huber88572f72012-02-21 11:47:18 -080027
28#include "jni.h"
29
30namespace android {
31
Andreas Huber91befdc2012-04-18 12:19:51 -070032struct MetaData;
Andreas Huber88572f72012-02-21 11:47:18 -080033struct NuMediaExtractor;
34
35struct JMediaExtractor : public RefBase {
36 JMediaExtractor(JNIEnv *env, jobject thiz);
37
Andreas Huber07ea4262012-04-11 12:21:20 -070038 status_t setDataSource(
39 const char *path,
40 const KeyedVector<String8, String8> *headers);
41
42 status_t setDataSource(int fd, off64_t offset, off64_t size);
Marco Nelissenc209a062012-08-24 09:55:44 -070043 status_t setDataSource(const sp<DataSource> &source);
Andreas Huber88572f72012-02-21 11:47:18 -080044
45 size_t countTracks() const;
46 status_t getTrackFormat(size_t index, jobject *format) const;
47
Marco Nelissene20a6d52013-04-08 14:28:55 -070048 status_t getFileFormat(jobject *format) const;
49
Andreas Huber88572f72012-02-21 11:47:18 -080050 status_t selectTrack(size_t index);
Andreas Huberf2855b32012-04-25 15:57:43 -070051 status_t unselectTrack(size_t index);
Andreas Huber88572f72012-02-21 11:47:18 -080052
Andreas Huberf2855b32012-04-25 15:57:43 -070053 status_t seekTo(int64_t timeUs, MediaSource::ReadOptions::SeekMode mode);
Andreas Huber88572f72012-02-21 11:47:18 -080054
55 status_t advance();
56 status_t readSampleData(jobject byteBuf, size_t offset, size_t *sampleSize);
57 status_t getSampleTrackIndex(size_t *trackIndex);
58 status_t getSampleTime(int64_t *sampleTimeUs);
Andreas Huber9b8e4962012-03-26 11:13:27 -070059 status_t getSampleFlags(uint32_t *sampleFlags);
Andreas Huber91befdc2012-04-18 12:19:51 -070060 status_t getSampleMeta(sp<MetaData> *sampleMeta);
Andreas Huber88572f72012-02-21 11:47:18 -080061
Andreas Huber74a78b02012-04-19 16:24:32 -070062 bool getCachedDuration(int64_t *durationUs, bool *eos) const;
63
Andreas Huber88572f72012-02-21 11:47:18 -080064protected:
65 virtual ~JMediaExtractor();
66
67private:
68 jclass mClass;
69 jweak mObject;
70 sp<NuMediaExtractor> mImpl;
71
72 DISALLOW_EVIL_CONSTRUCTORS(JMediaExtractor);
73};
74
75} // namespace android
76
77#endif // _ANDROID_MEDIA_MEDIAEXTRACTOR_H_