Re: [FFmpeg-devel] [PATCH v2 1/6] lavc: add new API for iterating codecs and codec parsers

2018-01-03 Thread Michael Niedermayer
On Wed, Jan 03, 2018 at 12:42:36AM +, Josh de Kock wrote: > Also replace linked list with an array. > --- > configure | 12 +- > doc/APIchanges |4 + > libavcodec/allcodecs.c | 1473 > > libavcodec/avcodec.h | 31

Re: [FFmpeg-devel] [PATCH v2 1/6] lavc: add new API for iterating codecs and codec parsers

2018-01-03 Thread Muhammad Faiz
On Thu, Jan 4, 2018 at 2:59 AM, Rostislav Pehlivanov wrote: > On 3 January 2018 at 19:16, Muhammad Faiz wrote: > >> On Wed, Jan 3, 2018 at 7:42 AM, Josh de Kock wrote: >> > Also replace linked list with an array. >> > --- >> > configure | 12 +- >> > doc/APIchanges |4

Re: [FFmpeg-devel] [PATCH v2 1/6] lavc: add new API for iterating codecs and codec parsers

2018-01-03 Thread Rostislav Pehlivanov
On 3 January 2018 at 19:16, Muhammad Faiz wrote: > On Wed, Jan 3, 2018 at 7:42 AM, Josh de Kock wrote: > > Also replace linked list with an array. > > --- > > configure | 12 +- > > doc/APIchanges |4 + > > libavcodec/allcodecs.c | 1473 --

Re: [FFmpeg-devel] [PATCH v2 1/6] lavc: add new API for iterating codecs and codec parsers

2018-01-03 Thread Muhammad Faiz
On Wed, Jan 3, 2018 at 7:42 AM, Josh de Kock wrote: > Also replace linked list with an array. > --- > configure | 12 +- > doc/APIchanges |4 + > libavcodec/allcodecs.c | 1473 > > libavcodec/avcodec.h | 31 + > liba

Re: [FFmpeg-devel] [PATCH v2 1/6] lavc: add new API for iterating codecs and codec parsers

2018-01-03 Thread wm4
On Wed, 3 Jan 2018 16:50:00 + Rostislav Pehlivanov wrote: > On 3 January 2018 at 15:25, wm4 wrote: > > > On Wed, 3 Jan 2018 00:42:36 + > > Josh de Kock wrote: > > > > > +static AVCodec *find_codec_by_name(const char *name, int (*x)(const > > AVCodec *)) > > > +{ > > > +void

Re: [FFmpeg-devel] [PATCH v2 1/6] lavc: add new API for iterating codecs and codec parsers

2018-01-03 Thread Rostislav Pehlivanov
On 3 January 2018 at 15:25, wm4 wrote: > On Wed, 3 Jan 2018 00:42:36 + > Josh de Kock wrote: > > > Also replace linked list with an array. > > --- > > configure | 12 +- > > doc/APIchanges |4 + > > libavcodec/allcodecs.c | 1473 -- > --

Re: [FFmpeg-devel] [PATCH v2 1/6] lavc: add new API for iterating codecs and codec parsers

2018-01-03 Thread wm4
On Wed, 3 Jan 2018 00:42:36 + Josh de Kock wrote: > Also replace linked list with an array. > --- > diff --git a/doc/APIchanges b/doc/APIchanges > index 3c9f237..3d28d85 100644 > --- a/doc/APIchanges > +++ b/doc/APIchanges > @@ -15,6 +15,10 @@ libavutil: 2017-10-21 > > API changes, mo

Re: [FFmpeg-devel] [PATCH v2 1/6] lavc: add new API for iterating codecs and codec parsers

2018-01-03 Thread wm4
On Wed, 3 Jan 2018 00:42:36 + Josh de Kock wrote: > Also replace linked list with an array. > --- > configure | 12 +- > doc/APIchanges |4 + > libavcodec/allcodecs.c | 1473 > > libavcodec/avcodec.h | 31 + > l

[FFmpeg-devel] [PATCH v2 1/6] lavc: add new API for iterating codecs and codec parsers

2018-01-02 Thread Josh de Kock
Also replace linked list with an array. --- configure | 12 +- doc/APIchanges |4 + libavcodec/allcodecs.c | 1473 libavcodec/avcodec.h | 31 + libavcodec/parser.c| 87 ++- libavcodec/utils.c | 105 lib