Re: [FFmpeg-devel] [PATCH 2/3] avcodec.h: split AVCodec API into its own header

2020-05-27 Thread James Almer
On 5/27/2020 5:08 AM, Anton Khirnov wrote: > Quoting James Almer (2020-05-25 15:41:57) >> On 5/25/2020 10:31 AM, Anton Khirnov wrote: >>> Quoting James Almer (2020-05-25 15:21:12) On 5/25/2020 10:12 AM, Anton Khirnov wrote: > -/** > - * Iterate over all registered codecs. > - * >>>

Re: [FFmpeg-devel] [PATCH 2/3] avcodec.h: split AVCodec API into its own header

2020-05-27 Thread Anton Khirnov
Quoting James Almer (2020-05-25 15:41:57) > On 5/25/2020 10:31 AM, Anton Khirnov wrote: > > Quoting James Almer (2020-05-25 15:21:12) > >> On 5/25/2020 10:12 AM, Anton Khirnov wrote: > >>> -/** > >>> - * Iterate over all registered codecs. > >>> - * > >>> - * @param opaque a pointer where libavcode

Re: [FFmpeg-devel] [PATCH 2/3] avcodec.h: split AVCodec API into its own header

2020-05-25 Thread James Almer
On 5/25/2020 10:31 AM, Anton Khirnov wrote: > Quoting James Almer (2020-05-25 15:21:12) >> On 5/25/2020 10:12 AM, Anton Khirnov wrote: >>> -/** >>> - * Iterate over all registered codecs. >>> - * >>> - * @param opaque a pointer where libavcodec will store the iteration >>> state. Must >>> - *

Re: [FFmpeg-devel] [PATCH 2/3] avcodec.h: split AVCodec API into its own header

2020-05-25 Thread Anton Khirnov
Quoting James Almer (2020-05-25 15:21:12) > On 5/25/2020 10:12 AM, Anton Khirnov wrote: > > -/** > > - * Iterate over all registered codecs. > > - * > > - * @param opaque a pointer where libavcodec will store the iteration > > state. Must > > - * point to NULL to start the iteration.

Re: [FFmpeg-devel] [PATCH 2/3] avcodec.h: split AVCodec API into its own header

2020-05-25 Thread James Almer
On 5/25/2020 10:12 AM, Anton Khirnov wrote: > -/** > - * Iterate over all registered codecs. > - * > - * @param opaque a pointer where libavcodec will store the iteration state. > Must > - * point to NULL to start the iteration. > - * > - * @return the next registered codec or NULL w

[FFmpeg-devel] [PATCH 2/3] avcodec.h: split AVCodec API into its own header

2020-05-25 Thread Anton Khirnov
--- doc/APIchanges | 3 + libavcodec/Makefile | 1 + libavcodec/avcodec.h | 415 +- libavcodec/codec.h | 462 +++ libavcodec/version.h | 4 +- 5 files changed, 469 insertions(+), 416 deletions(-) create mod