Re: [FFmpeg-devel] [PATCH v3] avcodec/videotoolbox: add AV1 hardware acceleration

2024-10-02 Thread Martin Storsjö
On Tue, 1 Oct 2024, Martin Storsjö wrote: On Fri, 27 Sep 2024, Cameron Gutman wrote: On Thu, Sep 26, 2024 at 4:25 PM Martin Storsjö wrote: From: Jan Ekström Use AV1DecContext's current_obu to access the original OBUs, and feed them to videotoolbox, rather than the bare slice data passed v

Re: [FFmpeg-devel] [PATCH v3] avcodec/videotoolbox: add AV1 hardware acceleration

2024-10-01 Thread Martin Storsjö
On Fri, 27 Sep 2024, Cameron Gutman wrote: On Thu, Sep 26, 2024 at 4:25 PM Martin Storsjö wrote: From: Jan Ekström Use AV1DecContext's current_obu to access the original OBUs, and feed them to videotoolbox, rather than the bare slice data passed via decode_slice. This requires a small addi

Re: [FFmpeg-devel] [PATCH v3] avcodec/videotoolbox: add AV1 hardware acceleration

2024-09-27 Thread Cameron Gutman
On Thu, Sep 26, 2024 at 4:25 PM Martin Storsjö wrote: > > From: Jan Ekström > > Use AV1DecContext's current_obu to access the original OBUs, and > feed them to videotoolbox, rather than the bare slice data passed > via decode_slice. > > This requires a small addition to AV1DecContext, for keeping

[FFmpeg-devel] [PATCH v3] avcodec/videotoolbox: add AV1 hardware acceleration

2024-09-26 Thread Martin Storsjö
From: Jan Ekström Use AV1DecContext's current_obu to access the original OBUs, and feed them to videotoolbox, rather than the bare slice data passed via decode_slice. This requires a small addition to AV1DecContext, for keeping track of the current range of OBUs that belong to the current frame.