Re: [FFmpeg-devel] [PATCH v4 15/16] FFHWAccel: add buffer_ref argument to start_frame

2025-03-15 Thread Lynne
On 13/03/2025 23:08, Andreas Rheinhardt wrote: Lynne: This commit adds a reference to the buffer as an argument to start_frame, and adapts all existing code. This allows for asynchronous hardware accelerators to skip copying packet data by referencing it. --- diff --git a/libavcodec/hevc/

Re: [FFmpeg-devel] [PATCH v4 15/16] FFHWAccel: add buffer_ref argument to start_frame

2025-03-13 Thread Lynne
On 14/03/2025 00:03, Lynne wrote: On 13/03/2025 23:08, Andreas Rheinhardt wrote: Lynne: This commit adds a reference to the buffer as an argument to start_frame, and adapts all existing code. This allows for asynchronous hardware accelerators to skip copying packet data by referencing it. --

Re: [FFmpeg-devel] [PATCH v4 15/16] FFHWAccel: add buffer_ref argument to start_frame

2025-03-13 Thread Andreas Rheinhardt
Lynne: > This commit adds a reference to the buffer as an argument to > start_frame, and adapts all existing code. > > This allows for asynchronous hardware accelerators to skip > copying packet data by referencing it. > --- > libavcodec/av1dec.c | 3 ++- > libavcodec/d3d12va_av1.c

[FFmpeg-devel] [PATCH v4 15/16] FFHWAccel: add buffer_ref argument to start_frame

2025-03-13 Thread Lynne
This commit adds a reference to the buffer as an argument to start_frame, and adapts all existing code. This allows for asynchronous hardware accelerators to skip copying packet data by referencing it. --- libavcodec/av1dec.c | 3 ++- libavcodec/d3d12va_av1.c | 5 - libavcode