Re: [FFmpeg-devel] [PATCH 6/7] get_bits: change refill to RAD pattern

2020-04-15 Thread Christophe Gisquet
Hi, Le mar. 14 avr. 2020 à 12:25, Christophe Gisquet a écrit : > if (is_le) > -s->cache |= (cache_type)AV_RL_HALF(s->ptr) << s->bits_left; > +s->cache |= (cache_type)AV_RL_ALL(s->ptr) << s->bits_left; > else > -s->cache |= (cache_type)AV_RB_HALF(s->ptr) << (BITST

Re: [FFmpeg-devel] [PATCH] avcodec/mediacodec_wrapper: fix {input, output}_buffers global reference leak

2020-04-15 Thread Matthieu Bouron
On Tue, Apr 14, 2020 at 09:51:08AM +0200, Matthieu Bouron wrote: > On Thu, Apr 09, 2020 at 05:06:05PM +0200, Matthieu Bouron wrote: > > Fixes ticket #8607. > > --- > > libavcodec/mediacodec_wrapper.c | 6 ++ > > 1 file changed, 6 insertions(+) > > > > diff --git a/libavcodec/mediacodec_wrappe

Re: [FFmpeg-devel] [PATCH 2/7] get_bits: support 32bits cache

2020-04-15 Thread Christophe Gisquet
Hi, Le mer. 15 avr. 2020 à 00:41, Carl Eugen Hoyos a écrit : > Will test on ppc32 over the weekend. Please do. Testing on different endianness and different arch is probably what this patchset lacks the most. If you can, on this arch, please test just before and just after "0006-get_bits-change

[FFmpeg-devel] [PATCH] avfilter: add maskedthreshold filter

2020-04-15 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 15 ++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_maskedthreshold.c | 298 +++ 4 files changed, 315 insertions(+) create mode 100644 libavfilter

Re: [FFmpeg-devel] [PATCH] [GSOC] libavfilter/vf_colorconstancy.c : Adding weighted greyedge

2020-04-15 Thread Michael Niedermayer
On Wed, Apr 15, 2020 at 01:32:16AM +0530, YATENDRA SINGH wrote: > Signed-off-by: Yatendra Singh > --- > libavfilter/Makefile| 1 + > libavfilter/allfilters.c| 1 + > libavfilter/vf_colorconstancy.c | 265 +++- > 3 files changed, 232 insertions(+

Re: [FFmpeg-devel] [PATCH v2] ffmpeg: allow full range of dts_delta_threshold

2020-04-15 Thread Michael Niedermayer
On Wed, Apr 15, 2020 at 10:55:47AM +0530, Gyan Doshi wrote: > > > On 15-04-2020 01:33 am, Michael Niedermayer wrote: > >On Tue, Apr 14, 2020 at 02:48:47PM +0530, Gyan Doshi wrote: > >>For inputs from demuxers with AVFMT_TS_DISCONT flag, > >>the existing condition, > >> > >> delta < -1LL*dts_del

Re: [FFmpeg-devel] [PATCH] [GSOC] libavfilter/vf_colorconstancy.c : Adding weighted greyedge

2020-04-15 Thread myp...@gmail.com
On Wed, Apr 15, 2020 at 4:02 AM YATENDRA SINGH wrote: > > Signed-off-by: Yatendra Singh Missed the commit message body part > --- > libavfilter/Makefile| 1 + > libavfilter/allfilters.c| 1 + > libavfilter/vf_colorconstancy.c | 265 +++- > 3

Re: [FFmpeg-devel] [PATCH v8 0/2] Pro Pinball Series Soundbank demuxer + decoder.

2020-04-15 Thread Zane van Iperen
On Tue, 07 Apr 2020 10:48:53 + "Zane van Iperen" wrote: > Adds support for the soundbank files used by the Pro Pinball series > of games. > Ping 2. Could I please have some reviews on this, it's been over a week. I have a rebased version here, if required: https://github.com/vs49688/FFmpeg

Re: [FFmpeg-devel] [PATCH v2] ffmpeg: allow full range of dts_delta_threshold

2020-04-15 Thread Gyan Doshi
On 15-04-2020 05:03 pm, Michael Niedermayer wrote: On Wed, Apr 15, 2020 at 10:55:47AM +0530, Gyan Doshi wrote: On 15-04-2020 01:33 am, Michael Niedermayer wrote: On Tue, Apr 14, 2020 at 02:48:47PM +0530, Gyan Doshi wrote: For inputs from demuxers with AVFMT_TS_DISCONT flag, the existing con

[FFmpeg-devel] [PATCH v2 1/4] fftools/qsv: enabling d3d11va/dxva2 device selection

2020-04-15 Thread artem . galin
From: Artem Galin child_device_type argument is responsible for selection. Usage examples: -init_hw_device qsv:hw,child_device_type=d3d11va -init_hw_device qsv:hw,child_device_type=dxva2 Signed-off-by: Artem Galin --- fftools/ffmpeg_opt.c | 12 +++- 1 file changed, 11

[FFmpeg-devel] [PATCH v2 4/4] libavutil/qsv: enabling d3d11va support

2020-04-15 Thread artem . galin
From: Artem Galin Makes selection of d3d11va device type by default and over DirectX 9, which is still supported but requires explicit selection. This enables usage of non-powered/headless GPU, better HDR support. Pool of resources is allocated as one texture with array of slices. Added d3d11va

[FFmpeg-devel] [PATCH v2 3/4] libavcodec/qsv: enabling d3d11va support, added mfxhdlpair

2020-04-15 Thread artem . galin
From: Artem Galin Adding DX11 relevant device type checks and adjusting callbacks with proper MediaSDK pair type support. Extending structure for proper MediaSDK pair type support. Signed-off-by: Artem Galin --- libavcodec/qsv.c | 52 --- libavcode

Re: [FFmpeg-devel] [PATCH] [GSOC] libavfilter/vf_colorconstancy.c : Adding weighted greyedge

2020-04-15 Thread Moritz Barsnick
On Wed, Apr 15, 2020 at 01:32:16 +0530, YATENDRA SINGH wrote: As Michael noted, please resend without broken like feeds. I can't read most of the diff the way it is now. Some notes nevertheless: > Signed-off-by: Yatendra Singh > --- > libavfilter/Makefile| 1 + > libavfilter/allf

[FFmpeg-devel] [PATCH v2 2/4] libavfilter/qsvvpp: enabling d3d11va support

2020-04-15 Thread artem . galin
From: Artem Galin Adding DX11 relevant device type checks and adjusting callback with proper MediaSDK pair type support. Signed-off-by: Artem Galin --- libavfilter/qsvvpp.c | 40 ++-- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/libavfilte

[FFmpeg-devel] [PATCH v2] configure: fix clang on macOS 10.15

2020-04-15 Thread Josh de Kock
Works around a bug in the newer Xcode 11's clang with -fstack-check emitting bad code with misaligned call instructions. This fixes Trac #8073 --- configure | 5 + 1 file changed, 5 insertions(+) diff --git a/configure b/configure index 4d4c429be9..2ede4e7163 100755 --- a/configure +++ b/con

Re: [FFmpeg-devel] [PATCH v2] configure: fix clang on macOS 10.15

2020-04-15 Thread Jan Ekström
On Wed, Apr 15, 2020 at 4:34 PM Josh de Kock wrote: > > Works around a bug in the newer Xcode 11's clang with -fstack-check > emitting bad code with misaligned call instructions. > > This fixes Trac #8073 > --- > configure | 5 + > 1 file changed, 5 insertions(+) > > diff --git a/configure b/

Re: [FFmpeg-devel] [PATCH v2] configure: fix clang on macOS 10.15

2020-04-15 Thread Josh de Kock
On Wed, Apr 15, 2020, at 3:54 PM, Jan Ekström wrote: > [...] > > Thank you, LGTM from me. > > Jan Pushed. -- Josh ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above

Re: [FFmpeg-devel] [PATCH v4 1/2] libavcodec/libaomenc.c: Support gray input

2020-04-15 Thread James Almer
On 4/14/2020 9:26 PM, James Zern wrote: > On Tue, Apr 14, 2020 at 3:57 AM Ryo Hirafuji > wrote: >> >> Thanks for the review! >> >> This should bump the micro version number in libavcodec/version.h. >> >> >> OK, I will bump up the version when the problem below is solved. >> > > If we want to go

Re: [FFmpeg-devel] [PATCH V2] Fixes compiler bug - replace vec_lvsl/vec_perm with vec_xl

2020-04-15 Thread Carl Eugen Hoyos
Am Fr., 2. Aug. 2019 um 17:24 Uhr schrieb ckerchne : > > A bug exist with the gcc compilers for Power in versions 6.x and 7.x > (verified with 6.3 and 7.4). It was fixed in version 8.x (verified with > 8.3). I was using a Power 9 ppc64le machine for building and testing. > This is to address ticket

Re: [FFmpeg-devel] [PATCH] avformat/movenc: remove call to av_copy_packet_side_data() when concatenatic eac3 syncframes

2020-04-15 Thread James Almer
On 4/14/2020 6:21 PM, Andreas Rheinhardt wrote: > James Almer: >> This generates a potential memory leak if info->pkt already contains side >> data >> elements, and may mix side data from the last packet with other properties >> from >> the first. > > Now that you mention it: Yes, there is a pot

Re: [FFmpeg-devel] [PATCH] avformat/rtp: Pass sources and block filter addresses via sdp file for rtp

2020-04-15 Thread Ross Nicholson
Ping to hopefully apply this patch! > On 12 Apr 2020, at 16:54, Ross Nicholson wrote: > >  > User testing has been completed successfully so this is ready to be applied. > > Thanks > >>> On 7 Apr 2020, at 23:50, Ross Nicholson wrote: >>> >>  >> Thank you for the explanation Marton. It's m

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cbs_jpeg_syntax_template: Check table index before use in dht()

2020-04-15 Thread Michael Niedermayer
On Mon, Apr 13, 2020 at 12:15:33AM +0200, Michael Niedermayer wrote: > Fixes: out of array access > Fixes: > 21515/clusterfuzz-testcase-minimized-ffmpeg_BSF_TRACE_HEADERS_fuzzer-5766121576988672 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ff

Re: [FFmpeg-devel] [PATCH v2] ffmpeg: allow full range of dts_delta_threshold

2020-04-15 Thread Michael Niedermayer
On Wed, Apr 15, 2020 at 05:29:06PM +0530, Gyan Doshi wrote: > > > On 15-04-2020 05:03 pm, Michael Niedermayer wrote: > >On Wed, Apr 15, 2020 at 10:55:47AM +0530, Gyan Doshi wrote: > >> > >>On 15-04-2020 01:33 am, Michael Niedermayer wrote: > >>>On Tue, Apr 14, 2020 at 02:48:47PM +0530, Gyan Doshi

Re: [FFmpeg-devel] [PATCH v8 1/2] avcodec: add support for Cunning Developments' ADPCM

2020-04-15 Thread Michael Niedermayer
On Tue, Apr 07, 2020 at 10:48:58AM +, Zane van Iperen wrote: > Signed-off-by: Zane van Iperen > --- > Changelog | 1 + > doc/general.texi| 1 + > libavcodec/Makefile | 1 + > libavcodec/adpcm.c | 33 + > libavcodec/adpcm_data.c

Re: [FFmpeg-devel] [PATCH v2] ffmpeg: allow full range of dts_delta_threshold

2020-04-15 Thread Gyan Doshi
On 15-04-2020 10:39 pm, Michael Niedermayer wrote: On Wed, Apr 15, 2020 at 05:29:06PM +0530, Gyan Doshi wrote: On 15-04-2020 05:03 pm, Michael Niedermayer wrote: On Wed, Apr 15, 2020 at 10:55:47AM +0530, Gyan Doshi wrote: On 15-04-2020 01:33 am, Michael Niedermayer wrote: On Tue, Apr 14, 2

Re: [FFmpeg-devel] [PATCH v4 1/2] libavcodec/libaomenc.c: Support gray input

2020-04-15 Thread James Zern
On Wed, Apr 15, 2020 at 8:14 AM James Almer wrote: > > On 4/14/2020 9:26 PM, James Zern wrote: > > On Tue, Apr 14, 2020 at 3:57 AM Ryo Hirafuji > > wrote: > >> > >> Thanks for the review! > >> > >> This should bump the micro version number in libavcodec/version.h. > >> > >> > >> OK, I will bump

[FFmpeg-devel] [PATCH 1/2] avformat/thp: Require a video stream

2020-04-15 Thread Michael Niedermayer
The demuxer code assumes the existence of a video stream Fixes: assertion failure Fixes: 21512/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5699660783288320 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niederm

[FFmpeg-devel] [PATCH 2/2] avcodec/aacdec_template: Pass AVCodecContext seperatly to set_default_channel_config()

2020-04-15 Thread Michael Niedermayer
Regression since 4d9b9c5e4637ac15205467f16fcac92a28e18f18 Fixes: Null pointer dereference Fixes: 21642/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AAC_LATM_fuzzer-5670101358739456 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off

Re: [FFmpeg-devel] [PATCH v4] avcodec: Add explicit capability flag for encoder flushing

2020-04-15 Thread Anton Khirnov
Quoting Philip Langdale (2020-04-14 04:48:19) > Previously, there was no way to flush an encoder such that after > draining, the encoder could be used again. We generally suggested > that clients teardown and replace the encoder instance in these > situations. However, for at least some hardware en

[FFmpeg-devel] [PATCH 2/2] avformat/matroskaenc: Make ebml_num_size() more robust

2020-04-15 Thread Andreas Rheinhardt
Matroska (or actually EBML) uses variable-length numbers where only seven bits of every byte is usable for the length; the other bits encode the length of the variable-length number. So in order to find out how many bytes one needs to encode a given number one can use a loop like while (num >> 7 *

[FFmpeg-devel] [PATCH 1/2] fftools/ffmpeg_opt: Check attachment filesize

2020-04-15 Thread Andreas Rheinhardt
The data of an attachment file is put into an AVCodecParameter's extradata. The corresponding size field has type int, yet there was no check for the size to fit into an int. As a consequence, it was possible to create extradata with negative size (by using a big enough max_alloc). Other errors we

[FFmpeg-devel] about ffmpeg 2.8.16

2020-04-15 Thread ????????
Because I added many custom features in ffmpeg 2.8 and upgrading ffmpeg to the latest version is a difficult task, but I really need the security patchs, so  questions are: 1. When to release 2.8.16  and it can be downloaded from ffmpeg.org? 2. When will maintenance on ffmpeg 2.8 be stopped? Tha

Re: [FFmpeg-devel] about ffmpeg 2.8.16

2020-04-15 Thread James Almer
On 4/15/2020 6:10 PM, 曾经的梦 wrote: > Because I added many custom features in ffmpeg 2.8 and upgrading ffmpeg to > the latest version is a difficult task, > but I really need the security patchs, so  questions are: > 1. When to release 2.8.16  and it can be downloaded from ffmpeg.org? I can't answe

Re: [FFmpeg-devel] [PATCH 4/4] avformat/mpegtsenc: use the correct stream_types and write HDMV descriptors for m2ts

2020-04-15 Thread John Stebbins
On Fri, 2020-04-10 at 21:44 +0200, Marton Balint wrote: > Fixes ticket #2622. > > Signed-off-by: Marton Balint > --- > libavformat/mpegtsenc.c | 58 > - > 1 file changed, 57 insertions(+), 1 deletion(-) > > diff --git a/libavformat/mpegtsenc.c b/l

Re: [FFmpeg-devel] [PATCH 4/4] avformat/mpegtsenc: use the correct stream_types and write HDMV descriptors for m2ts

2020-04-15 Thread Andreas Rheinhardt
John Stebbins: > On Fri, 2020-04-10 at 21:44 +0200, Marton Balint wrote: >> Fixes ticket #2622. >> >> Signed-off-by: Marton Balint >> --- >> libavformat/mpegtsenc.c | 58 >> - >> 1 file changed, 57 insertions(+), 1 deletion(-) >> >> diff --git a/lib

Re: [FFmpeg-devel] Extending ffmpeg hwaccel list

2020-04-15 Thread Andriy Gelman
On Wed, 15. Apr 02:58, Mark Clayton wrote: > Hello, > > I have an Nvidia Jetson Nano, which while having CUDA does not feature an > nvenc capable encoder. Instead, a high level API using L4T ( > https://docs.nvidia.com/jetson/l4t-multimedia/classNvVideoConverter.html) > is supported. > > It’s b

Re: [FFmpeg-devel] [PATCH v2 4/4] avformat/mpegtsenc: use the correct stream_types and write HDMV descriptors for m2ts

2020-04-15 Thread Carl Eugen Hoyos
Am Mo., 13. Apr. 2020 um 02:17 Uhr schrieb Marton Balint : > > > > On Mon, 13 Apr 2020, Carl Eugen Hoyos wrote: > > > Am Mo., 13. Apr. 2020 um 00:38 Uhr schrieb Marton Balint : > >> > >> Fixes ticket #2622. > >> > >> Signed-off-by: Marton Balint > >> --- > >> Changelog | 1 + > >>

Re: [FFmpeg-devel] [PATCH v3] lavfi: add new iteration API

2020-04-15 Thread Josh Allmann
On Tue, 14 Apr 2020 at 01:53, Josh de Kock wrote: > > Hi, > > On Mon, Apr 13, 2020, at 10:32 PM, Josh Allmann wrote: > > Hi, > > > > On Sat, 24 Mar 2018 at 14:40, Josh de Kock wrote: > > > > > > Signed-off-by: Josh de Kock > > > --- > > > configure| 29 +- > > > doc/APIchanges

Re: [FFmpeg-devel] [PATCH 4/4] avformat/mpegtsenc: use the correct stream_types and write HDMV descriptors for m2ts

2020-04-15 Thread John Stebbins
On Wed, 2020-04-15 at 23:44 +0200, Andreas Rheinhardt wrote: > John Stebbins: > > On Fri, 2020-04-10 at 21:44 +0200, Marton Balint wrote: > > > Fixes ticket #2622. > > > > > > Signed-off-by: Marton Balint > > > --- > > > libavformat/mpegtsenc.c | 58 > > >

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/ac3dec_fixed: Fix several invalid left shifts in scale_coefs()

2020-04-15 Thread Michael Niedermayer
On Sun, Feb 02, 2020 at 01:16:36AM +0100, Michael Niedermayer wrote: > Fixes: left shift of negative value -14336 > Fixes: > 20298/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AC3_FIXED_fuzzer-5675484201615360 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tre

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/audiodsp: Fix integer overflow in scalarproduct_int16_c()

2020-04-15 Thread Michael Niedermayer
On Sun, Feb 02, 2020 at 10:52:01PM +0100, Michael Niedermayer wrote: > Fixes: signed integer overflow: 2145417478 + 76702564 cannot be represented > in type 'int' > Fixes: > 20313/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RA_144_fuzzer-5734487724130304 > > Found-by: continuous fuzzing pr

Re: [FFmpeg-devel] about ffmpeg 2.8.16

2020-04-15 Thread Michael Niedermayer
On Wed, Apr 15, 2020 at 06:37:55PM -0300, James Almer wrote: > On 4/15/2020 6:10 PM, 曾经的梦 wrote: > > Because I added many custom features in ffmpeg 2.8 and upgrading ffmpeg to > > the latest version is a difficult task, > > but I really need the security patchs, so  questions are: > > 1. When to r

Re: [FFmpeg-devel] [PATCH 6/6] dnn-layer-mathbinary-test: add unit test for divide

2020-04-15 Thread Guo, Yejun
> -Original Message- > From: Guo, Yejun > Sent: Saturday, April 11, 2020 4:40 PM > To: ffmpeg-devel@ffmpeg.org > Cc: Guo, Yejun > Subject: [PATCH 6/6] dnn-layer-mathbinary-test: add unit test for divide > > Signed-off-by: Guo, Yejun this patch set ask for review, thanks. _

[FFmpeg-devel] [PATCH 2/2] avformat/matroska: Move mime_tag lists to matroskadec

2020-04-15 Thread Andreas Rheinhardt
They are not used any more by the muxer. Signed-off-by: Andreas Rheinhardt --- libavformat/matroska.c| 19 --- libavformat/matroska.h| 2 -- libavformat/matroskadec.c | 35 +++ 3 files changed, 27 insertions(+), 29 deletions(-) diff --git

[FFmpeg-devel] [PATCH 1/2] avformat/matroskaenc: Improve mimetype search

2020-04-15 Thread Andreas Rheinhardt
Use the mime_types of the corresponding AVCodecDescriptor instead of tables specific to Matroska. The former are generally more encompassing: They contain every item of the current lists except "text/plain" for AV_CODEC_ID_TEXT and "binary" for AV_CODEC_ID_BIN_DATA. The former has been preserved b

[FFmpeg-devel] ?????? about ffmpeg 2.8.16

2020-04-15 Thread ????????
    Thanks for your reply, james,  but I see that  ffmpeg 2.8 are also being used by  SUSE Linux Enterprise Server 12 and Read Ha EL 7 ,and its EOL date is 2024. --  -- ??: "James Almer"https://trac.ffmpeg.org/wiki/Downstreams, I'd say that

Re: [FFmpeg-devel] [PATCH v8 1/2] avcodec: add support for Cunning Developments' ADPCM

2020-04-15 Thread Zane van Iperen
On Wed, 15 Apr 2020 19:31:44 +0200 "Michael Niedermayer" wrote: > On Tue, Apr 07, 2020 at 10:48:58AM +, Zane van Iperen wrote: > > Signed-off-by: Zane van Iperen > > --- > > Changelog | 1 + > > doc/general.texi| 1 + > > libavcodec/Makefile | 1 + > > libavcode

[FFmpeg-devel] [PATCH 1/4] doc/muxers: fix some dashenc option names

2020-04-15 Thread James Almer
Signed-off-by: James Almer --- doc/muxers.texi | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index e5b8debcb3..856ed74e56 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -339,20 +339,20 @@ Enable Low-latency Dash by constrainin

[FFmpeg-devel] [PATCH 4/4] avformat/dashenc: add missing startWithSap attribute to AdaptationSet elements

2020-04-15 Thread James Almer
Signed-off-by: James Almer --- libavformat/dashenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 86329b7f9a..b08253618d 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -806,7 +806,7 @@ static int write_a

[FFmpeg-devel] [PATCH 2/4] avformat/dashenc: add a maxSegmentDuration attribute to the Manifest

2020-04-15 Thread James Almer
Signed-off-by: James Almer --- libavformat/dashenc.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 5a8cff4034..ef1bedd18d 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -190,6 +190,7 @@ typedef struct DASHContext {

[FFmpeg-devel] [PATCH 3/4] avformat/dashenc: add a PlaybackRate element

2020-04-15 Thread James Almer
Signed-off-by: James Almer --- doc/muxers.texi | 8 libavformat/dashenc.c | 18 -- libavformat/version.h | 2 +- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index 856ed74e56..d341827a86 100644 --- a/doc/muxers.

[FFmpeg-devel] [PATCH v3] ffmpeg: allow full range of dts_delta_threshold

2020-04-15 Thread Gyan Doshi
For inputs from demuxers with AVFMT_TS_DISCONT flag, the existing condition, delta < -1LL*dts_delta_threshold*AV_TIME_BASE is rendered superflous due to the fixed threshold in pkt_dts + AV_TIME_BASE/10 < FFMAX(ist->pts, ist->dts) This prevents users from setting a high threshold to avoid disc

Re: [FFmpeg-devel] [PATCH v3 0/7] Support Dolby Vision

2020-04-15 Thread myp...@gmail.com
On Mon, Apr 13, 2020 at 7:58 PM Jun Zhao wrote: > > From: Jun Zhao > > V3: > - rename the file name for Dolby Vision trademark risk(tks Jean-Baptiste > Kempf) > - fix other typo issue > > V2: > - used sidedata for Dolby Vision information (tks Jan Ekström's suggestion) > - enabled dumping Dolby