Re: [FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-16 Thread James Almer
On 4/15/2018 1:45 AM, James Almer wrote: > From: Rodger Combs > > Signed-off-by: James Almer > --- > Changed to not try to mux any kind of video as cover art and instead > only bother with streams marked as attached pictures. > Also using each stream's priv_data to hold the picture instead of >

[FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-14 Thread James Almer
From: Rodger Combs Signed-off-by: James Almer --- Changed to not try to mux any kind of video as cover art and instead only bother with streams marked as attached pictures. Also using each stream's priv_data to hold the picture instead of an array in the format's priv_data now. Will push tomorr

Re: [FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-03 Thread Timo Teras
On Wed, 4 Apr 2018 02:30:34 -0300 James Almer wrote: > On 4/4/2018 2:11 AM, Timo Teras wrote: > > On Wed, 4 Apr 2018 01:30:54 -0300 > > James Almer wrote: > > > >> From: Rodger Combs > >> > >> Signed-off-by: James Almer > >> --- > >> Now using the packet list API instead of duplicating the c

Re: [FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-03 Thread James Almer
On 4/4/2018 2:11 AM, Timo Teras wrote: > On Wed, 4 Apr 2018 01:30:54 -0300 > James Almer wrote: > >> From: Rodger Combs >> >> Signed-off-by: James Almer >> --- >> Now using the packet list API instead of duplicating the code locally. >> >> libavformat/flacenc.c | 274 >> ++

Re: [FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-03 Thread Timo Teras
On Wed, 4 Apr 2018 01:30:54 -0300 James Almer wrote: > From: Rodger Combs > > Signed-off-by: James Almer > --- > Now using the packet list API instead of duplicating the code locally. > > libavformat/flacenc.c | 274 > +++--- 1 file changed, > 238

[FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-03 Thread James Almer
From: Rodger Combs Signed-off-by: James Almer --- Now using the packet list API instead of duplicating the code locally. libavformat/flacenc.c | 274 +++--- 1 file changed, 238 insertions(+), 36 deletions(-) diff --git a/libavformat/flacenc.c b/liba