blob: f478788936b97ea147820b618887d76a961a8d34 [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
50 status_t start();
51 status_t stop();
52
53 status_t flush();
54
55 status_t queueInputBuffer(
56 size_t index,
Andreas Huberbfc56f42012-04-19 12:47:07 -070057 size_t offset, size_t size, int64_t timeUs, uint32_t flags,
58 AString *errorDetailMsg);
Andreas Huber88572f72012-02-21 11:47:18 -080059
Andreas Huber9e6bcce2012-04-06 12:14:47 -070060 status_t queueSecureInputBuffer(
61 size_t index,
62 size_t offset,
63 const CryptoPlugin::SubSample *subSamples,
64 size_t numSubSamples,
65 const uint8_t key[16],
66 const uint8_t iv[16],
67 CryptoPlugin::Mode mode,
68 int64_t presentationTimeUs,
Andreas Huberbfc56f42012-04-19 12:47:07 -070069 uint32_t flags,
70 AString *errorDetailMsg);
Andreas Huber9e6bcce2012-04-06 12:14:47 -070071
Andreas Huber88572f72012-02-21 11:47:18 -080072 status_t dequeueInputBuffer(size_t *index, int64_t timeoutUs);
73
74 status_t dequeueOutputBuffer(
75 JNIEnv *env, jobject bufferInfo, size_t *index, int64_t timeoutUs);
76
77 status_t releaseOutputBuffer(size_t index, bool render);
78
79 status_t getOutputFormat(JNIEnv *env, jobject *format) const;
80
81 status_t getBuffers(
82 JNIEnv *env, bool input, jobjectArray *bufArray) const;
83
Martin Storsjo056ef2e2012-09-25 11:53:04 +030084 status_t getName(JNIEnv *env, jstring *name) const;
85
Andreas Huberb12a5392012-04-30 14:18:33 -070086 void setVideoScalingMode(int mode);
87
Andreas Huber88572f72012-02-21 11:47:18 -080088protected:
89 virtual ~JMediaCodec();
90
91private:
92 jclass mClass;
93 jweak mObject;
Mathias Agopian52800612013-02-14 17:11:20 -080094 sp<Surface> mSurfaceTextureClient;
Andreas Huber88572f72012-02-21 11:47:18 -080095
96 sp<ALooper> mLooper;
97 sp<MediaCodec> mCodec;
98
99 DISALLOW_EVIL_CONSTRUCTORS(JMediaCodec);
100};
101
102} // namespace android
103
104#endif // _ANDROID_MEDIA_MEDIACODEC_H_