blob: aaa8421df48e979146a32084d483383bc3eaa45e [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>
Dongwon Kang70d2ba32017-10-11 11:52:33 -070021#include <media/MediaSource.h>
22#include <media/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 Huberd2506a52014-01-29 10:32:46 -080032struct IMediaHTTPService;
Bernhard Rosenkränzer99d61ed2014-11-17 21:15:30 +010033class MetaData;
Andreas Huber88572f72012-02-21 11:47:18 -080034struct NuMediaExtractor;
35
36struct JMediaExtractor : public RefBase {
37 JMediaExtractor(JNIEnv *env, jobject thiz);
38
Andreas Huber07ea4262012-04-11 12:21:20 -070039 status_t setDataSource(
Andreas Huberd2506a52014-01-29 10:32:46 -080040 const sp<IMediaHTTPService> &httpService,
Andreas Huber07ea4262012-04-11 12:21:20 -070041 const char *path,
42 const KeyedVector<String8, String8> *headers);
43
44 status_t setDataSource(int fd, off64_t offset, off64_t size);
Marco Nelissenc209a062012-08-24 09:55:44 -070045 status_t setDataSource(const sp<DataSource> &source);
Andreas Huber88572f72012-02-21 11:47:18 -080046
Chong Zhang2659c2f2017-04-27 13:18:20 -070047 status_t setMediaCas(JNIEnv *env, jobject casBinderObj);
Chong Zhangd5927ae2017-01-03 11:07:18 -080048
Andreas Huber88572f72012-02-21 11:47:18 -080049 size_t countTracks() const;
50 status_t getTrackFormat(size_t index, jobject *format) const;
51
Marco Nelissene20a6d52013-04-08 14:28:55 -070052 status_t getFileFormat(jobject *format) const;
53
Andreas Huber88572f72012-02-21 11:47:18 -080054 status_t selectTrack(size_t index);
Andreas Huberf2855b32012-04-25 15:57:43 -070055 status_t unselectTrack(size_t index);
Andreas Huber88572f72012-02-21 11:47:18 -080056
Andreas Huberf2855b32012-04-25 15:57:43 -070057 status_t seekTo(int64_t timeUs, MediaSource::ReadOptions::SeekMode mode);
Andreas Huber88572f72012-02-21 11:47:18 -080058
59 status_t advance();
60 status_t readSampleData(jobject byteBuf, size_t offset, size_t *sampleSize);
61 status_t getSampleTrackIndex(size_t *trackIndex);
62 status_t getSampleTime(int64_t *sampleTimeUs);
Robert Shihd908f382018-01-23 15:31:37 -080063 status_t getSampleSize(size_t *sampleSize);
Andreas Huber9b8e4962012-03-26 11:13:27 -070064 status_t getSampleFlags(uint32_t *sampleFlags);
Andreas Huber91befdc2012-04-18 12:19:51 -070065 status_t getSampleMeta(sp<MetaData> *sampleMeta);
Ray Essickba5ce2c2017-02-07 09:50:47 -080066 status_t getMetrics(Parcel *reply) const;
Andreas Huber88572f72012-02-21 11:47:18 -080067
Andreas Huber74a78b02012-04-19 16:24:32 -070068 bool getCachedDuration(int64_t *durationUs, bool *eos) const;
69
Andreas Huber88572f72012-02-21 11:47:18 -080070protected:
71 virtual ~JMediaExtractor();
72
73private:
74 jclass mClass;
75 jweak mObject;
76 sp<NuMediaExtractor> mImpl;
77
78 DISALLOW_EVIL_CONSTRUCTORS(JMediaExtractor);
79};
80
81} // namespace android
82
83#endif // _ANDROID_MEDIA_MEDIAEXTRACTOR_H_