[FFmpeg-devel] MediaCodec support patchset v2

2016-02-22 Thread Matthieu Bouron
Differences from the latest patches: * Android application context support has been removed * Android content uris support has been removed * The jni util functions has been moved from lavu to lavc, and they are now prefixed by ff_ instead of avpriv_ and no more public interfaces are expo

Re: [FFmpeg-devel] MediaCodec support

2016-02-16 Thread Matthieu Bouron
On Tue, Feb 16, 2016 at 2:47 PM, Matthieu Bouron wrote: > > > On Tue, Feb 16, 2016 at 12:36 PM, wm4 wrote: > >> On Tue, 16 Feb 2016 12:09:58 +0100 >> Matthieu Bouron wrote: >> >> > On Tue, Feb 16, 2016 at 10:41 AM, wm4 wrote: >> > >> > > On Mon, 15 Feb 2016 18:52:25 +0100 >> > > Matthieu Bouro

Re: [FFmpeg-devel] MediaCodec support

2016-02-16 Thread Matthieu Bouron
On Tue, Feb 16, 2016 at 12:36 PM, wm4 wrote: > On Tue, 16 Feb 2016 12:09:58 +0100 > Matthieu Bouron wrote: > > > On Tue, Feb 16, 2016 at 10:41 AM, wm4 wrote: > > > > > On Mon, 15 Feb 2016 18:52:25 +0100 > > > Matthieu Bouron wrote: > > > > > > > Hello, > > > > > > > > The following patchset ad

Re: [FFmpeg-devel] MediaCodec support

2016-02-16 Thread wm4
On Tue, 16 Feb 2016 12:09:58 +0100 Matthieu Bouron wrote: > On Tue, Feb 16, 2016 at 10:41 AM, wm4 wrote: > > > On Mon, 15 Feb 2016 18:52:25 +0100 > > Matthieu Bouron wrote: > > > > > Hello, > > > > > > The following patchset adds basic MediaCodec support to libavcodec, ie: > > only > > >

Re: [FFmpeg-devel] MediaCodec support

2016-02-16 Thread Matthieu Bouron
On Tue, Feb 16, 2016 at 10:41 AM, wm4 wrote: > On Mon, 15 Feb 2016 18:52:25 +0100 > Matthieu Bouron wrote: > > > Hello, > > > > The following patchset adds basic MediaCodec support to libavcodec, ie: > only > > h264 is supported and the HWAccel part (Surface output) is missing. > > > > JNI comes

Re: [FFmpeg-devel] MediaCodec support

2016-02-16 Thread wm4
On Mon, 15 Feb 2016 18:52:25 +0100 Matthieu Bouron wrote: > Hello, > > The following patchset adds basic MediaCodec support to libavcodec, ie: only > h264 is supported and the HWAccel part (Surface output) is missing. > > JNI comes as a dependency. The JNI support is based on the same patchset

[FFmpeg-devel] MediaCodec support

2016-02-15 Thread Matthieu Bouron
Hello, The following patchset adds basic MediaCodec support to libavcodec, ie: only h264 is supported and the HWAccel part (Surface output) is missing. JNI comes as a dependency. The JNI support is based on the same patchset I've sent some time ago with some improvements. I originally developed