Re: [FFmpeg-devel] [PATCH 1/4] avutil: add generic side data for video coding info

2025-07-20 Thread Timothée
On 18/07/2025 19:42, Lynne a wrote : On 18/07/2025 19:30, Timothée Regaud wrote: From: Timothee Regaud Adds the generic data structures to libavutil. The design is recursive to support other codecs, even though the implementation is only for H.264 for now. Signed-off-by: Timothee Regaud -

Re: [FFmpeg-devel] [PATCH 1/4] avutil: add generic side data for video coding info

2025-07-20 Thread Timothée
On 18/07/2025 17:48, Michael Niedermayer wrote : Hi On Fri, Jul 18, 2025 at 12:30:52PM +0200, Timothée Regaud wrote: From: Timothee Regaud Adds the generic data structures to libavutil. The design is recursive to support other codecs, even though the implementation is only for H.264 for now.

Re: [FFmpeg-devel] [PATCH 1/4] avutil: add generic side data for video coding info

2025-07-18 Thread Lynne
On 18/07/2025 19:30, Timothée Regaud wrote: From: Timothee Regaud Adds the generic data structures to libavutil. The design is recursive to support other codecs, even though the implementation is only for H.264 for now. Signed-off-by: Timothee Regaud --- libavutil/Makefile| 1

Re: [FFmpeg-devel] [PATCH 1/4] avutil: add generic side data for video coding info

2025-07-18 Thread Michael Niedermayer
Hi On Fri, Jul 18, 2025 at 12:30:52PM +0200, Timothée Regaud wrote: > From: Timothee Regaud > > Adds the generic data structures to libavutil. The design is recursive to > support other codecs, even though the implementation is only for H.264 for > now. > > Signed-off-by: Timothee Regaud > -

[FFmpeg-devel] [PATCH 1/4] avutil: add generic side data for video coding info

2025-07-18 Thread Timothée Regaud
From: Timothee Regaud Adds the generic data structures to libavutil. The design is recursive to support other codecs, even though the implementation is only for H.264 for now. Signed-off-by: Timothee Regaud --- libavutil/Makefile| 1 + libavutil/frame.h | 7 ++ lib