Re: [FFmpeg-devel] [PATCH] avformat: Add support for embedding cover art in Ogg files

2023-01-03 Thread Zsolt Vadász
On Sunday, January 1st, 2023 at 10:41 AM, Jean-Baptiste Kempf wrote: > On Thu, 29 Dec 2022, at 22:05, Zsolt Vadász wrote: > > > It's done similarly to how the flac muxer does it, so I reused most of > > the code and adapted it. > > > Would a common function make sense here? Yes, I named it

Re: [FFmpeg-devel] [PATCH] avformat: Add support for embedding cover art in Ogg files

2023-01-01 Thread Jean-Baptiste Kempf
On Thu, 29 Dec 2022, at 22:05, Zsolt Vadász wrote: > It's done similarly to how the flac muxer does it, so I reused most of > the code and adapted it. Would a common function make sense here? -- Jean-Baptiste Kempf - President +33 672 704 734 ___ ffm

[FFmpeg-devel] [PATCH] avformat: Add support for embedding cover art in Ogg files

2022-12-29 Thread Zsolt Vadász
It's done similarly to how the flac muxer does it, so I reused most of the code and adapted it. Signed-off-by: Zsolt Vadasz --- libavformat/oggenc.c | 293 +-- 1 file changed, 254 insertions(+), 39 deletions(-) diff --git a/libavformat/oggenc.c b/libavfo