blob: 2fbbd7236462d92831a9f16e6528014c237fbcb3 [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_MEDIACODEC_H_
18#define _ANDROID_MEDIA_MEDIACODEC_H_
19
20#include "jni.h"
21
Andreas Huber9e6bcce2012-04-06 12:14:47 -070022#include <media/hardware/CryptoAPI.h>
Andreas Huber88572f72012-02-21 11:47:18 -080023#include <media/stagefright/foundation/ABase.h>
24#include <utils/Errors.h>
25#include <utils/RefBase.h>
26
27namespace android {
28
29struct ALooper;
30struct AMessage;
Andreas Huberbfc56f42012-04-19 12:47:07 -070031struct AString;
Andreas Huber8240d922012-04-04 14:06:32 -070032struct ICrypto;
Andy McFaddend47f7d82012-12-18 09:48:38 -080033struct IGraphicBufferProducer;
Andreas Huber88572f72012-02-21 11:47:18 -080034struct MediaCodec;
Mathias Agopian52800612013-02-14 17:11:20 -080035class Surface;
Andreas Huber88572f72012-02-21 11:47:18 -080036
37struct JMediaCodec : public RefBase {
38 JMediaCodec(
39 JNIEnv *env, jobject thiz,
40 const char *name, bool nameIsType, bool encoder);
41
42 status_t initCheck() const;
43
44 status_t configure(
45 const sp<AMessage> &format,
Andy McFaddend47f7d82012-12-18 09:48:38 -080046 const sp<IGraphicBufferProducer> &bufferProducer,
Andreas Huber8240d922012-04-04 14:06:32 -070047 const sp<ICrypto> &crypto,
Andreas Huber88572f72012-02-21 11:47:18 -080048 int flags);
49
Andy McFadden2621e402013-02-19 07:29:21 -080050 status_t createInputSurface(sp<IGraphicBufferProducer>* bufferProducer);
51
Andreas Huber88572f72012-02-21 11:47:18 -080052 status_t start();
53 status_t stop();
54
55 status_t flush();
56
57 status_t queueInputBuffer(
58 size_t index,
Andreas Huberbfc56f42012-04-19 12:47:07 -070059 size_t offset, size_t size, int64_t timeUs, uint32_t flags,
60 AString *errorDetailMsg);
Andreas Huber88572f72012-02-21 11:47:18 -080061
Andreas Huber9e6bcce2012-04-06 12:14:47 -070062 status_t queueSecureInputBuffer(
63 size_t index,
64 size_t offset,
65 const CryptoPlugin::SubSample *subSamples,
66 size_t numSubSamples,
67 const uint8_t key[16],
68 const uint8_t iv[16],
69 CryptoPlugin::Mode mode,
70 int64_t presentationTimeUs,
Andreas Huberbfc56f42012-04-19 12:47:07 -070071 uint32_t flags,
72 AString *errorDetailMsg);
Andreas Huber9e6bcce2012-04-06 12:14:47 -070073
Andreas Huber88572f72012-02-21 11:47:18 -080074 status_t dequeueInputBuffer(size_t *index, int64_t timeoutUs);
75
76 status_t dequeueOutputBuffer(
77 JNIEnv *env, jobject bufferInfo, size_t *index, int64_t timeoutUs);
78
79 status_t releaseOutputBuffer(size_t index, bool render);
80
Andy McFadden2621e402013-02-19 07:29:21 -080081 status_t signalEndOfInputStream();
82
Andreas Huber88572f72012-02-21 11:47:18 -080083 status_t getOutputFormat(JNIEnv *env, jobject *format) const;
84
85 status_t getBuffers(
86 JNIEnv *env, bool input, jobjectArray *bufArray) const;
87
Martin Storsjo056ef2e2012-09-25 11:53:04 +030088 status_t getName(JNIEnv *env, jstring *name) const;
89
Andreas Huber226065b2013-08-12 10:14:11 -070090 status_t setParameters(const sp<AMessage> &params);
91
Andreas Huberb12a5392012-04-30 14:18:33 -070092 void setVideoScalingMode(int mode);
93
Andreas Huber88572f72012-02-21 11:47:18 -080094protected:
95 virtual ~JMediaCodec();
96
97private:
98 jclass mClass;
99 jweak mObject;
Mathias Agopian52800612013-02-14 17:11:20 -0800100 sp<Surface> mSurfaceTextureClient;
Andreas Huber88572f72012-02-21 11:47:18 -0800101
102 sp<ALooper> mLooper;
103 sp<MediaCodec> mCodec;
104
105 DISALLOW_EVIL_CONSTRUCTORS(JMediaCodec);
106};
107
108} // namespace android
109
110#endif // _ANDROID_MEDIA_MEDIACODEC_H_