Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-30 Thread Pedro Arthur
Please, send patch 0002 in a new email and discuss it there. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-29 Thread Guo, Yejun
#else av_freep(dnn_module); return NULL; #endif -Original Message- From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of Pedro Arthur Sent: Tuesday, May 29, 2018 8:45 PM To: Sergey Lavrushkin Cc: FFmpeg development discussions and patches Subject:

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-29 Thread Pedro Arthur
Patch 0001 pushed. Thanks. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-29 Thread Pedro Arthur
2018-05-29 5:14 GMT-03:00 Sergey Lavrushkin : > 2018-05-29 4:08 GMT+03:00 Pedro Arthur : >> >> 2018-05-28 19:52 GMT-03:00 Sergey Lavrushkin : >> > 2018-05-28 9:32 GMT+03:00 Guo, Yejun : >> > >> >> looks that no tensorflow dependency is introduced, a new model format >> >> is >> >> created together

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-29 Thread Sergey Lavrushkin
2018-05-29 4:08 GMT+03:00 Pedro Arthur : > 2018-05-28 19:52 GMT-03:00 Sergey Lavrushkin : > > 2018-05-28 9:32 GMT+03:00 Guo, Yejun : > > > >> looks that no tensorflow dependency is introduced, a new model format is > >> created together with some CPU implementation for inference. With this > >>

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-28 Thread Guo, Yejun
g-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > Sergey Lavrushkin > Sent: Saturday, May 26, 2018 2:02 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN > filter update > >> >&g

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-28 Thread Pedro Arthur
2018-05-28 19:52 GMT-03:00 Sergey Lavrushkin : > 2018-05-28 9:32 GMT+03:00 Guo, Yejun : > >> looks that no tensorflow dependency is introduced, a new model format is >> created together with some CPU implementation for inference. With this >> idea, Android Neural Network would be a very good

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-28 Thread Pedro Arthur
@ffmpeg.org] On Behalf Of > Sergey Lavrushkin > Sent: Saturday, May 26, 2018 2:02 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN > filter update > >> >> You should use the ff_ prefix f

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-28 Thread Guo, Yejun
peg.org> Subject: Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update > > You should use the ff_ prefix for internal, non-static functions only. > You don't need to use any prefix for internal structs. > The AV* prefix is only for public stru

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-25 Thread James Almer
On 5/25/2018 10:01 AM, Sergey Lavrushkin wrote: > 2018-05-24 22:52 GMT+03:00 James Almer >: > > On 5/24/2018 4:24 PM, Sergey Lavrushkin wrote: > > Hello, > > > > This patch introduces DNN inference interface and simple native >

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-25 Thread Sergey Lavrushkin
2018-05-24 22:52 GMT+03:00 James Almer : > On 5/24/2018 4:24 PM, Sergey Lavrushkin wrote: > > Hello, > > > > This patch introduces DNN inference interface and simple native backend. > > For now implemented backend supports only convolutions with relu > activation > > function,

Re: [FFmpeg-devel] [GSOC] [PATCH] DNN module introduction and SRCNN filter update

2018-05-24 Thread James Almer
On 5/24/2018 4:24 PM, Sergey Lavrushkin wrote: > Hello, > > This patch introduces DNN inference interface and simple native backend. > For now implemented backend supports only convolutions with relu activation > function, that are sufficient for simple convolutional networks, > particularly