On Sun, Jun 28, 2020 at 12:03 AM Andriy Gelman wrote:
>
> lgtm. I saw a small improvement when testing.
>
> Would be nice to allow weak edges that become strong to trigger neighboring
> weak
> edges in the future.
Thanks for the comment.
You are right, ideally double_threshold should be recursi
On Sun, 28 Jun 2020 at 15:27, Carl Eugen Hoyos wrote:
> Am So., 28. Juni 2020 um 16:24 Uhr schrieb Gautam Ramakrishnan
> :
>
> > Oh got it, just need to ignore the text then.
>
> You *can*
>
> Carl Eugen
>
Why are you confusing Gautam like this?
If I were new to FFmpeg and working on this I woul
Andreas Rheinhardt:
> Signed-off-by: Andreas Rheinhardt
> ---
> libavcodec/smacker.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/libavcodec/smacker.c b/libavcodec/smacker.c
> index b4c463b4b9..9f054f071d 100644
> --- a/libavcodec/smacker.c
> +++ b/libavcodec/smacke
On Sun, Jun 28, 2020 at 20:55:08 +0800, lance.lmw...@gmail.com wrote:
> From: Limin Wang
> Subject: avcodec/internal: fix the outdating comments for
> ff_add_cpb_side_data()
"outdated"
> - * Add a CPB properties side data to an encoding context.
> + * Add a CPB properties side data to an codec
On Thu, Jun 18, 2020 at 19:22:55 +0530, Yatendra Singh wrote:
> +if(!strcmp(ctx->filter->name, GREY_EDGE))
> +{
Code style.
=> if (! .) {
Moritz
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmp
James Almer:
> From: Daryl Seah
>
> Signed-off-by: Daryl Seah
> Signed-off-by: Jing SUN
> Signed-off-by: ZhiZhen Tang
> Signed-off-by: Zhong Li
> Signed-off-by: Xu Guangxin
> Signed-off-by: James Almer
> ---
> configure | 4 +
> doc/encoders.texi | 36 +++
> doc/gene
On Thu, Jun 18, 2020 at 19:22:56 +0530, Yatendra Singh wrote:
> +for(int h = slice_start; h < slice_end; h++)
> +{
Space between "for" and "(", and the opening bracket '{' goes on the
same line.
> +for(int w = 0; w < width; w++)
> +{
Same here, and elsewhere (also for "if
lance.lmw...@gmail.com:
> On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote:
>> lance.lmw...@gmail.com:
>>> From: Limin Wang
>>>
>>> Signed-off-by: Limin Wang
>>> ---
>>> doc/APIchanges| 3 +++
>>> libavcodec/avpacket.c | 1 +
>>> libavcodec/decode.c | 1 +
>>> liba
Gautam Ramakrishnan (12020-06-27):
> I used 9 digits because I was using a fixed size string to store the number
> and then used strol. Now as I removed the usage of strol, it wasnt necessary.
> Do you thing using a loop of fixed iterations is a good idea? Is it better if
> I use the for loop agai
From: Jun Zhao
Signed-off-by: Jun Zhao
---
libavcodec/aac_ac3_parser.c | 31 +++
1 file changed, 15 insertions(+), 16 deletions(-)
diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c
index b26790d..23c60f6 100644
--- a/libavcodec/aac_ac3_parser.c
On Thu, Jun 25, 2020 at 21:15:06 +0530, Ashutosh Pradhan wrote:
> Generate algorithmic riff music. Changed to activate api.
This commit doesn't change to activate API, as it introduces this
filter. So that sentence doesn't belong here.
> - Real War KVAG muxer
> -
> +- atone filter
Don't remove
From: Jun Zhao
fix the command fmpeg -h filter=setpts/asetpts both dump the expr
option with "FVA" flags.
Signed-off-by: Jun Zhao
---
libavfilter/setpts.c | 11 ---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/libavfilter/setpts.c b/libavfilter/setpts.c
index c7c3836..
From: Jun Zhao
Fix the potential overflow.
Suggested-by: Alexander Strasser
Signed-off-by: Jun Zhao
---
libavcodec/aac_ac3_parser.c | 9 +
libavcodec/aac_ac3_parser.h | 4 ++--
tests/ref/fate/adtstoasc_ticket3715 | 2 +-
3 files changed, 8 insertions(+), 7 deletions(-)
On Mon, Jun 29, 2020 at 02:06:49PM +0200, Andreas Rheinhardt wrote:
> lance.lmw...@gmail.com:
> > On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote:
> >> lance.lmw...@gmail.com:
> >>> From: Limin Wang
> >>>
> >>> Signed-off-by: Limin Wang
> >>> ---
> >>> doc/APIchanges|
On Mon, Jun 29, 2020 at 01:36:00PM +0200, Moritz Barsnick wrote:
> On Sun, Jun 28, 2020 at 20:55:08 +0800, lance.lmw...@gmail.com wrote:
> > From: Limin Wang
> > Subject: avcodec/internal: fix the outdating comments for
> > ff_add_cpb_side_data()
>
> "outdated"
>
> > - * Add a CPB properties si
lance.lmw...@gmail.com:
> On Mon, Jun 29, 2020 at 02:06:49PM +0200, Andreas Rheinhardt wrote:
>> lance.lmw...@gmail.com:
>>> On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote:
lance.lmw...@gmail.com:
> From: Limin Wang
>
> Signed-off-by: Limin Wang
> ---
From: Limin Wang
It's used for decode and encode in fact, so it's more proper to change
the encoding to codec in the comments.
Signed-off-by: Limin Wang
---
libavcodec/internal.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
i
On Mon, Jun 29, 2020 at 03:52:00PM +0200, Andreas Rheinhardt wrote:
> lance.lmw...@gmail.com:
> > On Mon, Jun 29, 2020 at 02:06:49PM +0200, Andreas Rheinhardt wrote:
> >> lance.lmw...@gmail.com:
> >>> On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote:
> lance.lmw...@gmail.com:
Hello,
The next step in the community voting process is to re-elect the Community and
Technical Committees.
Therefore, we need candidates.
Reminders:
The community committee is here to help smooth things down between people in
the community and the conflicts that can arise here. The main task
On Mon, Jun 29, 2020 at 6:28 PM Nicolas George wrote:
>
> Gautam Ramakrishnan (12020-06-27):
> > I used 9 digits because I was using a fixed size string to store the number
> > and then used strol. Now as I removed the usage of strol, it wasnt
> > necessary.
> > Do you thing using a loop of fixed
On Mon, Jun 29, 2020 at 2:14 AM Michael Niedermayer
wrote:
>
> On Sun, Jun 28, 2020 at 08:13:28PM +0530, gautamr...@gmail.com wrote:
> > From: Gautam Ramakrishnan
> >
> > This patch adds a pgx decoder.
> > ---
> > Changelog | 1 +
> > doc/general.texi| 2 +
> > libavcod
From: Limin Wang
Signed-off-by: Limin Wang
---
doc/APIchanges| 3 +++
libavcodec/avpacket.c | 1 +
libavcodec/decode.c | 1 +
libavcodec/packet.h | 6 ++
libavcodec/version.h | 2 +-
libavformat/dump.c| 21 +
6 files changed, 33 insertions(+), 1 del
On Mon, Jun 29, 2020 at 03:52:00PM +0200, Andreas Rheinhardt wrote:
> lance.lmw...@gmail.com:
> > On Mon, Jun 29, 2020 at 02:06:49PM +0200, Andreas Rheinhardt wrote:
> >> lance.lmw...@gmail.com:
> >>> On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote:
> lance.lmw...@gmail.com:
Signed-off-by: Ting Fu
---
libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4
libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 +
tools/python/convert_from_tensorflow.py | 2 +-
tools/python/convert_header.py | 2 +-
4 files changed, 7 insert
Signed-off-by: Ting Fu
---
tests/dnn/dnn-layer-mathunary-test.c | 4
1 file changed, 4 insertions(+)
diff --git a/tests/dnn/dnn-layer-mathunary-test.c
b/tests/dnn/dnn-layer-mathunary-test.c
index bf77c44bbe..a1ff05e5fb 100644
--- a/tests/dnn/dnn-layer-mathunary-test.c
+++ b/tests/dnn/dnn-l
Signed-off-by: Ting Fu
---
V2:
Add more test number
Fix incorrect atanh unit test
libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4
libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 +
tools/python/convert_from_tensorflow.py | 2 +-
tools/python/convert_h
Signed-off-by: Ting Fu
---
tests/dnn/dnn-layer-mathunary-test.c | 4
1 file changed, 4 insertions(+)
diff --git a/tests/dnn/dnn-layer-mathunary-test.c
b/tests/dnn/dnn-layer-mathunary-test.c
index a1ff05e5fb..0280debc0b 100644
--- a/tests/dnn/dnn-layer-mathunary-test.c
+++ b/tests/dnn/dnn-l
Signed-off-by: Ting Fu
---
libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4
libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 +
tools/python/convert_from_tensorflow.py | 2 +-
tools/python/convert_header.py | 2 +-
4 files changed, 7 insert
Signed-off-by: Ting Fu
---
tests/dnn/dnn-layer-mathunary-test.c | 4
1 file changed, 4 insertions(+)
diff --git a/tests/dnn/dnn-layer-mathunary-test.c
b/tests/dnn/dnn-layer-mathunary-test.c
index 90fce71a0c..5587e47ad5 100644
--- a/tests/dnn/dnn-layer-mathunary-test.c
+++ b/tests/dnn/dnn-l
Signed-off-by: Ting Fu
---
libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4
libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 +
tools/python/convert_from_tensorflow.py | 2 +-
tools/python/convert_header.py | 2 +-
4 files changed, 7 insert
Signed-off-by: Ting Fu
---
tests/dnn/dnn-layer-mathunary-test.c | 4
1 file changed, 4 insertions(+)
diff --git a/tests/dnn/dnn-layer-mathunary-test.c
b/tests/dnn/dnn-layer-mathunary-test.c
index 0280debc0b..6885b4d318 100644
--- a/tests/dnn/dnn-layer-mathunary-test.c
+++ b/tests/dnn/dnn-l
It can be tested with the model generated with below python script:
import tensorflow as tf
import numpy as np
import imageio
in_img = imageio.imread('input.jpeg')
in_img = in_img.astype(np.float32)/255.0
in_data = in_img[np.newaxis, :]
x = tf.placeholder(tf.float32, shape=[1, None, None, 3], na
Signed-off-by: Ting Fu
---
libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4
libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 +
tools/python/convert_from_tensorflow.py | 2 +-
tools/python/convert_header.py | 2 +-
4 files changed, 7 insert
Signed-off-by: Ting Fu
---
tests/dnn/dnn-layer-mathunary-test.c | 4
1 file changed, 4 insertions(+)
diff --git a/tests/dnn/dnn-layer-mathunary-test.c
b/tests/dnn/dnn-layer-mathunary-test.c
index 6885b4d318..90fce71a0c 100644
--- a/tests/dnn/dnn-layer-mathunary-test.c
+++ b/tests/dnn/dnn-l
Signed-off-by: Ting Fu
---
tests/dnn/dnn-layer-mathunary-test.c | 10 +++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/tests/dnn/dnn-layer-mathunary-test.c
b/tests/dnn/dnn-layer-mathunary-test.c
index 5587e47ad5..683e623d95 100644
--- a/tests/dnn/dnn-layer-mathunary-test.
From: Limin Wang
Signed-off-by: Limin Wang
---
libavcodec/nvenc_hevc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c
index 45dda3d..6153f9a 100644
--- a/libavcodec/nvenc_hevc.c
+++ b/libavcodec/nvenc_hevc.c
@@ -132,6 +132,8 @@ static con
From: Limin Wang
Signed-off-by: Limin Wang
---
libavformat/dump.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/libavformat/dump.c b/libavformat/dump.c
index 117c681..a1bf083 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -211,7 +211,7 @@ static v
On Mon, Jun 29, 2020 at 23:21:03 +0800, lance.lmw...@gmail.com wrote:
> diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c
> index 45dda3d..6153f9a 100644
> --- a/libavcodec/nvenc_hevc.c
> +++ b/libavcodec/nvenc_hevc.c
> @@ -132,6 +132,8 @@ static const AVOption options[] = {
> { "
How do I proceed?
___
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".
lance.lmw...@gmail.com:
> From: Limin Wang
>
> Signed-off-by: Limin Wang
> ---
> doc/APIchanges| 3 +++
> libavcodec/avpacket.c | 1 +
> libavcodec/decode.c | 1 +
> libavcodec/packet.h | 6 ++
> libavcodec/version.h | 2 +-
> libavformat/dump.c| 21 +++
On Mon, Jun 29, 2020 at 05:26:24PM +0200, Moritz Barsnick wrote:
> On Mon, Jun 29, 2020 at 23:21:03 +0800, lance.lmw...@gmail.com wrote:
> > diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c
> > index 45dda3d..6153f9a 100644
> > --- a/libavcodec/nvenc_hevc.c
> > +++ b/libavcodec/nvenc_
On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote:
> lance.lmw...@gmail.com:
> > From: Limin Wang
> >
> > Signed-off-by: Limin Wang
> > ---
> > doc/APIchanges| 3 +++
> > libavcodec/avpacket.c | 1 +
> > libavcodec/decode.c | 1 +
> > libavcodec/packet.h | 6 +++
From: Limin Wang
Signed-off-by: Limin Wang
---
libavcodec/nvenc_hevc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c
index 45dda3d..6153f9a 100644
--- a/libavcodec/nvenc_hevc.c
+++ b/libavcodec/nvenc_hevc.c
@@ -132,6 +132,8 @@ static con
Andreas Rheinhardt [2020-06-28 15:32:05+0200]:
> Moreover, I have a patchset for the Smacker demuxer [1] and you seem to
> know a lot about Smacker, so you might take a look.
Thanks for the feedback! I don’t really know much about Smacker beyond
what I discovered while trying to get rewinding to
On Mon, Jun 29, 2020 at 12:26 AM Michael Niedermayer
wrote:
>
> On Sat, Jun 27, 2020 at 09:14:26PM +0530, Gautam Ramakrishnan wrote:
> > On Sat, Jun 27, 2020 at 7:36 PM Michael Niedermayer
> > wrote:
> > >
> > > On Sat, Jun 27, 2020 at 04:49:49PM +0530, Gautam Ramakrishnan wrote:
> > > > On Sat,
lance.lmw...@gmail.com:
> On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote:
>> lance.lmw...@gmail.com:
>>> From: Limin Wang
>>>
>>> Signed-off-by: Limin Wang
>>> ---
>>> doc/APIchanges| 3 +++
>>> libavcodec/avpacket.c | 1 +
>>> libavcodec/decode.c | 1 +
>>> liba
Jun 28, 2020, 22:40 by hanish...@gmail.com:
> Hi Mark,
>
> hwdownload vs separate filter
>
> True, for kmsgrab use-case one could potentially do this transform as part
> of the drm_transfer_data logic (which currently mmaps and does a linear
> copy, if even I remember correctly). But like wh
since libvmaf v1.5.1, libvmaf has been relicensed as BSD+Patent
Signed-off-by: Kyle Swanson
---
configure | 1 -
1 file changed, 1 deletion(-)
diff --git a/configure b/configure
index 7495f35faa..e0b76ac1ea 100755
--- a/configure
+++ b/configure
@@ -1741,7 +1741,6 @@ EXTERNAL_LIBRARY_VERSION3_L
Signed-off-by: Andreas Rheinhardt
---
libavcodec/dvdsub_parser.c | 6 --
1 file changed, 6 deletions(-)
diff --git a/libavcodec/dvdsub_parser.c b/libavcodec/dvdsub_parser.c
index 698ccb6987..054af69db9 100644
--- a/libavcodec/dvdsub_parser.c
+++ b/libavcodec/dvdsub_parser.c
@@ -32,11 +32,6 @
Signed-off-by: Andreas Rheinhardt
---
libavcodec/dvbsub_parser.c | 18 +-
1 file changed, 1 insertion(+), 17 deletions(-)
diff --git a/libavcodec/dvbsub_parser.c b/libavcodec/dvbsub_parser.c
index 8ced3c4c34..b7a3d6154c 100644
--- a/libavcodec/dvbsub_parser.c
+++ b/libavcodec/dvb
Signed-off-by: Andreas Rheinhardt
---
I am not sure know whether cca982ee018aad54214e94f2a0a5921c8bbf1328 is
correct or whether it should be reverted.
tests/ref/fate/filter-colorbalance | 6 +++---
tests/ref/fate/filter-colorbalance-gbrap| 6 +++---
tests/ref/fate/filter-colorbalanc
Hi Lynne,
Thanks for your thoughts. My thoughts I have embedded below
On Mon, Jun 29, 2020 at 6:32 PM Lynne wrote:
> Jun 28, 2020, 22:40 by hanish...@gmail.com:
>
> > Hi Mark,
> >
> > hwdownload vs separate filter
> >
> > True, for kmsgrab use-case one could potentially do this transform a
Hi,
On Mon, Jun 29, 2020 at 10:05 AM Kyle Swanson wrote:
>
> since libvmaf v1.5.1, libvmaf has been relicensed as BSD+Patent
>
> Signed-off-by: Kyle Swanson
> ---
> configure | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/configure b/configure
> index 7495f35faa..e0b76ac1ea 100755
> --
From: Gautam Ramakrishnan
This patch removes a check which throws an error if
the log2 precinct width/height is 0. The standard allows
the first component to have 0 as the log2 width/height.
However, to ensure proper intialization of coding style,
an extra check has been added.
---
libavcodec/jp
v03-20200629IST2208 fbdetile
Added a generic detiling logic, which can be easily configured to
detile many different tiling schemes.
The same is inturn used to detile Intel Tile-Yf layout.
NOTE: This is a full patch, it contains the previous versions also
in it.
v02-20200627IST2331
Unrolled In
On Thu, Jun 25, 2020 at 6:02 PM Wang Cao wrote:
>
> This patch adds the control for enabling rectangular partitions, 1:4/4:1
> partitions and AB shape partitions.
>
> Signed-off-by: Wang Cao
> ---
> doc/encoders.texi | 10 ++
> libavcodec/libaomenc.c | 15 +++
> libavcod
On Thu, Jun 25, 2020 at 5:55 PM Wang Cao wrote:
>
> Signed-off-by: Wang Cao
> ---
> doc/encoders.texi | 21 +++
> libavcodec/libaomenc.c | 47 --
> libavcodec/version.h | 2 +-
> 3 files changed, 63 insertions(+), 7 deletions(-)
>
On Mon, Jun 29, 2020 at 11:05 AM James Zern wrote:
>
> On Thu, Jun 25, 2020 at 5:55 PM Wang Cao wrote:
> >
> > From: Wang Cao
> >
> > Signed-off-by: Wang Cao
> > ---
> > doc/encoders.texi | 39 +++
> > libavcodec/libaomenc.c | 38 +++
On Sun, 28 Jun 2020, lance.lmw...@gmail.com wrote:
From: Limin Wang
The issue is introduced from a705bcd763e344fa, please tested with below command
line:
make V=1 fate-sub-cc-scte20 TARGET_EXEC="valgrind --error-exitcode=1"
Reported-by: Martin Storsjö
Signed-off-by: Limin Wang
---
libavc
On Thu, Jun 25, 2020 at 5:56 PM Wang Cao wrote:
>
> Signed-off-by: Wang Cao
> ---
> doc/encoders.texi | 21 +
> libavcodec/libaomenc.c | 31 +++
> libavcodec/version.h | 2 +-
> 3 files changed, 53 insertions(+), 1 deletion(-)
>
> [...]
> +
On Thu, Jun 25, 2020 at 5:56 PM Wang Cao wrote:
>
> Signed-off-by: Wang Cao
> ---
> doc/encoders.texi | 36 +
> libavcodec/libaomenc.c | 61 ++
> libavcodec/version.h | 2 +-
> 3 files changed, 98 insertions(+), 1 deletion(-
On Thu, Jun 25, 2020 at 5:55 PM Wang Cao wrote:
>
> From: Wang Cao
>
> Signed-off-by: Wang Cao
> ---
> doc/encoders.texi | 39 +++
> libavcodec/libaomenc.c | 38 ++
> libavcodec/version.h | 2 +-
> 3 files changed,
From: Gautam Ramakrishnan
This patch adds support to demux pgx file
format.
---
libavformat/allformats.c | 1 +
libavformat/img2dec.c| 9 +
libavformat/version.h| 2 +-
3 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/libavformat/allformats.c b/libavformat/allformat
gautamr...@gmail.com (12020-06-30):
> From: Gautam Ramakrishnan
>
> This patch adds support to demux pgx file
> format.
> ---
> libavformat/allformats.c | 1 +
> libavformat/img2dec.c| 9 +
> libavformat/version.h| 2 +-
> 3 files changed, 11 insertions(+), 1 deletion(-)
>
> dif
On Tue, Jun 30, 2020 at 12:28 AM Nicolas George wrote:
>
> gautamr...@gmail.com (12020-06-30):
> > From: Gautam Ramakrishnan
> >
> > This patch adds support to demux pgx file
> > format.
> > ---
> > libavformat/allformats.c | 1 +
> > libavformat/img2dec.c| 9 +
> > libavformat/versi
The segments / url can be modified by the io read when reloading
This may be an alternative or additional fix for Ticket8673
as a further alternative the reload stuff could be disabled during
probing
Signed-off-by: Michael Niedermayer
---
libavformat/hls.c | 6 --
1 file changed, 4 insertio
Michael Niedermayer:
> The segments / url can be modified by the io read when reloading
>
> This may be an alternative or additional fix for Ticket8673
> as a further alternative the reload stuff could be disabled during
> probing
>
> Signed-off-by: Michael Niedermayer
> ---
> libavformat/hls.c
On 29/06/2020 18:04, Kyle Swanson wrote:
> since libvmaf v1.5.1, libvmaf has been relicensed as BSD+Patent
>
> Signed-off-by: Kyle Swanson
> ---
> configure | 1 -
> 1 file changed, 1 deletion(-)
You'll need to update the pkg-config check too if you want to
to this, since it's at >= 1.3.9 right
From: Gautam Ramakrishnan
This patch adds support to demux pgx file
format.
---
libavformat/allformats.c | 1 +
libavformat/img2dec.c| 9 +
libavformat/version.h| 2 +-
3 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/libavformat/allformats.c b/libavformat/allformat
On Mon, Jun 29, 2020 at 09:08:07PM +0200, Andreas Rheinhardt wrote:
> Michael Niedermayer:
> > The segments / url can be modified by the io read when reloading
> >
> > This may be an alternative or additional fix for Ticket8673
> > as a further alternative the reload stuff could be disabled during
From: Gautam Ramakrishnan
This patch adds a pgx decoder.
---
Changelog | 1 +
doc/general.texi| 2 +
libavcodec/Makefile | 1 +
libavcodec/allcodecs.c | 1 +
libavcodec/codec_desc.c | 7 ++
libavcodec/codec_id.h | 1 +
libavcodec/pgxdec.c | 199 ++
Andreas Rheinhardt:
> Signed-off-by: Andreas Rheinhardt
> ---
> I am not sure know whether cca982ee018aad54214e94f2a0a5921c8bbf1328 is
> correct or whether it should be reverted.
>
> tests/ref/fate/filter-colorbalance | 6 +++---
> tests/ref/fate/filter-colorbalance-gbrap| 6 +++---
Dave Rice:
> Hi Andreas,
>
>> On Jun 27, 2020, at 5:09 PM, Andreas Rheinhardt
>> wrote:
>>
>> Zhao Zhili:
>>> Remove the check on dv_demux since dv_fctx will leak if allocate
>>> dv_demux failed.
>>> ---
>>> libavformat/mov.c | 7 +++
>>> 1 file changed, 3 insertions(+), 4 deletions(-)
>>>
>>
Zhao Zhili:
> Remove the check on dv_demux since dv_fctx will leak if allocate
> dv_demux failed.
> ---
> libavformat/mov.c | 7 +++
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/libavformat/mov.c b/libavformat/mov.c
> index adc52de947..f179b6efdd 100644
> --- a/libavform
On Mon, Jun 29, 2020 at 12:14 PM Derek Buitenhuis
wrote:
> You'll need to update the pkg-config check too if you want to
> to this, since it's at >= 1.3.9 right now.
>
> - Derek
Thanks. Updated patch attached.
0001-configure-remove-libvmaf-from-EXTERNAL_LIBRARY_VERSI.patch
Description: Binary d
Am Mo., 29. Juni 2020 um 23:21 Uhr schrieb Kyle Swanson :
>
> On Mon, Jun 29, 2020 at 12:14 PM Derek Buitenhuis
> wrote:
> > You'll need to update the pkg-config check too if you want to
> > to this, since it's at >= 1.3.9 right now.
> >
> > - Derek
>
> Thanks. Updated patch attached.
No objectio
The code for demuxing DV audio predates the introduction of refcounted
packets and when the latter was added, changes to the former were
forgotten. This meant that when avpriv_dv_produce_packet initialized the
packet containing the AVBufferRef, the AVBufferRef as well as the
underlying AVBuffer lea
On Mon, Jun 29, 2020 at 06:18:23PM +0200, Andreas Rheinhardt wrote:
> lance.lmw...@gmail.com:
> > On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote:
> >> lance.lmw...@gmail.com:
> >>> From: Limin Wang
> >>>
> >>> Signed-off-by: Limin Wang
> >>> ---
> >>> doc/APIchanges|
On Mon, Jun 29, 2020 at 09:19:56PM +0300, Martin Storsjö wrote:
> On Sun, 28 Jun 2020, lance.lmw...@gmail.com wrote:
>
> > From: Limin Wang
> >
> > The issue is introduced from a705bcd763e344fa, please tested with below
> > command line:
> > make V=1 fate-sub-cc-scte20 TARGET_EXEC="valgrind --e
lance.lmw...@gmail.com:
> On Mon, Jun 29, 2020 at 06:18:23PM +0200, Andreas Rheinhardt wrote:
>> lance.lmw...@gmail.com:
>>> On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote:
lance.lmw...@gmail.com:
> From: Limin Wang
>
> Signed-off-by: Limin Wang
> ---
On Tue, Jun 30, 2020 at 12:26:17AM +0530, gautamr...@gmail.com wrote:
> From: Gautam Ramakrishnan
>
> This patch adds a pgx decoder.
> ---
> Changelog | 1 +
> doc/general.texi| 2 +
> libavcodec/Makefile | 1 +
> libavcodec/allcodecs.c | 1 +
> libavcodec/code
This can fill VAProcPipelineParameterBuffer correctly and make the
pipeline works.
Signed-off-by: Fei Wang
---
libavfilter/vf_tonemap_vaapi.c | 5 +
1 file changed, 5 insertions(+)
diff --git a/libavfilter/vf_tonemap_vaapi.c b/libavfilter/vf_tonemap_vaapi.c
index 2f41b90424..9f52590a49 1006
On Tue, Jun 30, 2020 at 01:54:06AM +0200, Andreas Rheinhardt wrote:
> lance.lmw...@gmail.com:
> > On Mon, Jun 29, 2020 at 06:18:23PM +0200, Andreas Rheinhardt wrote:
> >> lance.lmw...@gmail.com:
> >>> On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote:
> lance.lmw...@gmail.com:
From: Wang Cao
Signed-off-by: Wang Cao
---
Check libaom ABI version to use SUPERRES enum in aom_encoder.h
doc/encoders.texi | 36 +
libavcodec/libaomenc.c | 46 ++
libavcodec/version.h | 2 +-
3 files changed, 83 in
On Tue, Jun 30, 2020 at 5:49 AM Michael Niedermayer
wrote:
>
> On Tue, Jun 30, 2020 at 12:26:17AM +0530, gautamr...@gmail.com wrote:
> > From: Gautam Ramakrishnan
> >
> > This patch adds a pgx decoder.
> > ---
> > Changelog | 1 +
> > doc/general.texi| 2 +
> > libavcod
From: Siyuan Huang
disable write tmp file to let it using chunk downloading at last segment
Signed-off-by: Siyuan Huang
---
libavformat/dashenc.c | 2 ++
1 file changed, 2 insertions(+)
mode change 100644 => 100755 libavformat/dashenc.c
diff --git a/libavformat/dashenc.c b/libavfor
From: Siyuan Huang
according iso 23009-1 , in live cases , mpd refresh
period should be changeable
Signed-off-by: Siyuan Huang
---
doc/muxers.texi | 4
libavformat/dashenc.c | 4
2 files changed, 8 insertions(+)
mode change 100644 => 100755 doc/muxers.texi
diff --g
From: Xinpeng Sun
Overlay one video on the top of another.
It takes two inputs and has one output. The first input is the "main" video on
which the second input is overlaid. This filter requires same memory layout for
all the inputs.
An example command to use this filter to overlay an image LOG
Add patch file,
From: Siyuan Huang
Sent: 2020年6月30日 11:12
To: 'ffmpeg-devel@ffmpeg.org'
Subject: [PATCH] libavformat/dashenc.c:kill latency when ldash on
From: Siyuan Huang mailto:saber.hu...@samsung.com>
>
disable write tmp file to let it using chunk downloading at last segment
Add patch file
From: Siyuan Huang
Sent: 2020年6月30日 11:34
To: 'ffmpeg-devel@ffmpeg.org'
Subject: [PATCH] libavformat/dashenc.c:support mpd update period
From: Siyuan Huang mailto:saber.hu...@samsung.com>
>
according iso 23009-1 , in live cases , mpd refresh
period should be changeab
From: Limin Wang
AV_FRAME_DATA_S12M_TIMECODE is public API, so user need to know its format
by the API header instead of reading the code.
Signed-off-by: Limin Wang
---
libavutil/frame.h| 4 ++--
libavutil/timecode.h | 16 +++-
2 files changed, 17 insertions(+), 3 deletions(-)
From: Limin Wang
Signed-off-by: Limin Wang
---
doc/APIchanges| 3 +++
libavcodec/avpacket.c | 1 +
libavcodec/decode.c | 1 +
libavcodec/packet.h | 8
libavcodec/version.h | 2 +-
libavformat/dump.c| 21 +
6 files changed, 35 insertions(+), 1 d
On Tue, Jun 30, 2020 at 11:12 AM Siyuan Huang wrote:
>
> From: Siyuan Huang
>
>
>
> disable write tmp file to let it using chunk downloading at last segment
>
>
>
> Signed-off-by: Siyuan Huang
>
> ---
>
> libavformat/dashenc.c | 2 ++
>
> 1 file changed, 2 insertions(+)
>
> mode change 100644 =>
Update with no file mode changes :
From 6d08df73f9cb8cc8d8dfa3b974232f0c0a2b11f8 Mon Sep 17 00:00:00 2001
From: Siyuan Huang
Date: Tue, 30 Jun 2020 13:34:47 +0800
Subject: [PATCH] libavformat/dashenc.c:support mpd update period
according iso 23009-1 , in live cases , mpd refresh
period should
Update with no file mode changes :
From 818095d4f0aa50dfee3cb0622146a2180801c5fe Mon Sep 17 00:00:00 2001
From: Siyuan Huang
Date: Tue, 30 Jun 2020 13:41:46 +0800
Subject: [PATCH] libavformat/dashenc.c:support mpd update period v3
according iso 23009-1 , in live cases , mpd refresh
per
Soory for wrong commit messge
Update to no file mode modify at version2
From efd83d91a9bd9a485bcda6799f5f681c203a7449 Mon Sep 17 00:00:00 2001
From: Siyuan Huang
Date: Tue, 30 Jun 2020 13:44:01 +0800
Subject: [PATCH] libavformat/dashenc.c:kill latency when ldash on v2
disable write tmp file t
> From: Zhong Li
> Sent: Sunday, April 19, 2020 23:00
> To: Fu, Linjie
> Cc: FFmpeg development discussions and patches de...@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [PATCH] lavfi/vf_vpp_qsv: fix the infinite loop
> while framerate lower than input
>
> Fu, Linjie 于2020年2月29日周六 下午5:35写道:
> >
> From: Zhong Li
> Sent: Thursday, March 12, 2020 10:07
> To: FFmpeg development discussions and patches de...@ffmpeg.org>
> Cc: Rogozhkin, Dmitry V ; Fu, Linjie
>
> Subject: Re: [FFmpeg-devel] [PATCH] lavc/qsvenc_hevc: add qmax/qmin
> support for HEVC encoding
>
> Linjie Fu 于2020年3月11日周三 下午6:
98 matches
Mail list logo