Re: [FFmpeg-devel] [PATCH v3] decklink: Convert to using avpriv_packet_list functions

2023-05-30 Thread Marton Balint
On Sat, 27 May 2023, Devin Heitmueller wrote: Hello Marton, On Fri, May 12, 2023 at 11:09 AM Devin Heitmueller wrote: The existing DecklinkQueue implementation was using the PacketList structure but wasn't using the standard avpriv_packet_list_get and avpriv_packet_list_put functions. Con

Re: [FFmpeg-devel] [PATCH v3] decklink: Convert to using avpriv_packet_list functions

2023-05-27 Thread Devin Heitmueller
Hello Marton, On Fri, May 12, 2023 at 11:09 AM Devin Heitmueller wrote: > > The existing DecklinkQueue implementation was using the PacketList > structure but wasn't using the standard avpriv_packet_list_get and > avpriv_packet_list_put functions. Convert to using them so we > eliminate the dupl

[FFmpeg-devel] [PATCH v3] decklink: Convert to using avpriv_packet_list functions

2023-05-12 Thread Devin Heitmueller
The existing DecklinkQueue implementation was using the PacketList structure but wasn't using the standard avpriv_packet_list_get and avpriv_packet_list_put functions. Convert to using them so we eliminate the duplicate logic, per Marton Balint's suggestion. Updated to reflect feedback from Marto