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

2020-06-09 Thread James Almer
On 6/9/2020 6:33 PM, Michael Niedermayer wrote: > On Tue, May 26, 2020 at 11:35:39AM -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] avcodec/encode: restructure the core encoding code

2020-06-09 Thread Michael Niedermayer
On Tue, May 26, 2020 at 11:35:39AM -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 >

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

2020-06-09 Thread James Almer
On 5/26/2020 11:35 AM, 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] avcodec/encode: restructure the core encoding code

2020-05-27 Thread Fu, Linjie
> From: ffmpeg-devel On Behalf Of > James Almer > Sent: Tuesday, May 26, 2020 22:36 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH] avcodec/encode: restructure the core > encoding code > > This commit follows the same logic as 061a0c14bb, but for the

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

2020-05-26 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. amf encoders