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

2020-06-18 Thread James Almer
On 5/26/2020 9:08 AM, Michael Niedermayer wrote: > On Mon, May 25, 2020 at 01:59:16PM -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 1/2 v4] avcodec/encode: restructure the core encoding code

2020-05-26 Thread Michael Niedermayer
On Mon, May 25, 2020 at 01:59:16PM -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

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

2020-05-25 Thread Andreas Rheinhardt
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 req

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

2020-05-25 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