diff --git a/src/native/ffmpeg/ffmpeg-01-libavcodec_libx264.c-zero_latency.patch b/src/native/ffmpeg/ffmpeg-01-libavcodec_libx264.c-zero_latency.patch deleted file mode 100644 index da20a326b0e790073fd1d1ba0402dbffbee611d8..0000000000000000000000000000000000000000 --- a/src/native/ffmpeg/ffmpeg-01-libavcodec_libx264.c-zero_latency.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/libavcodec/libx264.c 2011-04-30 17:06:44.304599700 +0300 -+++ b/libavcodec/libx264.c 2011-04-16 05:01:34.391924200 +0300 -@@ -303,6 +303,13 @@ - if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) - x4->params.b_repeat_headers = 0; - -+ /* zero latency */ -+ x4->params.rc.i_lookahead = 0; -+ x4->params.i_sync_lookahead = 0; -+ x4->params.i_bframe = 0; -+ x4->params.b_sliced_threads = 1; -+ x4->params.b_vfr_input = 0; -+ - x4->enc = x264_encoder_open(&x4->params); - if (!x4->enc) - return -1; diff --git a/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.c b/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.c index c1ff3bef8e6c77458c936b8f9b3bb3c985717089..eff149c4a15acb5da612b9ae178887301ee7d47b 100644 --- a/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.c +++ b/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.c @@ -7,84 +7,148 @@ #include "org_jitsi_impl_neomedia_codec_FFmpeg.h" +#include <stdint.h> +#include <stdio.h> #include <string.h> #include <libavutil/avutil.h> +#include <libavutil/opt.h> #include <libavcodec/avcodec.h> #include <libavformat/avformat.h> #include <libavfilter/avfilter.h> #include <libavfilter/avfiltergraph.h> -#include <libavfilter/vsrc_buffer.h> +#include <libavfilter/buffersrc.h> +#include <libavfilter/formats.h> /* ff_default_query_formats, ff_make_format_list, ff_set_common_formats */ +#include <libavfilter/internal.h> /* ff_request_frame */ #include <libswscale/swscale.h> #define DEFINE_AVCODECCONTEXT_F_PROPERTY_SETTER(name, property) \ JNIEXPORT void JNICALL \ Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1##name \ - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jfloat property) \ + (JNIEnv *env, jclass clazz, jlong ctx, jfloat property) \ { \ - ((AVCodecContext *) avctx)->property = (float) property; \ + ((AVCodecContext *) (intptr_t) ctx)->property = (float) property; \ } #define DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(name, property) \ JNIEXPORT void JNICALL \ Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1##name \ - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jint property) \ + (JNIEnv *env, jclass clazz, jlong ctx, jint property) \ { \ - ((AVCodecContext *) avctx)->property = (int) property; \ + ((AVCodecContext *) (intptr_t) ctx)->property = (int) property; \ } JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1free - (JNIEnv *jniEnv, jclass clazz, jlong ptr) + (JNIEnv *env, jclass clazz, jlong ptr) { - av_free ((void *) ptr); + av_free((void *) (intptr_t) ptr); } JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1malloc - (JNIEnv *jniEnv, jclass clazz, jint size) + (JNIEnv *env, jclass clazz, jint size) { - return (jlong) av_malloc ((unsigned int) size); + return (jlong) (intptr_t) av_malloc((unsigned int) size); } JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1register_1all - (JNIEnv *jniEnv, jclass clazz) + (JNIEnv *env, jclass clazz) { - av_register_all (); + av_register_all(); +} + +JNIEXPORT jint JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1set_1options_1string + (JNIEnv *env, jclass clazz, + jlong ctx, jstring opts, jstring key_value_sep, jstring pairs_sep) +{ + const char *opts_; + jint err = 0; + + if (opts) + { + opts_ = (*env)->GetStringUTFChars(env, opts, NULL); + if (!opts_) + err = AVERROR(ENOMEM); + } + else + opts_ = NULL; + if (0 == err) + { + const char *key_value_sep_; + + if (key_value_sep) + { + key_value_sep_ + = (*env)->GetStringUTFChars(env, key_value_sep, NULL); + if (!key_value_sep_) + err = AVERROR(ENOMEM); + } + else + key_value_sep_ = NULL; + if (0 == err) + { + const char *pairs_sep_; + + if (pairs_sep) + { + pairs_sep_ = (*env)->GetStringUTFChars(env, pairs_sep, NULL); + if (!pairs_sep_) + err = AVERROR(ENOMEM); + } + else + pairs_sep_ = NULL; + if (0 == err) + { + err + = av_set_options_string( + (void *) (intptr_t) ctx, + opts_, + key_value_sep_, pairs_sep_); + (*env)->ReleaseStringUTFChars(env, pairs_sep, pairs_sep_); + } + (*env)->ReleaseStringUTFChars(env, key_value_sep, key_value_sep_); + } + (*env)->ReleaseStringUTFChars(env, opts, opts_); + } + return err; } JNIEXPORT jlong JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1alloc_1context - (JNIEnv *jniEnv, jclass clazz) +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1alloc_1context3 + (JNIEnv *env, jclass clazz, jlong codec) { - return (jlong) avcodec_alloc_context (); + return + (jlong) (intptr_t) + avcodec_alloc_context3((const AVCodec *) (intptr_t) codec); } JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1alloc_1frame - (JNIEnv *jniEnv, jclass clazz) + (JNIEnv *env, jclass clazz) { - return (jlong) avcodec_alloc_frame (); + return (jlong) (intptr_t) avcodec_alloc_frame(); } JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1close - (JNIEnv *jniEnv, jclass clazz, jlong avctx) + (JNIEnv *env, jclass clazz, jlong ctx) { - return (jint) avcodec_close ((AVCodecContext *) avctx); + return (jint) avcodec_close((AVCodecContext *) (intptr_t) ctx); } JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1decode_1video__JJ_3Z_3BI - (JNIEnv *jniEnv, jclass clazz, - jlong avctx, + (JNIEnv *env, jclass clazz, + jlong ctx, jlong frame, jbooleanArray got_picture, jbyteArray buf, jint buf_size) { jint ret; int n_got_picture; if (buf) { - jbyte *buf_ptr = (*jniEnv)->GetByteArrayElements (jniEnv, buf, NULL); + jbyte *buf_ptr = (*env)->GetByteArrayElements (env, buf, NULL); if (buf_ptr) { AVPacket avpkt; @@ -95,17 +159,17 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1decode_1video__JJ_3Z_3BI ret = avcodec_decode_video2( - (AVCodecContext *) avctx, - (AVFrame *) frame, + (AVCodecContext *) (intptr_t) ctx, + (AVFrame *) (intptr_t) frame, &n_got_picture, &avpkt); - (*jniEnv)->ReleaseByteArrayElements (jniEnv, buf, buf_ptr, 0); + (*env)->ReleaseByteArrayElements (env, buf, buf_ptr, 0); if (got_picture) { jboolean j_got_picture = n_got_picture ? JNI_TRUE : JNI_FALSE; - (*jniEnv)->SetBooleanArrayRegion (jniEnv, got_picture, 0, 1, + (*env)->SetBooleanArrayRegion (env, got_picture, 0, 1, &j_got_picture); } } else @@ -117,20 +181,20 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1decode_1video__JJ_3Z_3BI JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1decode_1video__JJJI - (JNIEnv *jniEnv, jclass clazz, - jlong avctx, jlong avframe, jlong src, jint src_length) + (JNIEnv *env, jclass clazz, + jlong ctx, jlong avframe, jlong src, jint src_length) { AVPacket avpkt; int got_picture = 0; int ret = -1; av_init_packet(&avpkt); - avpkt.data = (uint8_t*)src; - avpkt.size = (int)src_length; + avpkt.data = (uint8_t*) (intptr_t) src; + avpkt.size = (int) src_length; ret = avcodec_decode_video2( - (AVCodecContext *) avctx, + (AVCodecContext *) (intptr_t) ctx, (AVFrame *)avframe, &got_picture, &avpkt); return got_picture ? ret : -1; @@ -138,32 +202,32 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1decode_1video__JJJI JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1encode_1audio - (JNIEnv *jniEnv, jclass clazz, - jlong avctx, + (JNIEnv *env, jclass clazz, + jlong ctx, jbyteArray buf, jint buf_offset, jint buf_size, jbyteArray samples, jint samples_offset) { jint ret; if (buf) { - jbyte *buf_ptr = (*jniEnv)->GetByteArrayElements (jniEnv, buf, NULL); + jbyte *buf_ptr = (*env)->GetByteArrayElements (env, buf, NULL); if (buf_ptr) { jbyte *samples_ptr - = (*jniEnv)->GetByteArrayElements (jniEnv, samples, NULL); + = (*env)->GetByteArrayElements (env, samples, NULL); if (samples_ptr) { ret = (jint) avcodec_encode_audio( - (AVCodecContext *) avctx, + (AVCodecContext *) (intptr_t) ctx, (uint8_t *) (buf_ptr + buf_offset), (int) buf_size, (const short *) (samples_ptr + samples_offset)); - (*jniEnv)->ReleaseByteArrayElements( - jniEnv, + (*env)->ReleaseByteArrayElements( + env, samples, samples_ptr, JNI_ABORT); } else ret = -1; - (*jniEnv)->ReleaseByteArrayElements (jniEnv, buf, buf_ptr, 0); + (*env)->ReleaseByteArrayElements (env, buf, buf_ptr, 0); } else ret = -1; } else @@ -173,20 +237,22 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1encode_1audio JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1encode_1video - (JNIEnv *jniEnv, jclass clazz, - jlong avctx, jbyteArray buf, jint buf_size, jlong frame) + (JNIEnv *env, jclass clazz, + jlong ctx, jbyteArray buf, jint buf_size, jlong frame) { jint ret; if (buf) { - jbyte *buf_ptr = (*jniEnv)->GetByteArrayElements (jniEnv, buf, NULL); + jbyte *buf_ptr = (*env)->GetByteArrayElements (env, buf, NULL); if (buf_ptr) { - ret = (jint) - avcodec_encode_video ((AVCodecContext *) avctx, - (uint8_t *) buf_ptr, (int) buf_size, - (const AVFrame *) frame); - (*jniEnv)->ReleaseByteArrayElements (jniEnv, buf, buf_ptr, 0); + ret + = (jint) + avcodec_encode_video( + (AVCodecContext *) (intptr_t) ctx, + (uint8_t *) buf_ptr, (int) buf_size, + (const AVFrame *) (intptr_t) frame); + (*env)->ReleaseByteArrayElements (env, buf, buf_ptr, 0); } else ret = -1; } else @@ -196,20 +262,96 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1encode_1video JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1find_1decoder - (JNIEnv *jniEnv, jclass clazz, jint id) + (JNIEnv *env, jclass clazz, jint id) { return (jlong) avcodec_find_decoder ((enum CodecID) id); } JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1find_1encoder - (JNIEnv *jniEnv, jclass clazz, jint id) + (JNIEnv *env, jclass clazz, jint id) { return (jlong) avcodec_find_encoder ((enum CodecID) id); } +JNIEXPORT jint JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1open2 + (JNIEnv *env, jclass clazz, jlong ctx, jlong codec, jobjectArray options) +{ + AVDictionary *options_ = NULL; + int ret = 0; + + if (options) + { + jsize length = (*env)->GetArrayLength(env, options); + + if (length) + { + if (length % 2) + ret = AVERROR(EINVAL); + else + { + jsize i = 0; + + while ((0 <= ret) && (i < length)) + { + jstring key + = (jstring) + (*env)->GetObjectArrayElement(env, options, i++); + const char *key_; + + if (key) + { + key_ = (*env)->GetStringUTFChars(env, key, NULL); + if (!key_) + ret = AVERROR(ENOMEM); + } + else + key_ = NULL; + if (0 <= ret) + { + jstring value + = (jstring) + (*env)->GetObjectArrayElement( + env, + options, i++); + const char *value_; + + if (value) + { + value_ + = (*env)->GetStringUTFChars(env, value, NULL); + if (!value_) + ret = AVERROR(ENOMEM); + } + else + value_ = NULL; + if (0 <= ret) + { + ret = av_dict_set(&options_, key_, value_, 0); + (*env)->ReleaseStringUTFChars(env, value, value_); + } + (*env)->ReleaseStringUTFChars(env, key, key_); + } + } + } + } + } + if (0 <= ret) + { + ret + = avcodec_open2( + (AVCodecContext *) (intptr_t) ctx, + (AVCodec *) (intptr_t) codec, + &options_); + } + if (options_) + av_dict_free(&options_); + return ret; +} + /** - * Implements a log callback that does not log anything in order to prevent logs + * Implements a log callback which does not log anything and thus prevents logs * from appearing on stdout and/or stderr. */ static void @@ -218,67 +360,53 @@ null_log_callback(void* ptr, int level, const char* fmt, va_list vl) } JNIEXPORT void JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1init - (JNIEnv *jniEnv, jclass clazz) +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1register_1all + (JNIEnv *env, jclass clazz) { - avcodec_init (); + avcodec_register_all(); av_log_set_callback(null_log_callback); } -JNIEXPORT jint JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1open - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jlong codec) -{ - return (jint) avcodec_open ((AVCodecContext *) avctx, (AVCodec *) codec); -} - JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1add_1flags - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jint flags) + (JNIEnv *env, jclass clazz, jlong ctx, jint flags) { - ((AVCodecContext *) avctx)->flags |= (int) flags; + ((AVCodecContext *) (intptr_t) ctx)->flags |= (int) flags; } JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1add_1flags2 - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jint flags2) + (JNIEnv *env, jclass clazz, jlong ctx, jint flags2) { - ((AVCodecContext *) avctx)->flags2 |= (int) flags2; -} - -JNIEXPORT void JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1add_1partitions - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jint partitions) -{ - ((AVCodecContext *) avctx)->partitions |= (int) partitions; + ((AVCodecContext *) (intptr_t) ctx)->flags2 |= (int) flags2; } JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1frame_1size - (JNIEnv *jniEnv, jclass clazz, jlong avctx) + (JNIEnv *env, jclass clazz, jlong ctx) { - return (jint) (((AVCodecContext *) avctx)->frame_size); + return (jint) (((AVCodecContext *) (intptr_t) ctx)->frame_size); } JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1height - (JNIEnv *jniEnv, jclass clazz, jlong avctx) + (JNIEnv *env, jclass clazz, jlong ctx) { - return (jint) (((AVCodecContext *) avctx)->height); + return (jint) (((AVCodecContext *) (intptr_t) ctx)->height); } JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1pix_1fmt - (JNIEnv *jniEnv, jclass clazz, jlong avctx) + (JNIEnv *env, jclass clazz, jlong ctx) { - return (jint) (((AVCodecContext *) avctx)->pix_fmt); + return (jint) (((AVCodecContext *) (intptr_t) ctx)->pix_fmt); } JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1width - (JNIEnv *jniEnv, jclass clazz, jlong avctx) + (JNIEnv *env, jclass clazz, jlong ctx) { - return (jint) (((AVCodecContext *) avctx)->width); + return (jint) (((AVCodecContext *) (intptr_t) ctx)->width); } DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(b_1frame_1strategy, b_frame_strategy) @@ -286,10 +414,6 @@ DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(bit_1rate, bit_rate) DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(bit_1rate_1tolerance, bit_rate_tolerance) DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(channels, channels) DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(chromaoffset, chromaoffset) - -DEFINE_AVCODECCONTEXT_F_PROPERTY_SETTER(crf, crf) - -DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(deblockbeta, deblockbeta) DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(gop_1size, gop_size) DEFINE_AVCODECCONTEXT_F_PROPERTY_SETTER(i_1quant_1factor, i_quant_factor) @@ -308,36 +432,35 @@ DEFINE_AVCODECCONTEXT_F_PROPERTY_SETTER(qcompress, qcompress) JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1quantizer - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jint qmin, jint qmax, + (JNIEnv *env, jclass clazz, jlong ctx, jint qmin, jint qmax, jint max_qdiff) { - AVCodecContext *n_avctx = (AVCodecContext *) avctx; + AVCodecContext *ctx_ = (AVCodecContext *) (intptr_t) ctx; - n_avctx->qmin = (int) qmin; - n_avctx->qmax = (int) qmax; - n_avctx->max_qdiff = (int) max_qdiff; + ctx_->qmin = (int) qmin; + ctx_->qmax = (int) qmax; + ctx_->max_qdiff = (int) max_qdiff; } DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(rc_1buffer_1size, rc_buffer_size) JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1rc_1eq - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jstring rc_eq) + (JNIEnv *env, jclass clazz, jlong ctx, jstring rc_eq) { - char *n_rc_eq; + char *s; if (rc_eq) { - const char * j_rc_eq = - (*jniEnv)->GetStringUTFChars (jniEnv, rc_eq, NULL); + const char *js = (*env)->GetStringUTFChars(env, rc_eq, NULL); - if (j_rc_eq) { - n_rc_eq = strdup (j_rc_eq); - (*jniEnv)->ReleaseStringUTFChars (jniEnv, rc_eq, j_rc_eq); + if (js) { + s = strdup(js); + (*env)->ReleaseStringUTFChars(env, rc_eq, js); } else - n_rc_eq = NULL; + s = NULL; } else - n_rc_eq = NULL; - ((AVCodecContext *) avctx)->rc_eq = n_rc_eq; + s = NULL; + ((AVCodecContext *) (intptr_t) ctx)->rc_eq = s; } DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(rc_1max_1rate, rc_max_rate) @@ -346,10 +469,10 @@ DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(rtp_1payload_1size, rtp_payload_size) JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1sample_1aspect_1ratio - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jint num, jint den) + (JNIEnv *env, jclass clazz, jlong ctx, jint num, jint den) { - AVRational *sample_aspect_ratio = - &(((AVCodecContext *) avctx)->sample_aspect_ratio); + AVRational *sample_aspect_ratio + = &(((AVCodecContext *) (intptr_t) ctx)->sample_aspect_ratio); sample_aspect_ratio->num = (int) num; sample_aspect_ratio->den = (int) den; @@ -361,12 +484,12 @@ DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(scenechange_1threshold, scenechange_thre JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1size - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jint width, jint height) + (JNIEnv *env, jclass clazz, jlong ctx, jint width, jint height) { - AVCodecContext *n_avctx = (AVCodecContext *) avctx; + AVCodecContext *ctx_ = (AVCodecContext *) (intptr_t) ctx; - n_avctx->width = (int) width; - n_avctx->height = (int) height; + ctx_->width = (int) width; + ctx_->height = (int) height; } DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(thread_1count, thread_count) @@ -374,9 +497,9 @@ DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(ticks_1per_1frame, ticks_per_frame) JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1time_1base - (JNIEnv *jniEnv, jclass clazz, jlong avctx, jint num, jint den) + (JNIEnv *env, jclass clazz, jlong ctx, jint num, jint den) { - AVRational *time_base = &(((AVCodecContext *) avctx)->time_base); + AVRational *time_base = &(((AVCodecContext *) (intptr_t) ctx)->time_base); time_base->num = (int) num; time_base->den = (int) den; @@ -385,85 +508,310 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1time_1base DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(trellis, trellis) DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(workaround_1bugs, workaround_bugs) +JNIEXPORT jlong JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1alloc + (JNIEnv *env, jclass clazz) +{ + return (jlong) (intptr_t) avfilter_graph_alloc(); +} + +JNIEXPORT jint JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1config + (JNIEnv *env, jclass clazz, jlong graph, jlong log_ctx) +{ + return + (jint) + avfilter_graph_config( + (AVFilterGraph *) (intptr_t) graph, + (AVClass *) (intptr_t) log_ctx); +} + +JNIEXPORT void JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1free + (JNIEnv *env, jclass clazz, jlong graph) +{ + AVFilterGraph *graph_ = (AVFilterGraph *) (intptr_t) graph; + + avfilter_graph_free(&graph_); +} + +JNIEXPORT jlong JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1get_1filter + (JNIEnv *env, jclass clazz, jlong graph, jstring name) +{ + const char *name_ = (*env)->GetStringUTFChars(env, name, NULL); + AVFilterContext *filter; + + if (name_) + { + filter + = avfilter_graph_get_filter( + (AVFilterGraph *) (intptr_t) graph, + (char *) name_); + (*env)->ReleaseStringUTFChars(env, name, name_); + } + else + filter = NULL; + return (jlong) (intptr_t) filter; +} + +static int +ffsink_end_frame(AVFilterLink *link) +{ + if (link->cur_buf) + link->dst->priv = avfilter_ref_buffer(link->cur_buf, ~0); + return 0; +} + +static int +ffsink_query_formats(AVFilterContext *ctx) +{ + AVFilterContext *src = ctx; + int err; + + /* Find buffer. */ + while (src && src->nb_inputs && src->inputs) + { + AVFilterLink *link = src->inputs[0]; + + if (link) + src = link->src; + else + break; + } + + /* Make ffsink output in the format in which buffer inputs. */ + if (src) + { + const int pix_fmts[] = { src->outputs[0]->in_formats->formats[0], -1 }; + + ff_set_common_formats(ctx, ff_make_format_list(pix_fmts)); + err = 0; + } + else + err = ff_default_query_formats(ctx); + return err; +} + +static void +ffsink_uninit(AVFilterContext *ctx) +{ + ctx->priv = NULL; +} + +JNIEXPORT jint JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1parse + (JNIEnv *env, jclass clazz, + jlong graph, jstring filters, jlong inputs, jlong outputs, jlong log_ctx) +{ + const char *filters_ = (*env)->GetStringUTFChars(env, filters, NULL); + int ret; + + if (filters_) + { + AVFilterGraph *graph_ = (AVFilterGraph *) (intptr_t) graph; + + ret + = avfilter_graph_parse( + graph_, + filters_, + (AVFilterInOut **) (intptr_t) inputs, + (AVFilterInOut **) (intptr_t) outputs, + (AVClass *) (intptr_t) log_ctx); + + /* + * FIXME The implementation at the time of this writing presumes that + * the first filter is buffer, the last filter is nullsink meant to be + * ffsink and the ffsink is expected to output in the format in which + * the buffer inputs. + */ + if (0 == ret) + { + /* Turn nullsink into ffsink. */ + unsigned filterCount = graph_->filter_count; + + if (filterCount) + { + AVFilterContext *ffsink = graph_->filters[filterCount - 1]; + + /* + * Make sure query_format of ffsink outputs in the format in + * which buffer inputs. Otherwise, the output format may end up + * different on the C and Java sides. + */ + ffsink->filter->uninit = ffsink_uninit; + ffsink->priv = NULL; + ffsink->filter->query_formats = ffsink_query_formats; + + ffsink->input_pads->end_frame = ffsink_end_frame; + ffsink->input_pads->min_perms = AV_PERM_READ; + ffsink->input_pads->start_frame = NULL; + } + } + + (*env)->ReleaseStringUTFChars(env, filters, filters_); + } + else + ret = AVERROR(ENOMEM); + return (jint) ret; +} + +JNIEXPORT void JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1register_1all + (JNIEnv *env, jclass clazz) +{ + avfilter_register_all(); +} + +JNIEXPORT void JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1unref_1buffer + (JNIEnv *env, jclass clazz, jlong ref) +{ + avfilter_unref_buffer((AVFilterBufferRef *) (intptr_t) ref); +} + JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1get_1pts - (JNIEnv *jniEnv, jclass clazz, jlong frame) + (JNIEnv *env, jclass clazz, jlong frame) { - return (jlong) (((AVFrame *) frame)->pts); + return (jlong) (((AVFrame *) (intptr_t) frame)->pts); } JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1set_1data - (JNIEnv *jniEnv, jclass clazz, jlong frame, jlong data0, jlong offset1, - jlong offset2) + (JNIEnv *env, jclass clazz, + jlong frame, jlong data0, jlong offset1, jlong offset2) { - AVFrame *n_frame = (AVFrame *) frame; + AVFrame *frame_ = (AVFrame *) (intptr_t) frame; - n_frame->data[0] = (uint8_t *) data0; - n_frame->data[1] = n_frame->data[0] + offset1; - n_frame->data[2] = n_frame->data[1] + offset2; + frame_->data[0] = (uint8_t *) data0; + frame_->data[1] = frame_->data[0] + offset1; + frame_->data[2] = frame_->data[1] + offset2; } JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1set_1key_1frame - (JNIEnv *jniEnv, jclass clazz, jlong frame, jboolean key_frame) + (JNIEnv *env, jclass clazz, jlong frame, jboolean key_frame) { - ((AVFrame *) frame)->key_frame = (JNI_TRUE == key_frame) ? 1 : 0; - ((AVFrame *) frame)->pict_type = (JNI_TRUE == key_frame) ? FF_I_TYPE : 0; + AVFrame *frame_ = (AVFrame *) (intptr_t) frame; + + if (JNI_TRUE == key_frame) + { + frame_->key_frame = 1; + frame_->pict_type = AV_PICTURE_TYPE_I; + } + else + { + frame_->key_frame = 0; + frame_->pict_type = 0; + } } JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1set_1linesize - (JNIEnv *jniEnv, jclass clazz, jlong frame, jint linesize0, + (JNIEnv *env, jclass clazz, jlong frame, jint linesize0, jint linesize1, jint linesize2) { - AVFrame *n_frame = (AVFrame *) frame; + AVFrame *frame_ = (AVFrame *) (intptr_t) frame; - n_frame->linesize[0] = (int) linesize0; - n_frame->linesize[1] = (int) linesize1; - n_frame->linesize[2] = (int) linesize2; + frame_->linesize[0] = (int) linesize0; + frame_->linesize[1] = (int) linesize1; + frame_->linesize[2] = (int) linesize2; } JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avpicture_1fill - (JNIEnv *jniEnv, jclass clazz, jlong picture, jlong ptr, jint pix_fmt, + (JNIEnv *env, jclass clazz, jlong picture, jlong ptr, jint pix_fmt, jint width, jint height) { - return (jint) - avpicture_fill ((AVPicture *) picture, (uint8_t *) ptr, (int) pix_fmt, - (int) width, (int) height); + return + (jint) + avpicture_fill( + (AVPicture *) (intptr_t) picture, + (uint8_t *) (intptr_t) ptr, + (int) pix_fmt, + (int) width, (int) height); } JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avpicture_1get_1data0 - (JNIEnv *jniEnv, jclass clazz, jlong picture) + (JNIEnv *env, jclass clazz, jlong picture) { - return (jlong) (((AVPicture *) picture)->data[0]); + return (jlong) (((AVPicture *) (intptr_t) picture)->data[0]); } JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avpicture_1get_1size - (JNIEnv *jniEnv, jclass clazz, jint pix_fmt, jint width, jint height) + (JNIEnv *env, jclass clazz, jint pix_fmt, jint width, jint height) { return (jint) avpicture_get_size ((int) pix_fmt, (int) width, (int) height); } +JNIEXPORT jlong JNICALL +Java_org_jitsi_impl_neomedia_codec_FFmpeg_get_1filtered_1video_1frame + (JNIEnv *env, jclass clazz, + jlong input, jint width, jint height, jint pixFmt, + jlong buffer, jlong ffsink, jlong output) +{ + AVFrame *input_ = (AVFrame *) (intptr_t) input; + AVFilterContext *buffer_ = (AVFilterContext *) (intptr_t) buffer; + AVFilterBufferRef *ref = NULL; + + input_->width = width; + input_->height = height; + input_->format = pixFmt; + if (av_buffersrc_write_frame(buffer_, input_) == 0) + { + AVFilterContext *ffsink_ = (AVFilterContext *) (intptr_t) ffsink; + + if (ff_request_frame(ffsink_->inputs[0]) == 0) + { + ref = (AVFilterBufferRef *) (ffsink_->priv); + if (ref) + { + AVFrame *output_ = (AVFrame *) (intptr_t) output; + + /* + * The data of cur_buf will be returned into output so it needs + * to exist at least while output needs it. So take ownership of + * cur_buf and the user of output will unref it when they are + * done with output. + */ + ffsink_->priv = NULL; + + memcpy(output_->data, ref->data, sizeof(output_->data)); + memcpy( + output_->linesize, + ref->linesize, + sizeof(output_->linesize)); + output_->interlaced_frame = ref->video->interlaced; + output_->top_field_first = ref->video->top_field_first; + } + } + } + return (jlong) ref; +} + JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_memcpy___3IIIJ - (JNIEnv *jniEnv, jclass clazz, jintArray dst, jint dst_offset, - jint dst_length, jlong src) + (JNIEnv *env, jclass clazz, + jintArray dst, jint dst_offset, jint dst_length, jlong src) { - (*jniEnv) - ->SetIntArrayRegion (jniEnv, dst, dst_offset, dst_length, (jint *) src); + (*env)->SetIntArrayRegion( + env, + dst, dst_offset, dst_length, + (jint *) (intptr_t) src); } JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_memcpy__J_3BII - (JNIEnv *jniEnv, jclass clazz, jlong dst, jbyteArray src, + (JNIEnv *env, jclass clazz, jlong dst, jbyteArray src, jint src_offset, jint src_length) { - (*jniEnv)->GetByteArrayRegion (jniEnv, src, src_offset, src_length, - (jbyte *) dst); + (*env)->GetByteArrayRegion( + env, + src, src_offset, src_length, + (jbyte *) (intptr_t) dst); } JNIEXPORT jint JNICALL @@ -482,10 +830,10 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1BGR32_11 JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1RGB24 - (JNIEnv *jniEnv, jclass clazz) + (JNIEnv *env, jclass clazz) { uint32_t test = 1; - int little_endian = *((uint8_t*)&test); + int little_endian = *((uint8_t*) &test); return little_endian ? PIX_FMT_BGR24 : PIX_FMT_RGB24; } @@ -506,20 +854,20 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1RGB32_11 JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1freeContext - (JNIEnv *jniEnv, jclass clazz, jlong context) + (JNIEnv *env, jclass clazz, jlong ctx) { - sws_freeContext ((struct SwsContext *) context); + sws_freeContext((struct SwsContext *) (intptr_t) ctx); } JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1getCachedContext - (JNIEnv *jniEnv, jclass clazz, jlong context, jint srcW, jint srcH, + (JNIEnv *env, jclass clazz, jlong ctx, jint srcW, jint srcH, jint srcFormat, jint dstW, jint dstH, jint dstFormat, jint flags) { return (jlong) sws_getCachedContext( - (struct SwsContext *) context, + (struct SwsContext *) (intptr_t) ctx, (int) srcW, (int) srcH, (enum PixelFormat) srcFormat, (int) dstW, (int) dstH, (enum PixelFormat) dstFormat, (int) flags, @@ -528,29 +876,30 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1getCachedContext JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1scale__JJIILjava_lang_Object_2III - (JNIEnv *jniEnv, jclass clazz, jlong context, jlong src, jint srcSliceY, + (JNIEnv *env, jclass clazz, jlong ctx, jlong src, jint srcSliceY, jint srcSliceH, jobject dst, jint dstFormat, jint dstW, jint dstH) { AVPicture *srcPicture; uint8_t *dstPtr; int ret; - srcPicture = (AVPicture *) src; - dstPtr = (*jniEnv)->GetPrimitiveArrayCritical (jniEnv, dst, NULL); + srcPicture = (AVPicture *) (intptr_t) src; + dstPtr = (*env)->GetPrimitiveArrayCritical(env, dst, NULL); if (dstPtr) { AVPicture dstPicture; /* Turn the bytes into an AVPicture. */ avpicture_fill( - &dstPicture, dstPtr, (int) dstFormat, (int) dstW, (int) dstH); + &dstPicture, + dstPtr, (int) dstFormat, (int) dstW, (int) dstH); ret = sws_scale( - (struct SwsContext *) context, + (struct SwsContext *) (intptr_t) ctx, (const uint8_t * const *) srcPicture->data, (int *) srcPicture->linesize, (int) srcSliceY, (int) srcSliceH, (uint8_t **) dstPicture.data, (int *) dstPicture.linesize); - (*jniEnv)->ReleasePrimitiveArrayCritical (jniEnv, dst, dstPtr, 0); + (*env)->ReleasePrimitiveArrayCritical(env, dst, dstPtr, 0); } else ret = -1; @@ -559,216 +908,29 @@ Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1scale__JJIILjava_lang_Object_2III JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1scale__JLjava_lang_Object_2IIIIILjava_lang_Object_2III - (JNIEnv *jniEnv, jclass class, jlong context, jobject src, + (JNIEnv *env, jclass class, jlong ctx, jobject src, jint srcFormat, jint srcW, jint srcH, jint srcSliceY, jint srcSliceH, jobject dst, jint dstFormat, jint dstW, jint dstH) { uint8_t *srcPtr; jint ret; - srcPtr = (*jniEnv)->GetPrimitiveArrayCritical (jniEnv, src, NULL); + srcPtr = (*env)->GetPrimitiveArrayCritical(env, src, NULL); if (srcPtr) { AVPicture srcPicture; avpicture_fill( - &srcPicture, srcPtr, (int) srcFormat, (int) srcW, (int) srcH); + &srcPicture, + srcPtr, (int) srcFormat, (int) srcW, (int) srcH); ret = Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1scale__JJIILjava_lang_Object_2III( - jniEnv, class, - context, - (jlong) &srcPicture, srcSliceY, srcSliceH, + env, class, + ctx, + (jlong) (intptr_t) &srcPicture, srcSliceY, srcSliceH, dst, dstFormat, dstW, dstH); - (*jniEnv)->ReleasePrimitiveArrayCritical (jniEnv, src, srcPtr, 0); + (*env)->ReleasePrimitiveArrayCritical(env, src, srcPtr, 0); } else ret = -1; return ret; } - -JNIEXPORT jlong JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1alloc - (JNIEnv *jniEnv, jclass clazz) -{ - return (jlong) avfilter_graph_alloc(); -} - -JNIEXPORT jint JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1config - (JNIEnv *jniEnv, jclass clazz, jlong graph, jlong log_ctx) -{ - return - (jint) - avfilter_graph_config((AVFilterGraph *) graph, (AVClass *) log_ctx); -} - -JNIEXPORT void JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1free - (JNIEnv *jniEnv, jclass clazz, jlong graph) -{ - AVFilterGraph *graph_ = (AVFilterGraph *) graph; - - avfilter_graph_free(&graph_); -} - -JNIEXPORT jlong JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1get_1filter - (JNIEnv *jniEnv, jclass clazz, jlong graph, jstring name) -{ - const char *name_ = (*jniEnv)->GetStringUTFChars(jniEnv, name, NULL); - AVFilterContext *filter; - - if (name_) - { - filter = avfilter_graph_get_filter((AVFilterGraph *) graph, name_); - (*jniEnv)->ReleaseStringUTFChars(jniEnv, name, name_); - } - else - filter = NULL; - return (jlong) filter; -} - -static int -ffsink_query_formats(AVFilterContext *ctx) -{ - int err; - - /* Make ffsink output in the format in which buffer inputs. */ - if (ctx->priv) - { - AVFilterContext *src = ctx->priv; - const int pix_fmts[] = { src->outputs[0]->in_formats->formats[0], -1 }; - - avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts)); - err = 0; - } - else - err = avfilter_default_query_formats(ctx); - return err; -} - -static void -ffsink_uninit(AVFilterContext *ctx) -{ - /* - * Do not let FFmpeg libavfilter erroneously free the buffer video source - * thinking that it is the priv allocated to this ffsink video sink via - * priv_size. - */ - ctx->priv = NULL; -} - -JNIEXPORT jint JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1parse - (JNIEnv *jniEnv, jclass clazz, - jlong graph, jstring filters, jlong inputs, jlong outputs, jlong log_ctx) -{ - const char *filters_ = (*jniEnv)->GetStringUTFChars(jniEnv, filters, NULL); - int ret; - - if (filters_) - { - AVFilterGraph *graph_ = (AVFilterGraph *) graph; - - ret - = avfilter_graph_parse( - graph_, - filters_, - (AVFilterInOut *) inputs, (AVFilterInOut *) outputs, - (AVClass *) log_ctx); - - /* - * FIXME The implementation at the time of this writing presumes that - * the first filter is buffer, the last filter is nullsink meant to be - * ffsink and the ffsink is expected to output in the format in which - * the buffer inputs. - */ - if (0 == ret) - { - /* Turn nullsink into ffsink. */ - unsigned filterCount = graph_->filter_count; - - if (filterCount) - { - AVFilterContext *ffsink = (graph_->filters)[filterCount - 1]; - AVFilterContext *buffer = (graph_->filters)[0]; - - /* - * Make sure query_format of ffsink outputs in the format in - * which buffer inputs. Otherwise, the output format may end up - * different on the C and Java sides. - */ - ffsink->filter->uninit = ffsink_uninit; - ffsink->priv = buffer; - ffsink->filter->query_formats = ffsink_query_formats; - - ffsink->input_pads->min_perms = AV_PERM_READ; - ffsink->input_pads->start_frame = NULL; - } - } - - (*jniEnv)->ReleaseStringUTFChars(jniEnv, filters, filters_); - } - else - ret = AVERROR(ENOMEM); - return (jint) ret; -} - -JNIEXPORT void JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1register_1all - (JNIEnv *jniEnv, jclass clazz) -{ - avfilter_register_all(); -} - -JNIEXPORT void JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1unref_1buffer - (JNIEnv *jniEnv, jclass clazz, jlong ref) -{ - avfilter_unref_buffer((AVFilterBufferRef *) ref); -} - -JNIEXPORT jlong JNICALL -Java_org_jitsi_impl_neomedia_codec_FFmpeg_get_1filtered_1video_1frame - (JNIEnv *jniEnv, jclass clazz, - jlong input, jint width, jint height, jint pixFmt, - jlong buffer, jlong ffsink, jlong output) -{ - AVFrame *input_ = (AVFrame *) input; - AVFilterContext *buffer_ = (AVFilterContext *) buffer; - AVFilterBufferRef *ref = NULL; - - input_->width = width; - input_->height = height; - input_->format = pixFmt; - if (av_vsrc_buffer_add_frame(buffer_, input_) == 0) - { - AVFilterContext *ffsink_ = (AVFilterContext *) ffsink; - AVFilterLink *ffsinkLink = (ffsink_->inputs)[0]; - - if (avfilter_request_frame(ffsinkLink) == 0) - { - ref = ffsinkLink->cur_buf; - if (ref) - { - AVFrame *output_ = (AVFrame *) output; - - /* - * The data of cur_buf will be returned into output so it needs - * to exist at least while output needs it. So take ownership of - * cur_buf and the user of output will unref it when they are - * done with output. - */ - ffsinkLink->cur_buf = NULL; - - memcpy(output_->data, ref->data, sizeof(output_->data)); - memcpy( - output_->linesize, - ref->linesize, - sizeof(output_->linesize)); - output_->interlaced_frame = ref->video->interlaced; - output_->top_field_first = ref->video->top_field_first; - } - } - } - return (jlong) ref; -} diff --git a/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.h b/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.h index 7f259fbef479d19483fb1153733d92e91c4c23b6..153fa7328d33ec550818ea8e061c54a60846faff 100644 --- a/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.h +++ b/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.h @@ -1,669 +1,653 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ -#include <jni.h> -/* Header for class org_jitsi_impl_neomedia_codec_FFmpeg */ - -#ifndef _Included_org_jitsi_impl_neomedia_codec_FFmpeg -#define _Included_org_jitsi_impl_neomedia_codec_FFmpeg -#ifdef __cplusplus -extern "C" { -#endif -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: av_free - * Signature: (J)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1free - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: av_malloc - * Signature: (I)J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1malloc - (JNIEnv *, jclass, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: av_register_all - * Signature: ()V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1register_1all - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_alloc_context - * Signature: ()J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1alloc_1context - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_alloc_frame - * Signature: ()J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1alloc_1frame - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_close - * Signature: (J)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1close - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_decode_video - * Signature: (JJ[Z[BI)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1decode_1video__JJ_3Z_3BI - (JNIEnv *, jclass, jlong, jlong, jbooleanArray, jbyteArray, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_decode_video - * Signature: (JJJI)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1decode_1video__JJJI - (JNIEnv *, jclass, jlong, jlong, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_encode_audio - * Signature: (J[BII[BI)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1encode_1audio - (JNIEnv *, jclass, jlong, jbyteArray, jint, jint, jbyteArray, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_encode_video - * Signature: (J[BIJ)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1encode_1video - (JNIEnv *, jclass, jlong, jbyteArray, jint, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_find_decoder - * Signature: (I)J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1find_1decoder - (JNIEnv *, jclass, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_find_encoder - * Signature: (I)J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1find_1encoder - (JNIEnv *, jclass, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_init - * Signature: ()V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1init - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodec_open - * Signature: (JJ)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1open - (JNIEnv *, jclass, jlong, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_add_flags - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1add_1flags - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_add_flags2 - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1add_1flags2 - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_add_partitions - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1add_1partitions - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_get_frame_size - * Signature: (J)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1frame_1size - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_get_height - * Signature: (J)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1height - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_get_pix_fmt - * Signature: (J)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1pix_1fmt - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_get_width - * Signature: (J)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1width - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_b_frame_strategy - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1b_1frame_1strategy - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_bit_rate - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1bit_1rate - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_bit_rate_tolerance - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1bit_1rate_1tolerance - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_channels - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1channels - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_chromaoffset - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1chromaoffset - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_crf - * Signature: (JF)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1crf - (JNIEnv *, jclass, jlong, jfloat); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_deblockbeta - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1deblockbeta - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_gop_size - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1gop_1size - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_i_quant_factor - * Signature: (JF)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1i_1quant_1factor - (JNIEnv *, jclass, jlong, jfloat); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_keyint_min - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1keyint_1min - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_max_b_frames - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1max_1b_1frames - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_mb_decision - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1mb_1decision - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_me_cmp - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1me_1cmp - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_me_method - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1me_1method - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_me_range - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1me_1range - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_me_subpel_quality - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1me_1subpel_1quality - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_pix_fmt - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1pix_1fmt - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_profile - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1profile - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_qcompress - * Signature: (JF)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1qcompress - (JNIEnv *, jclass, jlong, jfloat); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_quantizer - * Signature: (JIII)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1quantizer - (JNIEnv *, jclass, jlong, jint, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_rc_buffer_size - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1rc_1buffer_1size - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_rc_eq - * Signature: (JLjava/lang/String;)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1rc_1eq - (JNIEnv *, jclass, jlong, jstring); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_rc_max_rate - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1rc_1max_1rate - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_refs - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1refs - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_rtp_payload_size - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1rtp_1payload_1size - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_sample_aspect_ratio - * Signature: (JII)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1sample_1aspect_1ratio - (JNIEnv *, jclass, jlong, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_sample_fmt - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1sample_1fmt - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_sample_rate - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1sample_1rate - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_scenechange_threshold - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1scenechange_1threshold - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_size - * Signature: (JII)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1size - (JNIEnv *, jclass, jlong, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_thread_count - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1thread_1count - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_ticks_per_frame - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1ticks_1per_1frame - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_time_base - * Signature: (JII)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1time_1base - (JNIEnv *, jclass, jlong, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_trellis - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1trellis - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avcodeccontext_set_workaround_bugs - * Signature: (JI)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1workaround_1bugs - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avframe_get_pts - * Signature: (J)J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1get_1pts - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avframe_set_data - * Signature: (JJJJ)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1set_1data - (JNIEnv *, jclass, jlong, jlong, jlong, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avframe_set_key_frame - * Signature: (JZ)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1set_1key_1frame - (JNIEnv *, jclass, jlong, jboolean); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avframe_set_linesize - * Signature: (JIII)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1set_1linesize - (JNIEnv *, jclass, jlong, jint, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avpicture_fill - * Signature: (JJIII)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avpicture_1fill - (JNIEnv *, jclass, jlong, jlong, jint, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avpicture_get_data0 - * Signature: (J)J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avpicture_1get_1data0 - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avpicture_get_size - * Signature: (III)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avpicture_1get_1size - (JNIEnv *, jclass, jint, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: memcpy - * Signature: ([IIIJ)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_memcpy___3IIIJ - (JNIEnv *, jclass, jintArray, jint, jint, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: memcpy - * Signature: (J[BII)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_memcpy__J_3BII - (JNIEnv *, jclass, jlong, jbyteArray, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: PIX_FMT_BGR32 - * Signature: ()I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1BGR32 - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: PIX_FMT_BGR32_1 - * Signature: ()I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1BGR32_11 - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: PIX_FMT_RGB24 - * Signature: ()I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1RGB24 - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: PIX_FMT_RGB32 - * Signature: ()I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1RGB32 - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: PIX_FMT_RGB32_1 - * Signature: ()I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1RGB32_11 - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: sws_freeContext - * Signature: (J)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1freeContext - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: sws_getCachedContext - * Signature: (JIIIIIII)J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1getCachedContext - (JNIEnv *, jclass, jlong, jint, jint, jint, jint, jint, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: sws_scale - * Signature: (JJIILjava/lang/Object;III)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1scale__JJIILjava_lang_Object_2III - (JNIEnv *, jclass, jlong, jlong, jint, jint, jobject, jint, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: sws_scale - * Signature: (JLjava/lang/Object;IIIIILjava/lang/Object;III)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1scale__JLjava_lang_Object_2IIIIILjava_lang_Object_2III - (JNIEnv *, jclass, jlong, jobject, jint, jint, jint, jint, jint, jobject, jint, jint, jint); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avfilter_graph_alloc - * Signature: ()J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1alloc - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avfilter_graph_config - * Signature: (JJ)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1config - (JNIEnv *, jclass, jlong, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avfilter_graph_free - * Signature: (J)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1free - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avfilter_graph_get_filter - * Signature: (JLjava/lang/String;)J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1get_1filter - (JNIEnv *, jclass, jlong, jstring); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avfilter_graph_parse - * Signature: (JLjava/lang/String;JJJ)I - */ -JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1parse - (JNIEnv *, jclass, jlong, jstring, jlong, jlong, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avfilter_register_all - * Signature: ()V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1register_1all - (JNIEnv *, jclass); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: avfilter_unref_buffer - * Signature: (J)V - */ -JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1unref_1buffer - (JNIEnv *, jclass, jlong); - -/* - * Class: org_jitsi_impl_neomedia_codec_FFmpeg - * Method: get_filtered_video_frame - * Signature: (JIIIJJJ)J - */ -JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_get_1filtered_1video_1frame - (JNIEnv *, jclass, jlong, jint, jint, jint, jlong, jlong, jlong); - -#ifdef __cplusplus -} -#endif -#endif +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include <jni.h> +/* Header for class org_jitsi_impl_neomedia_codec_FFmpeg */ + +#ifndef _Included_org_jitsi_impl_neomedia_codec_FFmpeg +#define _Included_org_jitsi_impl_neomedia_codec_FFmpeg +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: av_free + * Signature: (J)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1free + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: av_malloc + * Signature: (I)J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1malloc + (JNIEnv *, jclass, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: av_register_all + * Signature: ()V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1register_1all + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: av_set_options_string + * Signature: (JLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_av_1set_1options_1string + (JNIEnv *, jclass, jlong, jstring, jstring, jstring); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_alloc_context3 + * Signature: (J)J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1alloc_1context3 + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_alloc_frame + * Signature: ()J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1alloc_1frame + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_close + * Signature: (J)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1close + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_decode_video + * Signature: (JJ[Z[BI)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1decode_1video__JJ_3Z_3BI + (JNIEnv *, jclass, jlong, jlong, jbooleanArray, jbyteArray, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_decode_video + * Signature: (JJJI)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1decode_1video__JJJI + (JNIEnv *, jclass, jlong, jlong, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_encode_audio + * Signature: (J[BII[BI)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1encode_1audio + (JNIEnv *, jclass, jlong, jbyteArray, jint, jint, jbyteArray, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_encode_video + * Signature: (J[BIJ)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1encode_1video + (JNIEnv *, jclass, jlong, jbyteArray, jint, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_find_decoder + * Signature: (I)J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1find_1decoder + (JNIEnv *, jclass, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_find_encoder + * Signature: (I)J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1find_1encoder + (JNIEnv *, jclass, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_open + * Signature: (JJ[Ljava/lang/String;)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1open2 + (JNIEnv *, jclass, jlong, jlong, jobjectArray); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodec_register_all + * Signature: ()V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodec_1register_1all + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_add_flags + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1add_1flags + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_add_flags2 + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1add_1flags2 + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_get_frame_size + * Signature: (J)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1frame_1size + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_get_height + * Signature: (J)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1height + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_get_pix_fmt + * Signature: (J)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1pix_1fmt + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_get_width + * Signature: (J)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1get_1width + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_b_frame_strategy + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1b_1frame_1strategy + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_bit_rate + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1bit_1rate + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_bit_rate_tolerance + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1bit_1rate_1tolerance + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_channels + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1channels + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_chromaoffset + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1chromaoffset + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_gop_size + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1gop_1size + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_i_quant_factor + * Signature: (JF)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1i_1quant_1factor + (JNIEnv *, jclass, jlong, jfloat); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_keyint_min + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1keyint_1min + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_max_b_frames + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1max_1b_1frames + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_mb_decision + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1mb_1decision + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_me_cmp + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1me_1cmp + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_me_method + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1me_1method + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_me_range + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1me_1range + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_me_subpel_quality + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1me_1subpel_1quality + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_pix_fmt + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1pix_1fmt + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_profile + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1profile + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_qcompress + * Signature: (JF)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1qcompress + (JNIEnv *, jclass, jlong, jfloat); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_quantizer + * Signature: (JIII)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1quantizer + (JNIEnv *, jclass, jlong, jint, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_rc_buffer_size + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1rc_1buffer_1size + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_rc_eq + * Signature: (JLjava/lang/String;)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1rc_1eq + (JNIEnv *, jclass, jlong, jstring); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_rc_max_rate + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1rc_1max_1rate + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_refs + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1refs + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_rtp_payload_size + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1rtp_1payload_1size + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_sample_aspect_ratio + * Signature: (JII)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1sample_1aspect_1ratio + (JNIEnv *, jclass, jlong, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_sample_fmt + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1sample_1fmt + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_sample_rate + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1sample_1rate + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_scenechange_threshold + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1scenechange_1threshold + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_size + * Signature: (JII)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1size + (JNIEnv *, jclass, jlong, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_thread_count + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1thread_1count + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_ticks_per_frame + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1ticks_1per_1frame + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_time_base + * Signature: (JII)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1time_1base + (JNIEnv *, jclass, jlong, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_trellis + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1trellis + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avcodeccontext_set_workaround_bugs + * Signature: (JI)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avcodeccontext_1set_1workaround_1bugs + (JNIEnv *, jclass, jlong, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avfilter_graph_alloc + * Signature: ()J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1alloc + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avfilter_graph_config + * Signature: (JJ)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1config + (JNIEnv *, jclass, jlong, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avfilter_graph_free + * Signature: (J)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1free + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avfilter_graph_get_filter + * Signature: (JLjava/lang/String;)J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1get_1filter + (JNIEnv *, jclass, jlong, jstring); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avfilter_graph_parse + * Signature: (JLjava/lang/String;JJJ)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1parse + (JNIEnv *, jclass, jlong, jstring, jlong, jlong, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avfilter_register_all + * Signature: ()V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1register_1all + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avfilter_unref_buffer + * Signature: (J)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1unref_1buffer + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avframe_get_pts + * Signature: (J)J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1get_1pts + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avframe_set_data + * Signature: (JJJJ)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1set_1data + (JNIEnv *, jclass, jlong, jlong, jlong, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avframe_set_key_frame + * Signature: (JZ)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1set_1key_1frame + (JNIEnv *, jclass, jlong, jboolean); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avframe_set_linesize + * Signature: (JIII)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1set_1linesize + (JNIEnv *, jclass, jlong, jint, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avpicture_fill + * Signature: (JJIII)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avpicture_1fill + (JNIEnv *, jclass, jlong, jlong, jint, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avpicture_get_data0 + * Signature: (J)J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avpicture_1get_1data0 + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: avpicture_get_size + * Signature: (III)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avpicture_1get_1size + (JNIEnv *, jclass, jint, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: get_filtered_video_frame + * Signature: (JIIIJJJ)J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_get_1filtered_1video_1frame + (JNIEnv *, jclass, jlong, jint, jint, jint, jlong, jlong, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: memcpy + * Signature: ([IIIJ)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_memcpy___3IIIJ + (JNIEnv *, jclass, jintArray, jint, jint, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: memcpy + * Signature: (J[BII)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_memcpy__J_3BII + (JNIEnv *, jclass, jlong, jbyteArray, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: PIX_FMT_BGR32 + * Signature: ()I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1BGR32 + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: PIX_FMT_BGR32_1 + * Signature: ()I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1BGR32_11 + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: PIX_FMT_RGB24 + * Signature: ()I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1RGB24 + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: PIX_FMT_RGB32 + * Signature: ()I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1RGB32 + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: PIX_FMT_RGB32_1 + * Signature: ()I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_PIX_1FMT_1RGB32_11 + (JNIEnv *, jclass); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: sws_freeContext + * Signature: (J)V + */ +JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1freeContext + (JNIEnv *, jclass, jlong); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: sws_getCachedContext + * Signature: (JIIIIIII)J + */ +JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1getCachedContext + (JNIEnv *, jclass, jlong, jint, jint, jint, jint, jint, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: sws_scale + * Signature: (JJIILjava/lang/Object;III)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1scale__JJIILjava_lang_Object_2III + (JNIEnv *, jclass, jlong, jlong, jint, jint, jobject, jint, jint, jint); + +/* + * Class: org_jitsi_impl_neomedia_codec_FFmpeg + * Method: sws_scale + * Signature: (JLjava/lang/Object;IIIIILjava/lang/Object;III)I + */ +JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_sws_1scale__JLjava_lang_Object_2IIIIILjava_lang_Object_2III + (JNIEnv *, jclass, jlong, jobject, jint, jint, jint, jint, jint, jobject, jint, jint, jint); + +#ifdef __cplusplus +} +#endif +#endif