Re: [FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the core encoding code

2020-03-16 Thread Anton Khirnov
Sorry for the delay, got a bit busy here and forgot to reply. Quoting James Almer (2020-03-11 14:27:54) > On 3/11/2020 7:18 AM, Anton Khirnov wrote: > > Quoting James Almer (2020-02-27 19:02:00) > >> This commit follows the same logic as 061a0c14bb, but for the encode API: > >> The > >> new

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the core encoding code

2020-03-11 Thread James Almer
On 3/11/2020 7:18 AM, Anton Khirnov wrote: > Quoting James Almer (2020-02-27 19:02:00) >> This commit follows the same logic as 061a0c14bb, but for the encode API: The >> new public encoding API will no longer be a wrapper around the old deprecated >> one, and the internal API used by the encoders

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the core encoding code

2020-03-11 Thread Anton Khirnov
Quoting James Almer (2020-02-27 19:02:00) > This commit follows the same logic as 061a0c14bb, but for the encode API: The > new public encoding API will no longer be a wrapper around the old deprecated > one, and the internal API used by the encoders now consists of a single > receive_packet()

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the core encoding code

2020-03-01 Thread James Almer
On 3/1/2020 2:36 AM, Andriy Gelman wrote: > On Thu, 27. Feb 15:02, James Almer wrote: >> This commit follows the same logic as 061a0c14bb, but for the encode API: The >> new public encoding API will no longer be a wrapper around the old deprecated >> one, and the internal API used by the encoders

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the core encoding code

2020-02-29 Thread Andriy Gelman
On Thu, 27. Feb 15:02, James Almer wrote: > This commit follows the same logic as 061a0c14bb, but for the encode API: The > new public encoding API will no longer be a wrapper around the old deprecated > one, and the internal API used by the encoders now consists of a single > receive_packet()

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the core encoding code

2020-02-28 Thread James Almer
On 2/28/2020 8:52 AM, Michael Niedermayer wrote: > On Thu, Feb 27, 2020 at 03:02:00PM -0300, James Almer wrote: >> This commit follows the same logic as 061a0c14bb, but for the encode API: The >> new public encoding API will no longer be a wrapper around the old deprecated >> one, and the internal

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the core encoding code

2020-02-28 Thread Fu, Linjie
> -Original Message- > From: ffmpeg-devel On Behalf Of > Michael Niedermayer > Sent: Friday, February 28, 2020 19:53 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the core encoding code

2020-02-28 Thread Michael Niedermayer
On Thu, Feb 27, 2020 at 03:02:00PM -0300, James Almer wrote: > This commit follows the same logic as 061a0c14bb, but for the encode API: The > new public encoding API will no longer be a wrapper around the old deprecated > one, and the internal API used by the encoders now consists of a single >

[FFmpeg-devel] [PATCH 2/4] avcodec/encode: restructure the core encoding code

2020-02-27 Thread James Almer
This commit follows the same logic as 061a0c14bb, but for the encode API: The new public encoding API will no longer be a wrapper around the old deprecated one, and the internal API used by the encoders now consists of a single receive_packet() callback that pulls frames as required.