Re: [FFmpeg-devel] [PATCH 1/5] lavu: add JNI support

2016-02-16 Thread Matthieu Bouron
On Mon, Feb 15, 2016 at 6:56 PM, Hendrik Leppkes wrote: > On Mon, Feb 15, 2016 at 6:52 PM, Matthieu Bouron > wrote: > > From: Matthieu Bouron > > > > --- > > configure| 4 + > > libavutil/Makefile | 4 + > > libavutil/jni.c | 55 +++ > > libavutil/jni.h

Re: [FFmpeg-devel] [PATCH 1/5] lavu: add JNI support

2016-02-15 Thread Hendrik Leppkes
On Mon, Feb 15, 2016 at 6:52 PM, Matthieu Bouron wrote: > From: Matthieu Bouron > > --- > configure| 4 + > libavutil/Makefile | 4 + > libavutil/jni.c | 55 +++ > libavutil/jni.h | 42 + > libavutil/jni_internal.c | 391 > ++

[FFmpeg-devel] [PATCH 1/5] lavu: add JNI support

2016-02-15 Thread Matthieu Bouron
From: Matthieu Bouron --- configure| 4 + libavutil/Makefile | 4 + libavutil/jni.c | 55 +++ libavutil/jni.h | 42 + libavutil/jni_internal.c | 391 +++ libavutil/jni_internal.h | 147 +

Re: [FFmpeg-devel] [PATCH 1/5] lavu: add JNI support

2015-10-10 Thread Clément Bœsch
On Fri, Oct 09, 2015 at 07:00:44PM +0200, Nicolas George wrote: > L'octidi 18 vendémiaire, an CCXXIV, Jean-Baptiste Kempf a écrit : > > > +HEADERS-$(CONFIG_JNI) += jni.h > > You are going to install a jni.h header? > > I am not very fond of having java-related stuff in FFmpeg, bu

Re: [FFmpeg-devel] [PATCH 1/5] lavu: add JNI support

2015-10-09 Thread Zhang Rui
2015-10-10 0:26 GMT+08:00 Matthieu Bouron : > From: Matthieu Bouron > +#include "config.h" > +#include "jni.h" > +#include "log.h" > + > +#include > + > +JavaVM *java_vm = NULL; Maybe static is better for --enable-static. ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH 1/5] lavu: add JNI support

2015-10-09 Thread Nicolas George
L'octidi 18 vendémiaire, an CCXXIV, Jean-Baptiste Kempf a écrit : > > +HEADERS-$(CONFIG_JNI) += jni.h > You are going to install a jni.h header? I am not very fond of having java-related stuff in FFmpeg, but C headers are scoped per directory. It could install libavutil/stdio.h,

Re: [FFmpeg-devel] [PATCH 1/5] lavu: add JNI support

2015-10-09 Thread Jean-Baptiste Kempf
On 09 Oct, Matthieu Bouron wrote : > +HEADERS-$(CONFIG_JNI) += jni.h You are going to install a jni.h header? With my kindest regards, -- Jean-Baptiste Kempf http://www.jbkempf.com/ - +33 672 704 734 Sent from my Electronic Device __

[FFmpeg-devel] [PATCH 1/5] lavu: add JNI support

2015-10-09 Thread Matthieu Bouron
From: Matthieu Bouron --- configure| 4 +++ libavutil/Makefile | 4 +++ libavutil/jni.c | 37 ++ libavutil/jni.h | 42 + libavutil/jni_internal.c | 69 l