[FFmpeg-devel] [PATCH] MAINTAINERS: add my gpg fingerprint

2021-12-22 Thread Haihao Xiang
Signed-off-by: Haihao Xiang --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 50ee5efecc..c065e94498 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -611,6 +611,7 @@ Daniel Verkamp78A6 07ED 782C 653E C628 B8B9 F0EB 8DD8 2F0E 21C7 F

Re: [FFmpeg-devel] Politics

2021-12-22 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Tuesday, December 21, 2021 7:39 PM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Politics > > On Mon, Dec 20, 2021 at 11:20:38PM +, Soft Works wrote: > [...] > > >

Re: [FFmpeg-devel] [PATCH] libavformat: add side_data copy in concat demuxer

2021-12-22 Thread Nicolas George
Gerard Sole (12021-12-15): > Adds support for concat demuxer to copy the side data information > from the input file to the resulting file. It will behave like the > metadata copy, where the metadata of the first file is kept in the > the output file. > > Extract the current code that already perf

[FFmpeg-devel] [PATCH 1/2] avformat/mov: add validate_box_size

2021-12-22 Thread Gyan Doshi
Helper function to check if stored box size is correct and looks to be fully available. --- libavformat/mov.c | 32 1 file changed, 32 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 2aed6e80ef..2cc9e699de 100644 --- a/libavformat/mov.c +++

[FFmpeg-devel] [PATCH 2/2] avformat/mov: validate box size for stts

2021-12-22 Thread Gyan Doshi
--- libavformat/mov.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 2cc9e699de..59ee7ed2a9 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2967,6 +2967,12 @@ static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)

Re: [FFmpeg-devel] [PATCH v2] avformat/mov: abort reading truncated stts

2021-12-22 Thread Gyan Doshi
Patch superseded by new patch using helper function. On 2021-12-21 10:20 am, Gyan Doshi wrote: On 2021-12-21 03:06 am, Michael Niedermayer wrote: On Mon, Dec 20, 2021 at 10:21:53PM +0100, Michael Niedermayer wrote: On Tue, Dec 21, 2021 at 02:31:33AM +0530, Gyan Doshi wrote: On 2021-12-21 0

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mov: add validate_box_size

2021-12-22 Thread zhilizhao(赵志立)
> On Dec 22, 2021, at 7:30 PM, Gyan Doshi wrote: > > Helper function to check if stored box size is correct and looks > to be fully available. > --- > libavformat/mov.c | 32 > 1 file changed, 32 insertions(+) > > diff --git a/libavformat/mov.c b/libavformat/mov

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mxf: support MCA audio information

2021-12-22 Thread Tomas Härdin
tis 2021-12-21 klockan 21:24 +0100 skrev Marton Balint: > > > On Tue, 21 Dec 2021, Tomas Härdin wrote: > > > tis 2021-12-21 klockan 11:44 +0100 skrev Marc-Antoine ARNAUD: > > > Le ven. 17 déc. 2021 à 19:12, Marton Balint a > > > écrit : > > > > > > > > > > > > > > > On Fri, 17 Dec 2021, Marc

[FFmpeg-devel] [PATCH v2 1/2] avformat/mov: add validate_box_size

2021-12-22 Thread Gyan Doshi
Helper function to check if stored box size is correct and looks to be fully available. --- libavformat/mov.c | 34 ++ 1 file changed, 34 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 2aed6e80ef..7de95b7ab0 100644 --- a/libavformat/mov.c ++

[FFmpeg-devel] [PATCH v2 2/2] avformat/mov: validate box size for stts

2021-12-22 Thread Gyan Doshi
--- libavformat/mov.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 7de95b7ab0..1e44c74944 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2969,6 +2969,12 @@ static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)

Re: [FFmpeg-devel] [PATCH v8 1/6] lavu/frame: Add Dolby Vision metadata side data type

2021-12-22 Thread Lynne
20 Dec 2021, 16:31 by ffm...@haasn.xyz: > From: Niklas Haas > > Signed-off-by: Niklas Haas > --- > doc/APIchanges| 3 + > libavutil/dovi_meta.c | 12 > libavutil/dovi_meta.h | 143 ++ > libavutil/frame.c | 1 + > libavutil/frame.h

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/mjpegdec: Fix exif rotation->displaymatrix conversion

2021-12-22 Thread Andreas Rheinhardt
Andreas Rheinhardt: > The cases in which there was flipping together with a rotation > that is not a multiple of the identity were wrong. > > Signed-off-by: Andreas Rheinhardt > --- > This whole patchset relies on the mismatch in av_display_rotation_set() > being solved by keeping the current beh

Re: [FFmpeg-devel] [PATCH v2 1/2] avformat/mov: add validate_box_size

2021-12-22 Thread Nicolas George
Gyan Doshi (12021-12-22): > Helper function to check if stored box size is correct and looks > to be fully available. > --- > libavformat/mov.c | 34 ++ > 1 file changed, 34 insertions(+) > > diff --git a/libavformat/mov.c b/libavformat/mov.c > index 2aed6e80ef..7d

Re: [FFmpeg-devel] [PATCH v8 1/6] lavu/frame: Add Dolby Vision metadata side data type

2021-12-22 Thread Hendrik Leppkes
On Wed, Dec 22, 2021 at 2:00 PM Lynne wrote: > > 20 Dec 2021, 16:31 by ffm...@haasn.xyz: > > > From: Niklas Haas > > > > Signed-off-by: Niklas Haas > > --- > > doc/APIchanges| 3 + > > libavutil/dovi_meta.c | 12 > > libavutil/dovi_meta.h | 143 ++

Re: [FFmpeg-devel] Politics

2021-12-22 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Monday, December 20, 2021 4:24 PM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Politics > > I am not sure the direction from which you approuch this is going to > inc

Re: [FFmpeg-devel] [PATCH v8 1/6] lavu/frame: Add Dolby Vision metadata side data type

2021-12-22 Thread Andreas Rheinhardt
Hendrik Leppkes: > On Wed, Dec 22, 2021 at 2:00 PM Lynne wrote: >> >> 20 Dec 2021, 16:31 by ffm...@haasn.xyz: >> >>> From: Niklas Haas >>> >>> Signed-off-by: Niklas Haas >>> --- >>> doc/APIchanges| 3 + >>> libavutil/dovi_meta.c | 12 >>> libavutil/dovi_meta.h | 143

Re: [FFmpeg-devel] [PATCH v2 1/2] avformat/mov: add validate_box_size

2021-12-22 Thread Gyan Doshi
On 2021-12-22 06:43 pm, Nicolas George wrote: Gyan Doshi (12021-12-22): Helper function to check if stored box size is correct and looks to be fully available. --- libavformat/mov.c | 34 ++ 1 file changed, 34 insertions(+) diff --git a/libavformat/mov.c b/

Re: [FFmpeg-devel] [PATCH] avformat: add bitpacked demuxer

2021-12-22 Thread Andreas Rheinhardt
lance.lmw...@gmail.com: > On Tue, Dec 21, 2021 at 02:20:31PM +0100, Andreas Rheinhardt wrote: >> lance.lmw...@gmail.com: >>> From: Limin Wang >>> >>> Allows user can playback bitpacked pixel format directly: >>> ffplay -video_size 1280x720 test.bitpacked >>> ffplay -f bitpacked -video_size 1280x72

Re: [FFmpeg-devel] [PATCH v8 1/6] lavu/frame: Add Dolby Vision metadata side data type

2021-12-22 Thread Hendrik Leppkes
On Wed, Dec 22, 2021 at 2:33 PM Andreas Rheinhardt wrote: > > Hendrik Leppkes: > > On Wed, Dec 22, 2021 at 2:00 PM Lynne wrote: > >> > >> 20 Dec 2021, 16:31 by ffm...@haasn.xyz: > >> > >>> From: Niklas Haas > >>> > >>> Signed-off-by: Niklas Haas > >>> --- > >>> doc/APIchanges| 3 + >

Re: [FFmpeg-devel] [PATCH] avformat: add bitpacked demuxer

2021-12-22 Thread lance . lmwang
On Wed, Dec 22, 2021 at 02:38:13PM +0100, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > On Tue, Dec 21, 2021 at 02:20:31PM +0100, Andreas Rheinhardt wrote: > >> lance.lmw...@gmail.com: > >>> From: Limin Wang > >>> > >>> Allows user can playback bitpacked pixel format directly: > >>> ffpl

Re: [FFmpeg-devel] 5.0 release

2021-12-22 Thread Michael Niedermayer
On Mon, Dec 13, 2021 at 07:05:07PM +0100, Jean-Baptiste Kempf wrote: > On Mon, 13 Dec 2021, at 16:25, Michael Niedermayer wrote: > > If you know of any major issues which need to be done before the release do > > them > > now. If you know of any issues which are release-blocking list them in a >

Re: [FFmpeg-devel] 5.0 release

2021-12-22 Thread James Almer
On 12/22/2021 11:03 AM, Michael Niedermayer wrote: On Mon, Dec 13, 2021 at 07:05:07PM +0100, Jean-Baptiste Kempf wrote: On Mon, 13 Dec 2021, at 16:25, Michael Niedermayer wrote: If you know of any major issues which need to be done before the release do them now. If you know of any issues wh

Re: [FFmpeg-devel] [PATCH v8 1/6] lavu/frame: Add Dolby Vision metadata side data type

2021-12-22 Thread Andreas Rheinhardt
Hendrik Leppkes: > On Wed, Dec 22, 2021 at 2:33 PM Andreas Rheinhardt > wrote: >> >> Hendrik Leppkes: >>> On Wed, Dec 22, 2021 at 2:00 PM Lynne wrote: 20 Dec 2021, 16:31 by ffm...@haasn.xyz: > From: Niklas Haas > > Signed-off-by: Niklas Haas > --- > doc/APIch

Re: [FFmpeg-devel] [PATCH] configure: use pkg-config for sndio

2021-12-22 Thread Timo Rothenpieler
On 29.10.2021 22:41, Brad Smith wrote: --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index ede8f9777b..605a317df1 100755 --- a/configure +++ b/configure @@ -6718,7 +6718,8 @@ enabled alsa && { check_pkg_config alsa alsa "alsa/asound

[FFmpeg-devel] [PATCH v9 1/6] lavu/frame: Add Dolby Vision metadata side data type

2021-12-22 Thread Niklas Haas
From: Niklas Haas In order to be able to extend this struct later (as the Dolby Vision RPU evolves), all of the structs are considered extensible, and the individual constituent fields must instead be accessed via offsets. The precedent for this style of access is set in Signed-off-by: Niklas H

[FFmpeg-devel] [PATCH v9 2/6] lavfi/showinfo: Support AV_FRAME_DATA_DOVI_METADATA

2021-12-22 Thread Niklas Haas
From: Niklas Haas Signed-off-by: Niklas Haas --- libavfilter/vf_showinfo.c | 108 ++ 1 file changed, 108 insertions(+) diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c index 62c7833247..909ad4f8d7 100644 --- a/libavfilter/vf_showinfo.c +++

[FFmpeg-devel] [PATCH v9 3/6] ffprobe: Support AV_FRAME_DATA_DOVI_METADATA

2021-12-22 Thread Niklas Haas
From: Jan Ekström Co-authored-by: Niklas Haas --- fftools/ffprobe.c | 173 +- 1 file changed, 170 insertions(+), 3 deletions(-) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 906bb03b16..20582ca7ac 100644 --- a/fftools/ffprobe.c +++ b/fftoo

[FFmpeg-devel] [PATCH v9 4/6] lavc: Implement Dolby Vision RPU parsing

2021-12-22 Thread Niklas Haas
From: Niklas Haas Based on a mixture of guesswork, partial documentation in patents, and reverse engineering of real-world samples. Confirmed working for all the samples I've thrown at it. Contains some annoying machinery to persist these values in between frames, which is needed in theory even

[FFmpeg-devel] [PATCH v9 6/6] lavc/hevcdec: Parse DOVI RPU NALs

2021-12-22 Thread Niklas Haas
From: Niklas Haas And expose the parsed values as frame side data. Update FATE results to match. It's worth documenting that this relies on the dovi configuration record being present on the first AVPacket fed to the decoder, which in practice is the case if if the API user has called something

[FFmpeg-devel] [PATCH v9 5/6] fate: Limit Dolby Vision RPU test frame count

2021-12-22 Thread Niklas Haas
From: Niklas Haas To avoid the ref for this growing to a very large size when attaching the parsed RPU side data. Since this sample does not have any dynamic metadata, two frames will serve just as well as 100. Signed-off-by: Niklas Haas --- tests/fate/hevc.mak| 2 +- tests/ref/fate/

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mxf: support MCA audio information

2021-12-22 Thread Pierre-Anthony Lemieux
On Wed, Dec 22, 2021 at 4:38 AM Tomas Härdin wrote: > > tis 2021-12-21 klockan 21:24 +0100 skrev Marton Balint: > > > > > > On Tue, 21 Dec 2021, Tomas Härdin wrote: > > > > > tis 2021-12-21 klockan 11:44 +0100 skrev Marc-Antoine ARNAUD: > > > > Le ven. 17 déc. 2021 à 19:12, Marton Balint a > > >

[FFmpeg-devel] The case for a good string API

2021-12-22 Thread Nicolas George
Hi. I will try again proposing a good string API for the project. But this time, instead of showing the implementation code, I will ask about the principle. So, please, read the argument, and give your opinion on the principle. If we agree on the principle, we can discuss the code then. * Why w

[FFmpeg-devel] [RFC PATCH] vf_fps: Requantize pts of CFR videos

2021-12-22 Thread Calvin Walton
This is mostly to avoid oddities in small framerate adjustments when you have input videos from containers such as matroska, where the pts values are quantized with a large enough error to cause issues. An example, when converting from 24/1.001 fps to 24 fps with round=down from an mkv source (inl

Re: [FFmpeg-devel] 5.0 release

2021-12-22 Thread Jean-Baptiste Kempf
On Wed, 22 Dec 2021, at 15:05, James Almer wrote: > Is the December target to get into the feature freeze schedule from > distros? No, it was set by me, in order to get the distro freezes from January. We can miss the target a bit this year, and then make it better for 2022. BEst,. -- Jean-Ba

Re: [FFmpeg-devel] Politics

2021-12-22 Thread Michael Niedermayer
On Wed, Dec 22, 2021 at 01:29:04PM +, Soft Works wrote: > > > > -Original Message- > > From: ffmpeg-devel On Behalf Of Michael > > Niedermayer > > Sent: Monday, December 20, 2021 4:24 PM > > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] Politics > >

Re: [FFmpeg-devel] [PATCH v9 6/6] lavc/hevcdec: Parse DOVI RPU NALs

2021-12-22 Thread Andreas Rheinhardt
Niklas Haas: > From: Niklas Haas > > And expose the parsed values as frame side data. Update FATE results to > match. > > It's worth documenting that this relies on the dovi configuration record > being present on the first AVPacket fed to the decoder, which in > practice is the case if if the A

Re: [FFmpeg-devel] Politics

2021-12-22 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Michael > Niedermayer > Sent: Wednesday, December 22, 2021 8:54 PM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] Politics > > On Wed, Dec 22, 2021 at 01:29:04PM +, Soft Works wrote: > > > > > >

Re: [FFmpeg-devel] [PATCH v2 2/2] avformat/mov: validate box size for stts

2021-12-22 Thread Michael Niedermayer
On Wed, Dec 22, 2021 at 06:17:28PM +0530, Gyan Doshi wrote: > --- > libavformat/mov.c | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/libavformat/mov.c b/libavformat/mov.c > index 7de95b7ab0..1e44c74944 100644 > --- a/libavformat/mov.c > +++ b/libavformat/mov.c > @@ -2969,6 +2969,1

Re: [FFmpeg-devel] [RFC PATCH] vf_fps: Requantize pts of CFR videos

2021-12-22 Thread Michael Niedermayer
On Wed, Dec 22, 2021 at 11:20:26AM -0500, Calvin Walton wrote: > This is mostly to avoid oddities in small framerate adjustments when you > have input videos from containers such as matroska, where the pts values > are quantized with a large enough error to cause issues. > > An example, when conve

[FFmpeg-devel] [PATCH v2 1/3] avformat: add bitpacked demuxer

2021-12-22 Thread lance . lmwang
From: Limin Wang Allows user can playback bitpacked pixel format directly: ffplay -video_size 1280x720 -pixel_format yuv422p10 test.bitpacked ffplay -f bitpacked -video_size 1280x720 -pixel_format uyvy422 test.yuv Signed-off-by: Limin Wang --- libavformat/Makefile | 1 + libavformat/allf

[FFmpeg-devel] [PATCH v2 2/3] avformat: reuse the common code for v210/v210x

2021-12-22 Thread lance . lmwang
From: Limin Wang As suggested by Andreas Rheinhardt, most code of v210 demuxer is common code which is duplicated from rawvideodec, so it's better to move v210/v210x demuxer code to rawvideodec.c and reuse the common code. Signed-off-by: Limin Wang --- libavformat/Makefile | 4 ++-- liba

[FFmpeg-devel] [PATCH v2 3/3] avformat: remove unused v210.c

2021-12-22 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/v210.c | 123 - 1 file changed, 123 deletions(-) delete mode 100644 libavformat/v210.c diff --git a/libavformat/v210.c b/libavformat/v210.c deleted file mode 100644 index 24f71d4..00

[FFmpeg-devel] GitHub Integration

2021-12-22 Thread Soft Works
Hi, holidays are approaching and I got a little present for all of you even though it won’t be something for everybody. A while ago I had committed to prepare a test setup for integrating GitHub in a similar way as the Git developers are doing. For those who missed it or don’t remember the out

Re: [FFmpeg-devel] [PATCH] libavutil/hwcontext_qsv: clean padding when upload qsv frames

2021-12-22 Thread Xiang, Haihao
On Tue, 2021-12-14 at 05:53 +, Eoff, Ullysses A wrote: > > -Original Message- > > From: ffmpeg-devel On Behalf Of Chen, > > Wenbin > > Sent: Monday, December 13, 2021 6:24 PM > > To: ffmpeg-devel@ffmpeg.org > > Subject: Re: [FFmpeg-devel] [PATCH] libavutil/hwcontext_qsv: clean padding

[FFmpeg-devel] [PATCH V2] libavutil/hwcontext_qsv: clean padding when upload qsv frames

2021-12-22 Thread Wenbin Chen
Fix #7830 When we upload a frame that is not padded as MSDK requires, we create a new AVFrame to copy data. The frame's padding data is uninitialized so it brings run to run problem. For example, If we run the following command serveral times we will get different outputs. ffmpeg -init_hw_device q

Re: [FFmpeg-devel] [RFC PATCH] vf_fps: Requantize pts of CFR videos

2021-12-22 Thread Calvin Walton
On Wed, 2021-12-22 at 23:04 +0100, Michael Niedermayer wrote: > On Wed, Dec 22, 2021 at 11:20:26AM -0500, Calvin Walton wrote: > > This is mostly to avoid oddities in small framerate adjustments > > when you > > have input videos from containers such as matroska, where the pts > > values > > are qu

Re: [FFmpeg-devel] [RFC PATCH] vf_fps: Requantize pts of CFR videos

2021-12-22 Thread Calvin Walton
On Wed, 2021-12-22 at 21:57 -0500, Calvin Walton wrote: > > If you could provide the logs from the fps filter at 'verbose' log > level for the initial segment of the file (first ~1 second of so) > that > would provide helpful information. I said "verbose", but I meant "debug" here :/ -- Calvin

Re: [FFmpeg-devel] [PATCH v7 01/12] avdevice/dshow: prevent NULL access

2021-12-22 Thread Roger Pack
These LGTM, could someone apply them for me? Thanks! On Tue, Dec 21, 2021 at 6:54 AM Diederick Niehorster wrote: > > list_options true would crash when both a video and an audio device were > specified as input. Crash would occur on line 784 because > ctx->device_unique_name[otherDevType] would b

Re: [FFmpeg-devel] [PATCH v7 01/12] avdevice/dshow: prevent NULL access

2021-12-22 Thread Gyan Doshi
On 2021-12-23 10:39 am, Roger Pack wrote: These LGTM, could someone apply them for me? Thanks! Tomorrow, if no else does, or objects. On Tue, Dec 21, 2021 at 6:54 AM Diederick Niehorster wrote: list_options true would crash when both a video and an audio device were specified as input.

[FFmpeg-devel] FATE failures due to 88d804b7ffa

2021-12-22 Thread Gyan Doshi
Multiple FATE tests are failing due to 88d804b7ffa20caab2e8e2809da974c41f7fd8fc swscale: add P210/P410/P216/P416 output See https://patchwork.ffmpeg.org/project/ffmpeg/patch/20211217001215.75135-10-rco...@rcombs.me/ Regards, Gyan ___ ffmpeg-devel ma

[FFmpeg-devel] [PATCH] avformat/mov: add ignore_hoov option to ignore hoov atom

2021-12-22 Thread Steven Liu
Try to get context from the moov atom when the hoov before moov atom, because the streams info get a possible incorrect when there have both hoov and moov atom. So add and ignore_hoov option for try to get moov context by user. Signed-off-by: Steven Liu --- doc/demuxers.texi | 6 ++ libavf

[FFmpeg-devel] [PATCH v3 1/2] avformat/mov: add validate_box_size

2021-12-22 Thread Gyan Doshi
Helper function to check if stored box size is correct and looks to be fully available. --- libavformat/mov.c | 33 + 1 file changed, 33 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 2aed6e80ef..e223e95e2e 100644 --- a/libavformat/mov.c +++

[FFmpeg-devel] [PATCH v3 2/2] avformat/mov: validate box size for stts

2021-12-22 Thread Gyan Doshi
--- libavformat/mov.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index e223e95e2e..71404ba07a 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2968,6 +2968,12 @@ static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)

Re: [FFmpeg-devel] [PATCH v2 2/2] avformat/mov: validate box size for stts

2021-12-22 Thread Gyan Doshi
On 2021-12-23 03:04 am, Michael Niedermayer wrote: On Wed, Dec 22, 2021 at 06:17:28PM +0530, Gyan Doshi wrote: --- libavformat/mov.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 7de95b7ab0..1e44c74944 100644 --- a/libavformat/mov.c +

Re: [FFmpeg-devel] GitHub Integration

2021-12-22 Thread Paul B Mahol
Topic name is deeply misleading. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".