Re: [FFmpeg-devel] [PATCH] libavcodec/avpacket: add av_packet_remove_side_data

2021-11-04 Thread zhilizhao(赵志立)
> On Oct 12, 2021, at 10:42 AM, zhilizhao(赵志立) wrote: > >> On Oct 12, 2021, at 2:20 AM, Marton Balint wrote: >> >> On Mon, 11 Oct 2021, Zhao Zhili wrote: >> >>> --- >>> doc/APIchanges | 3 +++ >>> libavcodec/avpacket.c | 15 +++ >>> libavcodec/packet.h |

Re: [FFmpeg-devel] [PATCH] avutil: deprecate AVRational field inside AVOption::default_val

2021-11-04 Thread zhilizhao(赵志立)
> On Oct 21, 2021, at 5:23 PM, Zhao Zhili wrote: > > It's not being used. For backward compatibility, AV_OPT_TYPE_RATIONAL > cannot be changed to use it. > --- > libavutil/opt.h | 2 ++ > libavutil/version.h | 3 +++ > 2 files changed, 5 insertions(+) > Ping. __

Re: [FFmpeg-devel] [PATCH 1/3] avformat/dashenc: enabling streaming automatically for ldash

2021-11-04 Thread zhilizhao(赵志立)
Ping for the patch set. > On Oct 21, 2021, at 4:15 PM, Zhao Zhili wrote: > > There is a little chance that user specified contradicted options > like -streaming 0 -ldash 1, however, it's more likely that user > didn't know or forgot to enable streaming for ldash. So enabling > streaming automati

Re: [FFmpeg-devel] [PATCH] lavc/{av1, h264, h265}_metadata_bsf: fix description of tick_rate

2021-11-04 Thread zhilizhao(赵志立)
> On Sep 29, 2021, at 11:21 AM, zhilizhao(赵志立) wrote: > > Ping for review. > >> On Aug 27, 2021, at 3:13 PM, Zhao Zhili wrote: >> >> Users may take the description literally which leads to inverted >> results. >> --- >> doc/bitstream_filters.texi | 8 >> libavcodec/av1_metadata_b

Re: [FFmpeg-devel] [PATCH 2/2] Fix missing PCM sample size option when it is used as the lone option for DirectShow audio capture

2021-11-04 Thread Michael Niedermayer
On Wed, Nov 03, 2021 at 10:41:24PM -0600, Roger Pack wrote: > I have looked at these two patches and they look good to me, if > anybody could commit them for me, that would be great. The patches are corrupted Applying: Use WAVEFORMATEX from AM_MEDIA_TYPE for describing device capabilities. (Fixes

Re: [FFmpeg-devel] [PATCH] lavf/mov: Always prefer tfdt over sidx

2021-11-04 Thread Thilo Borgmann
Am 03.11.21 um 17:41 schrieb Gyan Doshi: > > > On 2021-11-03 03:16 pm, Thilo Borgmann wrote: >> Hi, >> >> this effectively reverts 071930de724166bfb90fc6d368c748771188fd94 and fixes >> the underlying issue by always preferring TFDT. >> >> Furthermore, the current solution fails if the -use_tfdt

Re: [FFmpeg-devel] [PATCH 1/2] Use WAVEFORMATEX from AM_MEDIA_TYPE for describing device capabilities. (Fixes #9420)

2021-11-04 Thread Brad Isbell
Re-sending with correct line endings. Thanks! >From fd6bfd237d4d25de04d8179ccb1ff2d2f0aa904f Mon Sep 17 00:00:00 2001 From: Brad Isbell Date: Sun, 3 Oct 2021 00:16:05 -0500 Subject: [PATCH 1/2] Use WAVEFORMATEX from AM_MEDIA_TYPE for describing device capabilities. (Fixes #9420) Signed-off-b

Re: [FFmpeg-devel] [PATCH 2/2] Fix missing PCM sample size option when it is used as the lone option for DirectShow audio capture

2021-11-04 Thread Brad Isbell
Re-sending with correct line endings. Thanks! >From 25e34ef9f995afffe67e519bb6f03a750aa09ae2 Mon Sep 17 00:00:00 2001 From: Brad Isbell Date: Wed, 3 Nov 2021 20:38:59 -0500 Subject: [PATCH 2/2] Fix missing PCM sample size option when it is used as the lone option for DirectShow audio capture

Re: [FFmpeg-devel] [PATCH 2/2] Fix missing PCM sample size option when it is used as the lone option for DirectShow audio capture

2021-11-04 Thread Brad Isbell
Brad Isbell // AudioPump, Inc. b...@audiopump.co Skype: bradisbell Phone: +1 312-488-4680 On Thu, Nov 4, 2021 at 12:21 PM Brad Isbell wrote: > > Re-sending with correct line endings. Thanks! > > > > From 25e34ef9f995afffe67e519bb6f03a750aa09ae2 Mon Sep 17 00:00:00 2001 > From: Brad Isbell > Da

Re: [FFmpeg-devel] [PATCH 1/2] Use WAVEFORMATEX from AM_MEDIA_TYPE for describing device capabilities. (Fixes #9420)

2021-11-04 Thread Brad Isbell
On Thu, Nov 4, 2021 at 12:20 PM Brad Isbell wrote: > > Re-sending with correct line endings. Thanks! > > > From fd6bfd237d4d25de04d8179ccb1ff2d2f0aa904f Mon Sep 17 00:00:00 2001 > From: Brad Isbell > Date: Sun, 3 Oct 2021 00:16:05 -0500 > Subject: [PATCH 1/2] Use WAVEFORMATEX from AM_MEDIA_TYPE

Re: [FFmpeg-devel] [PATCH 1/1] swscale/input: fix planar_rgb16_to_a for gbrap10be and gbrap12be formats

2021-11-04 Thread Michael Niedermayer
On Wed, Nov 03, 2021 at 10:55:14AM -0700, mindm...@gmail.com wrote: > From: Mark Reid > > --- > libswscale/input.c | 2 +- > tests/ref/fate/filter-pixfmts-scale | 4 ++-- > 2 files changed, 3 insertions(+), 3 deletions(-) will apply thx [...] -- Michael GnuPG fingerprint

[FFmpeg-devel] [PATCH v2 1/4] avformat/imf: Headers and build files

2021-11-04 Thread pal
From: Pierre-Anthony Lemieux Signed-off-by: Pierre-Anthony Lemieux --- Notes: The IMF demuxer accepts as input an IMF CPL. The assets referenced by the CPL can be contained in multiple deliveries, each defined by an ASSETMAP file: ffmpeg -assetmaps ,,... -i If -asset

[FFmpeg-devel] [PATCH v2 2/4] avformat/imf: CPL processor

2021-11-04 Thread pal
From: Pierre-Anthony Lemieux Signed-off-by: Pierre-Anthony Lemieux --- Notes: Implements IMF Composition Playlist (CPL) parsing. libavformat/imf_cpl.c | 706 ++ 1 file changed, 706 insertions(+) create mode 100644 libavformat/imf_cpl.c diff --git

[FFmpeg-devel] [PATCH v2 3/4] avformat/imf: Demuxer implementation

2021-11-04 Thread pal
From: Pierre-Anthony Lemieux Signed-off-by: Pierre-Anthony Lemieux --- Notes: Implements the IMF demuxer. libavformat/imfdec.c | 735 +++ 1 file changed, 735 insertions(+) create mode 100644 libavformat/imfdec.c diff --git a/libavformat/imfdec.c b

[FFmpeg-devel] [PATCH v2 4/4] avformat/imf: Tests

2021-11-04 Thread pal
From: Pierre-Anthony Lemieux Signed-off-by: Pierre-Anthony Lemieux --- Notes: Tests for the public API of the IMF demuxer. libavformat/tests/imf.c | 498 1 file changed, 498 insertions(+) create mode 100644 libavformat/tests/imf.c diff --git a/li

Re: [FFmpeg-devel] [PATCH 1/3] avformat/dashenc: enabling streaming automatically for ldash

2021-11-04 Thread James Almer
On 11/4/2021 5:03 AM, "zhilizhao(赵志立)" wrote: Ping for the patch set. On Oct 21, 2021, at 4:15 PM, Zhao Zhili wrote: There is a little chance that user specified contradicted options like -streaming 0 -ldash 1, however, it's more likely that user didn't know or forgot to enable streaming for

Re: [FFmpeg-devel] [PATCH] lavf/mov: Always prefer tfdt over sidx

2021-11-04 Thread Gyan Doshi
On 2021-11-04 04:33 pm, Thilo Borgmann wrote: Am 03.11.21 um 17:41 schrieb Gyan Doshi: On 2021-11-03 03:16 pm, Thilo Borgmann wrote: Hi, this effectively reverts 071930de724166bfb90fc6d368c748771188fd94 and fixes the underlying issue by always preferring TFDT. Furthermore, the current so