[FFmpeg-devel] [PATCH 0/3 v2] Restructuring the encode API

James Almer jamrial at gmail.com
Mon Mar 16 23:29:59 EET 2020


This set follows the same logic as 061a0c14bb, but for the encode API: The
new public 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.

Because of the above, PATCH 1/3 can't be applied until all the relevant encoders
have been adapted, and said changes squashed into it. This means librav1e, nvenc,
amfenc, v4l2_m2m, and vaapi_enc.
I have ported librav1e both to test this set and for it to work as an example
for the maintainers of the other three encoders in order to get an idea of what
they should do. Similarly, Andriy Gelman ported v4l2_m2m_enc in 
http://lists.ffmpeg.org/pipermail/ffmpeg-devel/2020-March/258192.html

James Almer (3):
  avcodec/encode: restructure the core encoding code
  avcodec/encode: restructure the old encode API
  avcodec/librav1e: adapt to the new internal encode API

 libavcodec/avcodec.h  |  12 +-
 libavcodec/decode.c   |   1 -
 libavcodec/encode.c   | 559 +++++++++++++++++++++---------------------
 libavcodec/encode.h   |  39 +++
 libavcodec/internal.h |   8 +-
 libavcodec/librav1e.c |  51 ++--
 libavcodec/utils.c    |  18 +-
 7 files changed, 381 insertions(+), 307 deletions(-)
 create mode 100644 libavcodec/encode.h

-- 
2.25.1



More information about the ffmpeg-devel mailing list