[FFmpeg-devel] [PATCH v2 1/1] avdevice/gdigrab: Add use_captureblt option for diable CAPTUREBLT, when useing the bitblt function with CAPTUREBLT it caused the mouse cursor flicker. most time we dont n

2019-12-17 Thread fgodtdev
From: FgoDt Signed-off-by: fgodt --- doc/indevs.texi | 6 ++ libavdevice/gdigrab.c | 10 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/doc/indevs.texi b/doc/indevs.texi index 92bc65be41..43b0bd0465 100644 --- a/doc/indevs.texi +++ b/doc/indevs.texi @@ -748

Re: [FFmpeg-devel] [PATCHv3] fate: Add an option for disabling the 2k/4k tests

2019-12-17 Thread Martin Storsjö
On Mon, 16 Dec 2019, James Almer wrote: On 12/15/2019 6:50 PM, Martin Storsjö wrote: When testing on a memory limited system, these tests consume a significant amount of memory and can often fail if testing by running multiple processes in parallel. --- Made it possible to override the setting

Re: [FFmpeg-devel] [PATCH] avcodec/h264, videotoolbox: handle streams with multiple/changing PPS

2019-12-17 Thread Irad Cohen
Any updates on the acceptance of this patch? I verified it fixes the above mentioned issue when decoding a h264 stream on an iOS device. Would love to see this upstream so I won’t have to use a forked ffmpeg version. Irad ___ ffmpeg-devel mailing list

[FFmpeg-devel] [PATCH] lavc/h264dec.h: remove unused ff_h264_decode_slice_header

2019-12-17 Thread fulinjie
From: Linjie Fu Once removed in 4a9bab3db0d9ec449ebc8b5e823374d1d1df7761. Introduced again in b25cd7540e7. Signed-off-by: Linjie Fu --- libavcodec/h264dec.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/h264dec.h b/libavcodec/h264dec.h index 1d9723260d..530e2d4071 100644 ---

[FFmpeg-devel] [PATCH] lavfi/vf_scale_qsv: set the correct class_name for scale_qsv

2019-12-17 Thread Linjie Fu
Fix the AVOptions name for scale_qsv while dumping help message: $ ffmpeg -h full Before: qsvscale AVOptions: After: scale_qsv AVOptions: Signed-off-by: Linjie Fu --- libavfilter/vf_scale_qsv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_scale_qsv.c b/li

Re: [FFmpeg-devel] [PATCH 3/5] avfilter/scale: separate exprs parse and eval

2019-12-17 Thread Gyan
On 17-12-2019 01:44 am, Michael Niedermayer wrote: On Sun, Dec 15, 2019 at 10:36:58PM +0530, Gyan wrote: 3rd of 5 factorized patches; supersedes https://patchwork.ffmpeg.org/patch/16272/ scale_eval.c | 69 -- vf_scale.c | 286 +++

Re: [FFmpeg-devel] [PATCH 5/5] avfilter/scale: add animation support

2019-12-17 Thread Gyan
On 15-12-2019 10:37 pm, Gyan wrote: 5th of 5 factorized patches; supersedes https://patchwork.ffmpeg.org/patch/16272/ Same patch rebased on v2 of 3/5 patch. Gyan From 2d03d536305a75dd38724f9f78aeb2abbd04d85e Mon Sep 17 00:00:00 2001 From: Gyan Doshi Date: Sun, 15 Dec 2019 18:56:06 +0530 Sub

Re: [FFmpeg-devel] [PATCH 4/5] avfilter/scale: add function to check expressions

2019-12-17 Thread Gyan
On 15-12-2019 10:37 pm, Gyan wrote: 4th of 5 factorized patches; supersedes https://patchwork.ffmpeg.org/patch/16272/ Same patch rebased on v2 of 3/5 patch. Gyan From 009e5f6d4c1338261ef7af683e54011b8b1adb30 Mon Sep 17 00:00:00 2001 From: Gyan Doshi Date: Fri, 13 Dec 2019 00:12:53 +0530 Subj

Re: [FFmpeg-devel] [PATCH 1/3] avutil/eval: Add av_expr_count_func() similar to av_expr_count_vars()

2019-12-17 Thread Michael Niedermayer
On Tue, Dec 17, 2019 at 01:50:37AM +0100, Marton Balint wrote: > > > On Tue, 17 Dec 2019, Michael Niedermayer wrote: > > >On Sun, Dec 15, 2019 at 01:59:23PM +0100, Marton Balint wrote: > >> > >> > >>On Fri, 6 Dec 2019, Michael Niedermayer wrote: > >> > >>>Signed-off-by: Michael Niedermayer > >>

Re: [FFmpeg-devel] [RFC]lavu/log: Do not print pointer addresses for loglevel < debug

2019-12-17 Thread Michael Niedermayer
On Mon, Dec 16, 2019 at 09:05:55PM +0100, Carl Eugen Hoyos wrote: > Hi! > > Attached patch reduces the verbosity of the console output, comments welcome. with this it would no longer be possible to associate which of 2 instances like 2 encoders or 2 decoders of the same type a message comes from

[FFmpeg-devel] [PATCH v1 1/5] avutil: add AV_FRAME_DATA_USER_DATA_UNREGISTERED side data type

2019-12-17 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/APIchanges | 3 +++ libavutil/frame.c | 1 + libavutil/frame.h | 7 +++ libavutil/version.h | 2 +- 4 files changed, 12 insertions(+), 1 deletion(-) diff --git a/doc/APIchanges b/doc/APIchanges index 401c65a753..7955dfa659 100644

[FFmpeg-devel] [PATCH v1 3/5] avfilter/vf_showinfo: display user data unregistered message

2019-12-17 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/vf_showinfo.c | 20 1 file changed, 20 insertions(+) diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c index 31f6b32aa4..0d227983c2 100644 --- a/libavfilter/vf_showinfo.c +++ b/libavfilter/vf_showi

[FFmpeg-devel] [PATCH v1 5/5] avcodec/h264: create user data unregistered side data for H.264

2019-12-17 Thread lance . lmwang
From: Limin Wang Below is the sample message for -vf showinfo(need to apply the patchset): [Parsed_showinfo_0 @ 0x7fac7b702080] side data - User data unregistered: [Parsed_showinfo_0 @ 0x7fac7b702080] UUID=186f369370304f2c603021492feee5b8 [Parsed_showinfo_0 @ 0x7fac7b702080] User Data=hello Si

[FFmpeg-devel] [PATCH v1 2/5] avcodec/hevc_sei: add support for user data unregistered SEI message

2019-12-17 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/hevc_sei.c | 28 libavcodec/hevc_sei.h | 7 +++ libavcodec/hevcdec.c | 10 ++ 3 files changed, 45 insertions(+) diff --git a/libavcodec/hevc_sei.c b/libavcodec/hevc_sei.c index c59bd4321e..1af9

Re: [FFmpeg-devel] [PATCH v1 2/2] avcodec/h265_metadata_bsf: add option to insert a string as SEI unregistered user data

2019-12-17 Thread Limin Wang
On Wed, Dec 11, 2019 at 11:02:04PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > doc/bitstream_filters.texi | 8 ++ > libavcodec/h265_metadata_bsf.c | 65 > +- > 2 files changed, 72 insertions(+),

[FFmpeg-devel] [PATCH v1 4/5] avcodec/h264_sei: fix the size of user data unregistered

2019-12-17 Thread lance . lmwang
From: Limin Wang According to the specifications, the payloadSize includes the 16-byte size of UUID. Signed-off-by: Limin Wang --- libavcodec/h264_sei.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c index d4eb9c0dab..4

[FFmpeg-devel] [PATCH] avcodec/pthread_frame: do not give the hardware context internals to the user

2019-12-17 Thread Steve Lhomme
The internal data should not leak to the user. It can potentially be destroyed twice since the hwaccel uninit was also copied back to the user. This behaviour may only be found in VLC which uses frame threading with hardware decoding. --- libavcodec/pthread_frame.c | 9 ++--- 1 file changed,

Re: [FFmpeg-devel] [PATCH V1] fftools/cmdutils: Fix break command dump for -map option

2019-12-17 Thread myp...@gmail.com
On Fri, Dec 13, 2019 at 12:20 AM Jun Zhao wrote: > > From: Jun Zhao > > Before this fix, ffmpeg -h full | grep map get the command dump > like: > > -map [-]input_file_id[:stream_specifier][,sync_file_id[:stream_s set input > stream mapping >

Re: [FFmpeg-devel] [PATCH] movenc: Write durations based on pts into mvhd/mdhd/tkhd/elst

2019-12-17 Thread Martin Storsjö
On Mon, 16 Dec 2019, Michael Niedermayer wrote: On Mon, Dec 16, 2019 at 12:16:14AM +0200, Martin Storsjö wrote: Keep all the existing data fields as they are (there's lots and lots of nontrivial calculation and heuristics based on them in their current form), but derive the duration as the diff

[FFmpeg-devel] [PATCHv2] movenc: Write durations based on pts into mvhd/mdhd/tkhd/elst

2019-12-17 Thread Martin Storsjö
Keep all the existing data fields as they are (there's lots and lots of nontrivial calculation and heuristics based on them in their current form), but derive the duration as the difference between the pts of the first packet to the maximum pts+duration (not necessarily the last packet); use this d

Re: [FFmpeg-devel] [PATCH] avfilter/image2: Add source file path and basename to each packet side data.

2019-12-17 Thread Alexandre Heitor Schmidt
On 17/12/2019 00:35, Marton Balint wrote: > On Mon, 16 Dec 2019, Alexandre Heitor Schmidt wrote: >> This is the second time I'm submiting this patch, now modified to be >> less intrusive, as sugested by Marton Balint, and hopefully without git >> send-email messing up with the diff by replacing '@

Re: [FFmpeg-devel] [PATCH] lavc/hevc_cabac: fix cbf_cb and cbf_cr for transform depth 4

2019-12-17 Thread Fu, Linjie
Hi, > -Original Message- > From: ffmpeg-devel On Behalf Of Fu, > Linjie > Sent: Sunday, December 15, 2019 09:56 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH] lavc/hevc_cabac: fix cbf_cb and cbf_cr > for transform depth 4 > > > -

Re: [FFmpeg-devel] [PATCH, v3] FATE: add test for hevc files with 4 TUDepth(0..4) of cbf_cb/cbf_cr

2019-12-17 Thread James Almer
On 12/13/2019 2:54 PM, Linjie Fu wrote: > 5 cabac states for cbf_cb and cbf_cr are supported according to > Table 9-4. > > Add a test for 64x64 4:4:4 8bit HEVC clips with TUDepth = 4, cbf_cr > 0. > > Signed-off-by: Xu Guangxin > Signed-off-by: Linjie Fu > --- > tests/fate/hevc.mak

Re: [FFmpeg-devel] [PATCH] FATE/hevc.mak: cosmetic for fate-hevc-paired-fields

2019-12-17 Thread James Almer
On 12/13/2019 2:55 PM, Linjie Fu wrote: > Adjust the order of fate-hevc-paired-fields. > > Signed-off-by: Linjie Fu > --- > tests/fate/hevc.mak | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/fate/hevc.mak b/tests/fate/hevc.mak > index 735949a..35af3e4 10064

Re: [FFmpeg-devel] [PATCH] lavc/hevc_cabac: fix cbf_cb and cbf_cr for transform depth 4

2019-12-17 Thread James Almer
On 12/11/2019 5:47 AM, Linjie Fu wrote: > The max transform depth is 5(from 0 to 4), so we need 5 cabac states for > cbf_cb and cbf_cr. > > See Table 9-4 for details. > > Signed-off-by: Xu Guangxin > Signed-off-by: Linjie Fu > --- > libavcodec/hevc_cabac.c | 42 +---

Re: [FFmpeg-devel] [RFC]lavu/log: Do not print pointer addresses for loglevel < debug

2019-12-17 Thread Nicolas George
Carl Eugen Hoyos (12019-12-16): > From f164e22f185d6a3e69d3376246a41a6958dba215 Mon Sep 17 00:00:00 2001 > From: Carl Eugen Hoyos > Date: Mon, 16 Dec 2019 21:02:19 +0100 > Subject: [PATCH] lavu/log: Do not print pointer addresses for loglevel < > debug. > > --- > libavutil/log.c | 16 ++

Re: [FFmpeg-devel] [PATCH 001/244] Add a new channel layout API

2019-12-17 Thread Nicolas George
Hi. Anton Khirnov (12019-12-10): > I disagree. I think I have a fair amount of skill and experience as a C > developer, but I still get hit by those issues frequently. It's extra > trouble for only theoretical gain. I concede this to you, except for the last sentence: I do not agree that the gain

Re: [FFmpeg-devel] [PATCH 1/5] lavfi/buffersrc: remove fifo.

2019-12-17 Thread Nicolas George
Nicolas George (12019-12-02): > The frame is immediately pushed, the fifo has never more than one. > > Signed-off-by: Nicolas George > --- > libavfilter/buffersrc.c | 45 ++--- > 1 file changed, 11 insertions(+), 34 deletions(-) I will push these five patches

Re: [FFmpeg-devel] [PATCH] avcodec/libvpxenc: add VP9 temporal scalability encoding option

2019-12-17 Thread Michael Niedermayer
On Mon, Dec 16, 2019 at 02:23:00PM -0800, Wonkap Jang wrote: > This commit reuses the configuration options for VP8 that enables > temporal scalability for VP9. It also adds a way to enable three > preset temporal structures (refer to the documentation for more > detail) that can be used in offline

Re: [FFmpeg-devel] [PATCH] avcodec/libvpxenc: add a way to explicitly set temporal layer id.

2019-12-17 Thread Michael Niedermayer
On Mon, Dec 16, 2019 at 02:23:26PM -0800, Wonkap Jang wrote: > In order for rate control to correctly allocate bitrate to each temporal > layer, correct temporal layer id has to be set to each frame. This > commit provides the ability to set correct temporal layer id for each > frame. > --- > liba

Re: [FFmpeg-devel] [RFC]lavu/log: Do not print pointer addresses for loglevel < debug

2019-12-17 Thread Carl Eugen Hoyos
Am Di., 17. Dez. 2019 um 19:36 Uhr schrieb Nicolas George : > > Carl Eugen Hoyos (12019-12-16): > > From f164e22f185d6a3e69d3376246a41a6958dba215 Mon Sep 17 00:00:00 2001 > > From: Carl Eugen Hoyos > > Date: Mon, 16 Dec 2019 21:02:19 +0100 > > Subject: [PATCH] lavu/log: Do not print pointer addres

Re: [FFmpeg-devel] [PATCH v1 5/5] avcodec/h264: create user data unregistered side data for H.264

2019-12-17 Thread Michael Niedermayer
On Tue, Dec 17, 2019 at 06:22:17PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Below is the sample message for -vf showinfo(need to apply the patchset): > [Parsed_showinfo_0 @ 0x7fac7b702080] side data - User data unregistered: > [Parsed_showinfo_0 @ 0x7fac7b702080] UUID=186f369

Re: [FFmpeg-devel] [PATCH v1 5/5] avcodec/h264: create user data unregistered side data for H.264

2019-12-17 Thread James Almer
On 12/17/2019 7:22 AM, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Below is the sample message for -vf showinfo(need to apply the patchset): > [Parsed_showinfo_0 @ 0x7fac7b702080] side data - User data unregistered: > [Parsed_showinfo_0 @ 0x7fac7b702080] UUID=186f369370304f2c603021492f

Re: [FFmpeg-devel] [PATCH v1 3/5] avfilter/vf_showinfo: display user data unregistered message

2019-12-17 Thread James Almer
On 12/17/2019 7:22 AM, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavfilter/vf_showinfo.c | 20 > 1 file changed, 20 insertions(+) > > diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c > index 31f6b32aa4..0d227

Re: [FFmpeg-devel] [PATCH v1 3/5] avfilter/vf_showinfo: display user data unregistered message

2019-12-17 Thread Michael Niedermayer
On Tue, Dec 17, 2019 at 06:22:15PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavfilter/vf_showinfo.c | 20 > 1 file changed, 20 insertions(+) > > diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c > inde

Re: [FFmpeg-devel] [PATCH v1 2/5] avcodec/hevc_sei: add support for user data unregistered SEI message

2019-12-17 Thread James Almer
On 12/17/2019 7:22 AM, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavcodec/hevc_sei.c | 28 > libavcodec/hevc_sei.h | 7 +++ > libavcodec/hevcdec.c | 10 ++ > 3 files changed, 45 insertions(+) > > diff --g

Re: [FFmpeg-devel] [PATCH 3/3] ffprobe: Fix fate tests for ffprobe in cases where TARGET_PATH differs from the current path

2019-12-17 Thread Martin Storsjö
On Sun, 15 Dec 2019, Martin Storsjö wrote: On Tue, 10 Dec 2019, Martin Storsjö wrote: In these cases, we must pass the full path of the file to ffprobe (as the current working dir on the remote system, e.g. when invoked with "ssh remote ffprobe ..." isn't the wanted one). The input filename p

Re: [FFmpeg-devel] [PATCH 1/2] checkasm: aacpsdsp: Tolerate extra intermediate precision in stereo_interpolate

2019-12-17 Thread Martin Storsjö
On Sun, 15 Dec 2019, Martin Storsjö wrote: On Tue, 10 Dec 2019, Martin Storsjö wrote: The stereo_interpolate functions add h_step to the values h BUF_SIZE times. Within the stereo_interpolate C functions, the values h (h0-h3, h00-h13) are declared as local float variables, but the compiler is

Re: [FFmpeg-devel] [PATCH 3/5] avformat/utils: Use coded_side_data

2019-12-17 Thread Michael Niedermayer
On Mon, Dec 16, 2019 at 06:39:20PM +0100, Nicolas Gaullier wrote: > Make find_stream_info get side data from the codec context. > --- > fftools/ffmpeg.c | 16 +++- > libavformat/avformat.h | 11 +++ > libavformat/utils.c| 18 ++ > 3 files changed, 32 i

Re: [FFmpeg-devel] [PATCH v1 4/5] avcodec/h264_sei: fix the size of user data unregistered

2019-12-17 Thread Michael Niedermayer
On Tue, Dec 17, 2019 at 06:22:16PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > According to the specifications, the payloadSize includes the 16-byte size of > UUID. > > Signed-off-by: Limin Wang > --- > libavcodec/h264_sei.c | 7 --- > 1 file changed, 4 insertions(+), 3 de

Re: [FFmpeg-devel] [PATCH] lavc/h264dec.h: remove unused ff_h264_decode_slice_header

2019-12-17 Thread Michael Niedermayer
On Tue, Dec 17, 2019 at 04:57:33PM +0800, fulin...@zju.edu.cn wrote: > From: Linjie Fu > > Once removed in 4a9bab3db0d9ec449ebc8b5e823374d1d1df7761. > > Introduced again in b25cd7540e7. > > Signed-off-by: Linjie Fu > --- > libavcodec/h264dec.h | 2 -- > 1 file changed, 2 deletions(-) will ap

Re: [FFmpeg-devel] [PATCH 1/5] fftools/ffmpeg: Fix forward CPB props in to out

2019-12-17 Thread Michael Niedermayer
On Mon, Dec 16, 2019 at 10:19:29PM +, Gaullier Nicolas wrote: > > >> @@ -3562,12 +3562,14 @@ static int init_output_stream(OutputStream *ost, > >> char *error, int error_len) > >> int i; > >> for (i = 0; i < ist->st->nb_side_data; i++) { > >> AVPacke

Re: [FFmpeg-devel] [aarch64] improve performance of?ff_hscale_8_to_15_neon

2019-12-17 Thread Michael Niedermayer
On Mon, Dec 16, 2019 at 10:53:26PM +0100, Jean-Baptiste Kempf wrote: > On Mon, Dec 9, 2019, at 18:42, Sebastian Pop wrote: > > On Mon, Dec 9, 2019 at 5:01 AM Clément Bœsch wrote: > > > > > > On Sun, Dec 08, 2019 at 11:08:31PM +0200, Martin Storsjö wrote: > > > > On Sun, 8 Dec 2019, Clément Bœsch w

Re: [FFmpeg-devel] [PATCH] avcodec/libvpxenc: add VP9 temporal scalability encoding option

2019-12-17 Thread Wonkap Jang
Thank you Michael, I'll send out a new patch along with the other fix that is dependent on this one. Let's review there. Thank you, Wonkap On Tue, Dec 17, 2019 at 11:21 AM Michael Niedermayer wrote: > On Mon, Dec 16, 2019 at 02:23:00PM -0800, Wonkap Jang wrote: > > This commit reuses the co

Re: [FFmpeg-devel] [PATCH] avcodec/libvpxenc: add a way to explicitly set temporal layer id.

2019-12-17 Thread Wonkap Jang
Thank you Michael, There is a dependency between this patch and the one before it. I will send out a new patch with both on the same branch as PATCH 1/2 and 2/2. Thank you~ Wonkap On Tue, Dec 17, 2019 at 12:08 PM Michael Niedermayer wrote: > On Mon, Dec 16, 2019 at 02:23:26PM -0800, Wonkap

[FFmpeg-devel] [PATCH v2 2/2] avcodec/libvpxenc: add a way to explicitly set temporal layer id

2019-12-17 Thread Wonkap Jang
In order for rate control to correctly allocate bitrate to each temporal layer, correct temporal layer id has to be set to each frame. This commit provides the ability to set correct temporal layer id for each frame. --- libavcodec/libvpxenc.c | 11 ++- 1 file changed, 10 insertions(+), 1

[FFmpeg-devel] [PATCH v2 1/2] avcodec/libvpxenc: add VP9 temporal scalability encoding option

2019-12-17 Thread Wonkap Jang
This commit reuses the configuration options for VP8 that enables temporal scalability for VP9. It also adds a way to enable three preset temporal structures (refer to the documentation for more detail) that can be used in offline encoding. --- libavcodec/libvpxenc.c | 237

[FFmpeg-devel] [PATCH v2 1/2] avcodec/libvpxenc: add VP9 temporal scalability encoding option

2019-12-17 Thread Wonkap Jang
This commit reuses the configuration options for VP8 that enables temporal scalability for VP9. It also adds a way to enable three preset temporal structures (refer to the documentation for more detail) that can be used in offline encoding. --- libavcodec/libvpxenc.c | 237

[FFmpeg-devel] [PATCH] avcodec/pcm: Fix invalid shift in pcm_decode_frame for LXF

2019-12-17 Thread Michael Niedermayer
Fixes: left shift of 32 by 28 places cannot be represented in type 'int' Fixes: 19472/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PCM_LXF_fuzzer-5704364320096256 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niede

Re: [FFmpeg-devel] [PATCH 3/3] ffprobe: Fix fate tests for ffprobe in cases where TARGET_PATH differs from the current path

2019-12-17 Thread James Almer
On 12/17/2019 6:27 PM, Martin Storsjö wrote: > On Sun, 15 Dec 2019, Martin Storsjö wrote: > >> On Tue, 10 Dec 2019, Martin Storsjö wrote: >> >>> In these cases, we must pass the full path of the file to ffprobe >>> (as the current working dir on the remote system, e.g. when invoked >>> with "ssh r

Re: [FFmpeg-devel] [PATCH v1 3/5] avfilter/vf_showinfo: display user data unregistered message

2019-12-17 Thread Limin Wang
On Tue, Dec 17, 2019 at 06:18:55PM -0300, James Almer wrote: > On 12/17/2019 7:22 AM, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/vf_showinfo.c | 20 > > 1 file changed, 20 insertions(+) > > > > diff --git a/

Re: [FFmpeg-devel] [PATCH v1 2/5] avcodec/hevc_sei: add support for user data unregistered SEI message

2019-12-17 Thread Limin Wang
On Tue, Dec 17, 2019 at 06:15:42PM -0300, James Almer wrote: > On 12/17/2019 7:22 AM, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavcodec/hevc_sei.c | 28 > > libavcodec/hevc_sei.h | 7 +++ > > libavcodec/

Re: [FFmpeg-devel] [PATCH v1 3/5] avfilter/vf_showinfo: display user data unregistered message

2019-12-17 Thread Limin Wang
On Tue, Dec 17, 2019 at 10:22:47PM +0100, Michael Niedermayer wrote: > On Tue, Dec 17, 2019 at 06:22:15PM +0800, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/vf_showinfo.c | 20 > > 1 file changed, 20 insertion

[FFmpeg-devel] [PATCH] web: add hosting provider

2019-12-17 Thread Lou Logan
Hosting has been provided by telepoint.bg for 4 years now. This places an unobtrusive note placed in the footer to acknowledge their continuing support. Signed-off-by: Lou Logan --- src/template_footer1 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/template_footer1 b/src/template_foote

Re: [FFmpeg-devel] [PATCH v1 4/5] avcodec/h264_sei: fix the size of user data unregistered

2019-12-17 Thread Limin Wang
On Tue, Dec 17, 2019 at 10:42:54PM +0100, Michael Niedermayer wrote: > On Tue, Dec 17, 2019 at 06:22:16PM +0800, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > According to the specifications, the payloadSize includes the 16-byte size > > of UUID. > > > > Signed-off-by: Limin Wang

Re: [FFmpeg-devel] [PATCH 1/4] tests/checkasm: add overflow test for hevc_add_res

2019-12-17 Thread Fu, Linjie
Hi, > -Original Message- > From: ffmpeg-devel On Behalf Of Fu, > Linjie > Sent: Sunday, December 15, 2019 10:02 > To: FFmpeg development discussions and patches de...@ffmpeg.org>; jamr...@gmail.com; u...@pkh.me; Pierre- > edouard.lep...@insa-rennes.fr > Subject: Re: [FFmpeg-devel] [PATCH

Re: [FFmpeg-devel] [PATCH] doc/encoders: add VP9 temporal scalability encoding option

2019-12-17 Thread James Zern
Hi, On Mon, Dec 16, 2019 at 2:21 PM Wonkap Jang wrote: > > Documentation change for adding support for encoding > with temporal scalability in VP9. > --- This part sounds related to the other patches you're sending. The documentation can be added with the code change for vp9. > doc/encoders.te

Re: [FFmpeg-devel] [PATCH V3 2/2] libswscale/x86/yuv2rgb: add ssse3 version

2019-12-17 Thread Fu, Ting
> -Original Message- > From: ffmpeg-devel On Behalf Of Henrik > Gramner > Sent: Tuesday, December 17, 2019 08:29 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH V3 2/2] libswscale/x86/yuv2rgb: add ssse3 > version > > On Wed, Dec 4, 2019 at 4:03

[FFmpeg-devel] [PATCH 4/4] configure: Add 2k1000 for loongson.

2019-12-17 Thread Yin Shiyou
Usage: configure --cpu=2k1000 --- configure | 4 1 file changed, 4 insertions(+) diff --git a/configure b/configure index 2cdfd32..8323c67 100755 --- a/configure +++ b/configure @@ -5001,6 +5001,10 @@ elif enabled mips; then fi fi case $

[FFmpeg-devel] [PATCH 1/4] configure: adjust enabling strategy of mmi, loongson2 and loongson3.

2019-12-17 Thread Yin Shiyou
1. change mmi_deps from mips to loongson2/loongson3. 2. Use check_inline_asm_flags to ensure loongson3 can be enabled when cpu=generic.(If --cpu=loongson* is setted, cflags can be updated before doing compiler check. If --cpu=loongson* is not setted, check_inline_asm_flags is needed.) NOTE:

[FFmpeg-devel] [PATCH 3/4] avcodec: Add runtime check for mips msa.

2019-12-17 Thread Yin Shiyou
--- configure | 8 ++-- ffbuild/common.mak | 4 libavcodec/mips/blockdsp_init_mips.c| 3 ++- libavcodec/mips/h263dsp_init_mips.c | 5 - libavcodec/mips/h264chroma_init_mips.c | 3 ++- libavcodec/mips/

[FFmpeg-devel] [PATCH 2/4] avcodec: Add runtime check for loongson mmi.

2019-12-17 Thread Yin Shiyou
get_cpu_flags_from_cpuinfo is added for mmi support check here. get_cpu_flags_from_cpucfg will be added in future for new processor. --- configure | 2 + ffbuild/common.mak | 9 + libavcodec/mips/blockdsp_init_mips.c| 5 ++- libavcodec/