Re: [FFmpeg-devel] [PATCH 5/5] lavf: add Android content resolver protocol support

2015-10-09 Thread Zhang Rui
> +struct JFields { > + > +jclass uri_class; > +jclass parse_id; > + > +jclass context_class; > +jmethodID get_content_resolver_id; > + > +jclass content_resolver_class; > +jmethodID open_file_descriptor_id; > + > +jclass parcel_file_descriptor_class; > +jmethodID de

Re: [FFmpeg-devel] [PATCH 5/5] lavf: add Android content resolver protocol support

2015-10-09 Thread Clément Bœsch
On Fri, Oct 09, 2015 at 06:54:31PM +0200, Jean-Baptiste Kempf wrote: > On 09 Oct, Matthieu Bouron wrote : > > Handles uri starting with content://. > > I don't see what this has to do with libavformat. > > It's OS specific, not a file format, trivial to do within any calling > application and pro

Re: [FFmpeg-devel] [PATCH 5/5] lavf: add Android content resolver protocol support

2015-10-09 Thread Jean-Baptiste Kempf
On 09 Oct, Matthieu Bouron wrote : > Handles uri starting with content://. I don't see what this has to do with libavformat. It's OS specific, not a file format, trivial to do within any calling application and probably going to break easily... With my kindest regards, -- Jean-Baptiste Kempf h

[FFmpeg-devel] [PATCH 5/5] lavf: add Android content resolver protocol support

2015-10-09 Thread Matthieu Bouron
From: Matthieu Bouron Handles uri starting with content://. --- configure| 5 ++ libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/file.c | 155 +++ libavutil/jni.c | 2 +- 5 files change