mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 19:42:45 +00:00
62 lines
1.7 KiB
C
62 lines
1.7 KiB
C
#include "nv_avc_dec.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <jni.h>
|
|
|
|
// This function must be called before
|
|
// any other decoding functions
|
|
JNIEXPORT jint JNICALL
|
|
Java_com_limelight_nvstream_av_video_AvcDecoder_init(JNIEnv *env, jobject this, jint width, jint height) {
|
|
return nv_avc_init(width, height);
|
|
}
|
|
|
|
// This function must be called after
|
|
// decoding is finished
|
|
JNIEXPORT void JNICALL
|
|
Java_com_limelight_nvstream_av_video_AvcDecoder_destroy(JNIEnv *env, jobject this) {
|
|
nv_avc_destroy();
|
|
}
|
|
|
|
// The decoded frame is YUV 4:2:0
|
|
// Returns 1 on success, 0 on failure
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_com_limelight_nvstream_av_video_AvcDecoder_getCurrentFrame(JNIEnv *env, jobject this,
|
|
jbyteArray yuvframe, jint size)
|
|
{
|
|
jbyte* jni_yuvframe;
|
|
jboolean ret;
|
|
|
|
jni_yuvframe = (*env)->GetByteArrayElements(env, yuvframe, 0);
|
|
|
|
ret = (nv_avc_get_current_frame(jni_yuvframe, size) != 0) ? JNI_TRUE : JNI_FALSE;
|
|
|
|
(*env)->ReleaseByteArrayElements(env, yuvframe, jni_yuvframe, 0);
|
|
|
|
return ret;
|
|
}
|
|
|
|
JNIEXPORT jint JNICALL
|
|
Java_com_limelight_nvstream_av_video_AvcDecoder_getFrameSize(JNIEnv *env, jobject this) {
|
|
return nv_avc_get_frame_size();
|
|
}
|
|
|
|
// packets must be decoded in order
|
|
// returns 0 on success, < 0 on error
|
|
JNIEXPORT jint JNICALL
|
|
Java_com_limelight_nvstream_av_video_AvcDecoder_decode(
|
|
JNIEnv *env, jobject this, // JNI parameters
|
|
jbyteArray indata, jint inoff, jint inlen)
|
|
{
|
|
jint ret;
|
|
jbyte* jni_input_data;
|
|
|
|
jni_input_data = (*env)->GetByteArrayElements(env, indata, 0);
|
|
|
|
ret = nv_avc_decode(&jni_input_data[inoff], inlen);
|
|
|
|
// The input data isn't changed so it can be safely aborted
|
|
(*env)->ReleaseByteArrayElements(env, indata, jni_input_data, JNI_ABORT);
|
|
|
|
return ret;
|
|
}
|