Lines Matching refs:JMediaCodec
68 JMediaCodec::JMediaCodec(
94 status_t JMediaCodec::initCheck() const {
98 JMediaCodec::~JMediaCodec() {
109 status_t JMediaCodec::configure(
124 status_t JMediaCodec::start() {
128 status_t JMediaCodec::stop() {
134 status_t JMediaCodec::flush() {
138 status_t JMediaCodec::queueInputBuffer(
146 status_t JMediaCodec::queueSecureInputBuffer(
162 status_t JMediaCodec::dequeueInputBuffer(size_t *index, int64_t timeoutUs) {
166 status_t JMediaCodec::dequeueOutputBuffer(
185 status_t JMediaCodec::releaseOutputBuffer(size_t index, bool render) {
191 status_t JMediaCodec::getOutputFormat(JNIEnv *env, jobject *format) const {
201 status_t JMediaCodec::getBuffers(
264 void JMediaCodec::setVideoScalingMode(int mode) {
276 static sp<JMediaCodec> setMediaCodec(
277 JNIEnv *env, jobject thiz, const sp<JMediaCodec> &codec) {
278 sp<JMediaCodec> old = (JMediaCodec *)env->GetIntField(thiz, gFields.context);
290 static sp<JMediaCodec> getMediaCodec(JNIEnv *env, jobject thiz) {
291 return (JMediaCodec *)env->GetIntField(thiz, gFields.context);
353 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
395 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
410 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
425 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
447 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
473 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
605 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
626 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
648 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
664 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
687 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
708 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
770 sp<JMediaCodec> codec = new JMediaCodec(env, thiz, tmp, nameIsType, encoder);