[FFmpeg-devel] [PATCH v1] fate/imfdec: add audio test

2022-12-29 Thread pal
From: Pierre-Anthony Lemieux Adds an audio test for the IMF demuxer. FATE content at https://www.sandflow.com/public/countdown-audio.zip --- tests/fate/imf.mak| 3 + tests/ref/fate/imf-cpl-with-audio | 207 ++ 2 files changed, 210 insertions(+) cr

Re: [FFmpeg-devel] Would a crypto file be acceptable?

2022-12-29 Thread Michael Niedermayer
On Thu, Dec 29, 2022 at 03:51:24PM +0100, Mark Gaiser wrote: > On Wed, Dec 28, 2022 at 10:02 PM Michael Niedermayer > wrote: > > > Hi > > > > On Tue, Dec 27, 2022 at 11:46:38PM +0100, Mark Gaiser wrote: > > > On Tue, Dec 27, 2022 at 10:40 PM Michael Niedermayer < > > mich...@niedermayer.cc> > > >

[FFmpeg-devel] [PATCH] vaapi_encode_h264: Only set pic_order_cnt_type to 0 with B-frames

2022-12-29 Thread David Rosca
--- libavcodec/vaapi_encode_h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vaapi_encode_h264.c b/libavcodec/vaapi_encode_h264.c index dd17be2..d6926c4 100644 --- a/libavcodec/vaapi_encode_h264.c +++ b/libavcodec/vaapi_encode_h264.c @@ -350,7 +350,7 @@ static

[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

[FFmpeg-devel] Late SEI is not implemented (providing a sample)

2022-12-29 Thread Miguel Borges de Freitas
Dear all, While updating Kodi to use the ffmpeg provided A53 side data for closed captions instead of our custom (old) demuxer (c.f. https://github.com/xbmc/xbmc/pull/22333) and running it against a battery of test samples I've found the following messages in the log for one particular sample: [f

Re: [FFmpeg-devel] Would a crypto file be acceptable?

2022-12-29 Thread Mark Gaiser
On Wed, Dec 28, 2022 at 10:02 PM Michael Niedermayer wrote: > Hi > > On Tue, Dec 27, 2022 at 11:46:38PM +0100, Mark Gaiser wrote: > > On Tue, Dec 27, 2022 at 10:40 PM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > > > On Wed, Dec 21, 2022 at 04:44:59PM +0100, Mark Gaiser wrote:

Re: [FFmpeg-devel] Would a crypto file be acceptable?

2022-12-29 Thread Ronald S. Bultje
Hi, On Wed, Dec 28, 2022 at 11:14 AM Mark Gaiser wrote: > On Wed, Dec 28, 2022 at 3:27 PM Ronald S. Bultje > wrote: > > > Hi Mark, > > > > On Tue, Dec 27, 2022 at 5:47 PM Mark Gaiser wrote: > > > > > The tricky part here is for anyone using this scheme to play this file. > > > Right now i'm do

Re: [FFmpeg-devel] [PATCH] avformat/segment: add option min_seg_duration

2022-12-29 Thread Gyan Doshi
On 2022-12-28 09:26 am, Gyan Doshi wrote: Plan to push tomorrow. Pushed as d39b34123daadce3c7db2851120cf10b4c3511db with a small change to ensure this is limited to segment_time. On 2022-12-25 11:54 pm, Gyan Doshi wrote: On 2022-12-21 09:08 pm, Gyan Doshi wrote: New option can be used

[FFmpeg-devel] [PATCH] libavformat/rtspdec.c: flush pes buffer while rtsp seek

2022-12-29 Thread tanwei (D)
>> On Dec 29, 2022, at 11:43, tanwei (D) wrote: >> +if (rt->cur_transport_priv && rt->transport == + RTSP_TRANSPORT_RTP) { +ff_rtp_seek_flush(rt->cur_transport_priv); +} else if (CONFIG_RTPDEC && rt->ts) { +av_freep(&rt->rec