Re: [FFmpeg-devel] blended telecine... possible?

2019-09-04 Thread Kieran O Leary
Hi, On Wed, 4 Sep 2019, 04:09 Mark Filipak, < markfilipak.windows+ffm...@gmail.com> wrote: > No one has responded. What does that indicate? Lack of interest? Lack of > knowledge? Lack of time? Shunning of anyone who's not a current developer? > You didn't wait very long for a reply, also you

Re: [FFmpeg-devel] [PATCH] ffmpeg: switch to avformat_seek_file for stream_loop

2019-09-04 Thread Gyan
On 02-09-2019 09:24 PM, Michael Niedermayer wrote: On Sat, Aug 31, 2019 at 08:28:51PM +0530, Gyan wrote: A user observed that stream_loop didn't work with very short FLV files. seek_to_start in ffmpeg.c calls av_seek_frame with no flags; FLV seek only works with RTMP protocol so lavf falls

Re: [FFmpeg-devel] [PATCH] avcodec/videotoolboxenc: fix encoding frame crash on iOS 11

2019-09-04 Thread sharp bai
We have tested on iOS 12 and other version. Only on iOS 11 this crash occurs, regardless using which device such as iPhone 8, iPhone X or iPhone 7. Aman Gupta 于2019年9月4日周三 上午7:48写道: > > > > On Mon, Aug 12, 2019 at 11:50 PM sharpbai wrote: >> >> On iOS 11, encoding a frame may return error with

[FFmpeg-devel] [PATCH V1 1/2] configure: fix --disable-alsa can't work

2019-09-04 Thread Jun Zhao
From: Jun Zhao fix --disable-alsa can't work in configure Signed-off-by: Jun Zhao --- configure |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index b5bff39..3ef8f4e 100755 --- a/configure +++ b/configure @@ -6486,8 +6486,8 @@ else EOF fi

Re: [FFmpeg-devel] [PATCH v6] Add ZeroMQ as protocol option

2019-09-04 Thread Moritz Barsnick
On Mon, Sep 02, 2019 at 23:13:46 +0200, Marton Balint wrote: > Thanks, applied. > > Regards, > Marton You and the patch submitter failed to reset MICRO to 100 when bumping MINOR. Too late now. Moritz ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] blended telecine... possible?

2019-09-04 Thread Kieran Kunhya
On Wed, 4 Sep 2019, 07:34 Kieran O Leary, wrote: > Hi, > > On Wed, 4 Sep 2019, 04:09 Mark Filipak, < > markfilipak.windows+ffm...@gmail.com> wrote: > > > No one has responded. What does that indicate? Lack of interest? Lack of > > knowledge? Lack of time? Shunning of anyone who's not a current >

[FFmpeg-devel] [PATCH 2/5] libavcodec/mpeg12dec: Check input for minimal frame size

2019-09-04 Thread Michael Niedermayer
Fixes: Timeout (35sec -> 6sec) Fixes: 16901/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEGVIDEO_fuzzer-5729024726269952 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/mpeg12dec.c | 3

[FFmpeg-devel] [PATCH 3/5] avcodec/aacdec_fixed: Add FF_CODEC_CAP_INIT_CLEANUP

2019-09-04 Thread Michael Niedermayer
Fixes: memleaks Fixes: 16788/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AAC_FIXED_fuzzer-5649873898045440 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/aacdec_fixed.c | 2 +- 1 file

[FFmpeg-devel] [PATCH 5/5] avformat/vividas: Test size and packet numbers a bit more

2019-09-04 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavformat/vividas.c | 27 +++ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/libavformat/vividas.c b/libavformat/vividas.c index 7ccec85761..62d714dd2b 100644 --- a/libavformat/vividas.c +++ b/libavformat/vividas.c

Re: [FFmpeg-devel] [PATCH 05/25] avcodec/v4l2_buffers: teach ff_v4l2_buffer_avframe_to_buf about contiguous planar formats

2019-09-04 Thread Aman Gupta
On Wed, Sep 4, 2019 at 9:40 AM Alexis Ballier wrote: > On Mon, 2 Sep 2019 18:02:10 -0700 > Aman Gupta wrote: > [...] > > @@ -289,15 +290,59 @@ static int v4l2_bufref_to_buf(V4L2Buffer *out, > > int plane, const uint8_t* data, i int > > ff_v4l2_buffer_avframe_to_buf(const AVFrame *frame,

Re: [FFmpeg-devel] [PATCH 2/2 v2] avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays

2019-09-04 Thread James Almer
On 9/4/2019 1:37 AM, James Almer wrote: > On 9/4/2019 1:21 AM, Carl Eugen Hoyos wrote: >> >> >> Von meinem iPhone gesendet >> >>> Am 04.09.2019 um 01:03 schrieb James Almer : >>> >>> Speeds up the process considerably. >>> >>> Fixes ticket #8109. >>> >>> Suggested-by: nevcairiel >>> Suggested-by:

[FFmpeg-devel] [PATCH 1/2] lavc/qsv: Fix MSDK initialization failure in system memory mode

2019-09-04 Thread Zhong Li
MSDK does not create internal acceleration device on Linux, So MFXVideoCORE_SetHandle() is necessary. It has been added for ff_qsv_init_session_device(). But missed for ff_qsv_init_internal_session() due to commit 1f26a23 overwrited commit db89f45 Fix #7030 Signed-off-by: Zhong Li ---

[FFmpeg-devel] [PATCH v1 2/3] fftools/ffmpeg: replace the deprecated av_copy_packet_side_data

2019-09-04 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- fftools/ffmpeg.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 01f0410..e1a4b4a 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -2004,6 +2004,7 @@ static void

Re: [FFmpeg-devel] [PATCH v1] avcodec/tscc: fix the warning: assigning to 'Bytef *' (aka 'unsigned char *') from 'const uint8_t *

2019-09-04 Thread Carl Eugen Hoyos
Am Mi., 4. Sept. 2019 um 16:47 Uhr schrieb : > > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavcodec/tscc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/tscc.c b/libavcodec/tscc.c > index 6d03081..f3b959c 100644 > --- a/libavcodec/tscc.c >

[FFmpeg-devel] [PATCH v3] avfilter/vf_delogo: add auto set the area inside of the frame

2019-09-04 Thread Steven Liu
when the area outside of the frame, then use expr should give user warning message and auto set to the area inside of the frame. Signed-off-by: Steven Liu --- libavfilter/vf_delogo.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/libavfilter/vf_delogo.c

Re: [FFmpeg-devel] [PATCH 05/25] avcodec/v4l2_buffers: teach ff_v4l2_buffer_avframe_to_buf about contiguous planar formats

2019-09-04 Thread Alexis Ballier
On Mon, 2 Sep 2019 18:02:10 -0700 Aman Gupta wrote: [...] > @@ -289,15 +290,59 @@ static int v4l2_bufref_to_buf(V4L2Buffer *out, > int plane, const uint8_t* data, i int > ff_v4l2_buffer_avframe_to_buf(const AVFrame *frame, V4L2Buffer *out) { > int i, ret; > +struct v4l2_format fmt =

Re: [FFmpeg-devel] [PATCH v2] avformat/mxfenc: fix warning: unused function 'klv_ber_length' [-Wunused-function]

2019-09-04 Thread Tomas Härdin
ons 2019-09-04 klockan 22:27 +0800 skrev Limin Wang: > On Fri, Aug 30, 2019 at 08:42:08AM +0200, Tomas Härdin wrote: > > tor 2019-08-29 klockan 16:44 +0800 skrev lance.lmw...@gmail.com: > > > From: Limin Wang > > > > > > Signed-off-by: Limin Wang > > > --- > > > libavformat/mxfenc.c | 7

Re: [FFmpeg-devel] [PATCH] lavf/tls_gnutls: check for interrupt inside handshake loop

2019-09-04 Thread Błażej Szczygieł
fixes #8080 Signed-off-by: Błażej Szczygieł --- libavformat/tls_gnutls.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/tls_gnutls.c b/libavformat/tls_gnutls.c index f32bc2821b..f507b7d044 100644 --- a/libavformat/tls_gnutls.c +++ b/libavformat/tls_gnutls.c @@ -184,6

[FFmpeg-devel] [PATCH 1/5] tools/target_dec_fuzzer: consider potential padding/edge in pixel threshold

2019-09-04 Thread Michael Niedermayer
Fixes: Timeout (73sec ->30ms) Fixes: 16921/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DIRAC_fuzzer-5689384594046976 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- tools/target_dec_fuzzer.c | 2

[FFmpeg-devel] [PATCH] Add option to log timing

2019-09-04 Thread Soft Works
This commit adds two logging flags: 'timing' and 'datetiming'. Usage: ffmpeg -logleve +timing Timing information will only be added to log lines once transcoding has started. --- fftools/cmdutils.c | 14 ++ fftools/ffmpeg.c | 3 +++ libavutil/log.c| 37

Re: [FFmpeg-devel] [PATCH v6] Add ZeroMQ as protocol option

2019-09-04 Thread Andriy Gelman
On Wed, 04. Sep 13:39, Moritz Barsnick wrote: > You and the patch submitter failed to reset MICRO to 100 when bumping > MINOR. Too late now. sorry for this Andriy ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

[FFmpeg-devel] [PATCH 4/5] avformat/vividas: Check n_sb_blocks against input space

2019-09-04 Thread Michael Niedermayer
Fixes: OOM Fixes: 16726/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5719320750981120 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavformat/vividas.c | 17 + 1 file

Re: [FFmpeg-devel] [PATCH] Change libvpx-vpx default to crf=32.

2019-09-04 Thread James Zern
Hi, On Wed, Aug 28, 2019 at 2:26 PM Elliott Karpilovsky wrote: > > Current default is 200kbps, which produces inconsistent > results (too high for low-res, too low for hi-res). Use > CRF instead, which will adapt. Affects vp8/vp9. Also > have VP8 use a default bitrate of 256kbps. > --- >

Re: [FFmpeg-devel] [PATCH] Add option to log timing

2019-09-04 Thread Bodecs Bela
Hi, 2019.09.04. 20:53 keltezéssel, Soft Works írta: This commit adds two logging flags: 'timing' and 'datetiming'. Usage: ffmpeg -logleve +timing Timing information will only be added to log lines once transcoding has started. Why this restriction? I think all log lines should be start with

[FFmpeg-devel] [PATCH V1 2/2] configure: fix --disable-v4l2-m2m can't work

2019-09-04 Thread Jun Zhao
From: Jun Zhao Use the command ./configure with/without --disable-v4l2-m2m test. Signed-off-by: Jun Zhao --- configure | 28 +++- 1 files changed, 15 insertions(+), 13 deletions(-) diff --git a/configure b/configure index 3ef8f4e..4141c1e 100755 --- a/configure +++

Re: [FFmpeg-devel] [PATCH] avcodec/nuv: call ff_reget_buffer() only when the picture data is going to change

2019-09-04 Thread James Almer
On 8/27/2019 11:25 AM, James Almer wrote: > Signed-off-by: James Almer > --- > This is an alternative approach to "avcodec/nuv: Avoid duplicating frames", > similar to the one from "avcodec/qtrle: call ff_reget_buffer() only when the > picture data is going to change", to workaround fuzzer

Re: [FFmpeg-devel] [PATCH 3/4] avformat/hashenc: add option to create hash per stream

2019-09-04 Thread Moritz Barsnick
On Tue, Sep 03, 2019 at 16:48:39 +0200, Paul B Mahol wrote: > I think better thing to do is to add streamhash muxer instead of doing > it in hash muxer. If that's the general wish, I will reimplement it as such. The code reuse will be similar, so I assume the other approaches are okay?

Re: [FFmpeg-devel] [PATCH v2] avformat/mxfenc: fix warning: unused function 'klv_ber_length' [-Wunused-function]

2019-09-04 Thread Limin Wang
On Fri, Aug 30, 2019 at 08:42:08AM +0200, Tomas Härdin wrote: > tor 2019-08-29 klockan 16:44 +0800 skrev lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/mxfenc.c | 7 +++ > > 1 file changed, 3 insertions(+), 4 deletions(-) > > > >

[FFmpeg-devel] [PATCH v1 1/3] avcodec/avpacket: replace the deprecated av_copy_packet_side_data

2019-09-04 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/avpacket.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavcodec/avpacket.c b/libavcodec/avpacket.c index 2b20067..34676cb 100644 --- a/libavcodec/avpacket.c +++ b/libavcodec/avpacket.c @@ -198,8 +198,6 @@ do

[FFmpeg-devel] [PATCH v1 3/3] avformat/movenc: replace the deprecated av_copy_packet_side_data

2019-09-04 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/movenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index edddfee..503f099 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -518,7 +518,7 @@

[FFmpeg-devel] [PATCH 2/2] lavu/qsv: remove the redundant libmfx init code

2019-09-04 Thread Zhong Li
Signed-off-by: Zhong Li --- libavutil/hwcontext_qsv.c | 21 - 1 file changed, 21 deletions(-) diff --git a/libavutil/hwcontext_qsv.c b/libavutil/hwcontext_qsv.c index 0329a81..802c842 100644 --- a/libavutil/hwcontext_qsv.c +++ b/libavutil/hwcontext_qsv.c @@ -1145,27 +1145,6

Re: [FFmpeg-devel] [PATCH] libavfilter/dnn: add header into native model file

2019-09-04 Thread Pedro Arthur
LGTM Pushed, thanks! Em seg, 2 de set de 2019 às 01:40, Guo, Yejun escreveu: > > Signed-off-by: Guo, Yejun > --- > libavfilter/dnn/dnn_backend_native.c| 43 > +++-- > tools/python/convert_from_tensorflow.py | 3 +++ > tools/python/convert_header.py |

Re: [FFmpeg-devel] [PATCH v1 1/3] avcodec/avpacket: replace the deprecated av_copy_packet_side_data

2019-09-04 Thread James Almer
On 9/4/2019 12:27 PM, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavcodec/avpacket.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/libavcodec/avpacket.c b/libavcodec/avpacket.c > index 2b20067..34676cb 100644 > ---

Re: [FFmpeg-devel] [PATCH v1 3/3] avformat/movenc: replace the deprecated av_copy_packet_side_data

2019-09-04 Thread James Almer
On 9/4/2019 12:27 PM, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavformat/movenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/movenc.c b/libavformat/movenc.c > index edddfee..503f099 100644 > ---

Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_delogo: avfilter/vf_delogo: add auto set the area inside of the frame

2019-09-04 Thread Moritz Barsnick
On Tue, Sep 03, 2019 at 19:54:26 +0800, Steven Liu wrote: > +av_log(s, AV_LOG_WARNING, "Logo area is outside of the frame," > + "auto set the area inside of the frame\n"); Missing a space after the comma inside the message text (lost while breaking the C string). Moritz

Re: [FFmpeg-devel] [PATCH] avcodec/wcmv: use ff_reget_buffer()

2019-09-04 Thread James Almer
On 8/30/2019 3:26 AM, Paul B Mahol wrote: > It still exits early when no blocks are encoded. Reverted that and pushed. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link

Re: [FFmpeg-devel] [PATCH] avcodec/decode: add a flags parameter to ff_reget_buffer()

2019-09-04 Thread James Almer
On 9/3/2019 10:47 AM, James Almer wrote: > On 8/31/2019 12:22 PM, James Almer wrote: >> Some decoders may not need a writable buffer in some specific cases, but only >> a reference to the existing buffer with updated frame properties instead, for >> the purpose of returning duplicate frames. For

[FFmpeg-devel] [PATCH v1] avcodec/tscc: fix the warning: assigning to 'Bytef *' (aka 'unsigned char *') from 'const uint8_t *

2019-09-04 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/tscc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/tscc.c b/libavcodec/tscc.c index 6d03081..f3b959c 100644 --- a/libavcodec/tscc.c +++ b/libavcodec/tscc.c @@ -64,7 +64,7 @@ typedef struct TsccContext

Re: [FFmpeg-devel] [PATCH] DVB EPG decoder

2019-09-04 Thread Anthony Delannoy
Hi I'm still interested to have those three commits merged (update in attachments). But I'd like to see data decoder in the future to use more easily EPG/NIT/BAT etc tables. Will it be possible? With modifications if it needs to be? Anthony Delannoy Le mar. 3 sept. 2019 à 23:39, Marton Balint

Re: [FFmpeg-devel] [PATCH] Add option to log timing

2019-09-04 Thread Michael Niedermayer
On Wed, Sep 04, 2019 at 06:53:28PM +, Soft Works wrote: > This commit adds two logging flags: 'timing' and 'datetiming'. > > Usage: ffmpeg -logleve +timing > > Timing information will only be added to log lines once transcoding has > started. > --- > fftools/cmdutils.c | 14 ++ >

[FFmpeg-devel] [PATCH] libavformat/webvttenc: Allow (but discard) additional streams

2019-09-04 Thread Soft Works
This allows having a video stream as reference stream when using the segment muxer --- libavformat/webvttenc.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavformat/webvttenc.c b/libavformat/webvttenc.c index 61b7f54622..be85c03130 100644 ---

Re: [FFmpeg-devel] [PATCH 4/4] avfilter/vf_v360: x86 SIMD for interpolations

2019-09-04 Thread Henrik Gramner
On Wed, Sep 4, 2019 at 10:01 PM James Almer wrote: > On 9/4/2019 4:28 PM, Paul B Mahol wrote: > > +vpmulld m3, m1, m0 > > +vpaddd m1, m3, m2 > > pmulld m1, m0 > paddd m1, m2 Could use pmaddwd instead as well, it's faster than pmulld on pretty much every CPU.

Re: [FFmpeg-devel] [PATCH] Add option to log timing

2019-09-04 Thread Soft Works
> Why this restriction? I think all log lines should be start with > time/date if corresponding flag is present. This makes the log to be > easy to parse by scripts. Initially I didn’t have this restriction, but it doesn’t work well together with some multi-line logging. See below for an

Re: [FFmpeg-devel] [PATCH] Add option to log timing

2019-09-04 Thread Michael Niedermayer
On Wed, Sep 04, 2019 at 07:35:11PM +, Soft Works wrote: > > > Why this restriction? I think all log lines should be start with > > time/date if corresponding flag is present. This makes the log to be > > easy to parse by scripts. > > Initially I didn’t have this restriction, but it doesn’t

Re: [FFmpeg-devel] [PATCH] Add option to log timing

2019-09-04 Thread Soft Works
> Michael Niedermayer wrote: > > > > > Why this restriction? I think all log lines should be start with > > > time/date if corresponding flag is present. This makes the log to be > > > easy to parse by scripts. > > > > Initially I didn’t have this restriction, but it doesn’t work well together

[FFmpeg-devel] [PATCH 4/4] avfilter/vf_v360: x86 SIMD for interpolations

2019-09-04 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/v360.h | 113 libavfilter/vf_v360.c | 236 - libavfilter/x86/Makefile | 2 + libavfilter/x86/vf_v360.asm| 104 +++ libavfilter/x86/vf_v360_init.c | 43 ++

[FFmpeg-devel] [PATCH 1/4] avfilter/vf_v360: rewrite storing of remap positions and interpolations

2019-09-04 Thread Paul B Mahol
In preparation of SIMD assembly. Signed-off-by: Paul B Mahol --- libavfilter/vf_v360.c | 168 ++ 1 file changed, 89 insertions(+), 79 deletions(-) diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c index 627caedc01..2fee0016b9 100644 ---

[FFmpeg-devel] [PATCH 2/4] avfilter/vf_v360: stop using floats in interpolation

2019-09-04 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/vf_v360.c | 40 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c index 2fee0016b9..dd41bb293c 100644 --- a/libavfilter/vf_v360.c +++

[FFmpeg-devel] [PATCH 3/4] avfilter/vf_v360: add asserts to guard against invalid conditions

2019-09-04 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/vf_v360.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c index dd41bb293c..fc120097d9 100644 --- a/libavfilter/vf_v360.c +++ b/libavfilter/vf_v360.c @@ -33,6 +33,7 @@ * 5) Remap

[FFmpeg-devel] [PATCH] Add option to log timing

2019-09-04 Thread Soft Works
0001-Add-option-to-log-timing.patch Description: 0001-Add-option-to-log-timing.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email

Re: [FFmpeg-devel] [PATCH] Fixing rare dshow input crash

2019-09-04 Thread Carl Eugen Hoyos
Am Do., 5. Sept. 2019 um 00:08 Uhr schrieb Alexey Potakhov : > In some rare cases when IAMStreamConfig_GetStreamCaps returns > an error avformat_open_input() crashes with access violation. Tabs are rejected by our repository, please remove them and resend. Carl Eugen

Re: [FFmpeg-devel] [PATCH] libavformat/webvttenc: Allow (but discard) additional streams

2019-09-04 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of > Carl Eugen Hoyos > > Am Mi., 4. Sept. 2019 um 22:43 Uhr schrieb Soft Works > : > > > > > > This allows having a video stream as reference stream when using the > > segment muxer > > Please add the command line that needs this

Re: [FFmpeg-devel] [PATCH] libavformat/webvttenc: Allow (but discard) additional streams

2019-09-04 Thread Carl Eugen Hoyos
Am Mi., 4. Sept. 2019 um 22:43 Uhr schrieb Soft Works : > > > This allows having a video stream as reference stream when using the segment > muxer Please add the command line that needs this patch. Carl Eugen ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH v1] avcodec/tscc: fix the warning: assigning to 'Bytef *' (aka 'unsigned char *') from 'const uint8_t *

2019-09-04 Thread Limin Wang
On Wed, Sep 04, 2019 at 08:06:39PM +0200, Carl Eugen Hoyos wrote: > Am Mi., 4. Sept. 2019 um 16:47 Uhr schrieb : > > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavcodec/tscc.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git

Re: [FFmpeg-devel] [PATCH V1 2/2] configure: fix --disable-v4l2-m2m can't work

2019-09-04 Thread Aman Gupta
On Wed, Sep 4, 2019 at 4:49 AM Jun Zhao wrote: > From: Jun Zhao > > Use the command ./configure with/without --disable-v4l2-m2m test. > > Signed-off-by: Jun Zhao > --- > configure | 28 +++- > 1 files changed, 15 insertions(+), 13 deletions(-) > > diff --git

[FFmpeg-devel] [PATCH] Fixing rare dshow input crash

2019-09-04 Thread Alexey Potakhov
In some rare cases when IAMStreamConfig_GetStreamCaps returns an error avformat_open_input() crashes with access violation. From c15f00b4e70c60ac38009905b4d2c2f3032967a6 Mon Sep 17 00:00:00 2001 From: Alexey Potakhov Date: Wed, 4 Sep 2019 17:54:24 -0400 Subject: [PATCH] Fixing rare dshow input

[FFmpeg-devel] [PATCH v2] avcodec/tscc: fix the warning: assigning to 'Bytef *' (aka 'unsigned char *') from 'const uint8_t *

2019-09-04 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/tscc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/tscc.c b/libavcodec/tscc.c index 6d03081..b0dbef4 100644 --- a/libavcodec/tscc.c +++ b/libavcodec/tscc.c @@ -88,7 +88,7 @@ static int

Re: [FFmpeg-devel] blended telecine... possible?

2019-09-04 Thread Mark Filipak
On 09/04/2019 03:09 AM, Kieran Kunhya wrote: On Wed, 4 Sep 2019, 07:34 Kieran O Leary, wrote: Hi, On Wed, 4 Sep 2019, 04:09 Mark Filipak, < markfilipak.windows+ffm...@gmail.com> wrote: No one has responded. What does that indicate? Lack of interest? Lack of knowledge? Lack of time?

Re: [FFmpeg-devel] [PATCH v1 3/3] avformat/movenc: replace the deprecated av_copy_packet_side_data

2019-09-04 Thread Limin Wang
On Wed, Sep 04, 2019 at 12:36:16PM -0300, James Almer wrote: > On 9/4/2019 12:27 PM, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavformat/movenc.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git

Re: [FFmpeg-devel] [PATCH 1/2] lavc/qsv: Fix MSDK initialization failure in system memory mode

2019-09-04 Thread Fu, Linjie
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Zhong Li > Sent: Wednesday, September 4, 2019 23:41 > To: ffmpeg-devel@ffmpeg.org > Cc: Li, Zhong > Subject: [FFmpeg-devel] [PATCH 1/2] lavc/qsv: Fix MSDK initialization failure > in system

Re: [FFmpeg-devel] [PATCH] ffmpeg: switch to avformat_seek_file for stream_loop

2019-09-04 Thread Gyan
On 04-09-2019 03:47 PM, Gyan wrote: On 02-09-2019 09:24 PM, Michael Niedermayer wrote: On Sat, Aug 31, 2019 at 08:28:51PM +0530, Gyan wrote: A user observed that stream_loop didn't work with very short FLV files. seek_to_start in ffmpeg.c calls av_seek_frame with no flags; FLV seek only

Re: [FFmpeg-devel] [PATCH] libavformat/rtspdec: Don't send teardown if rtsp_hd_out is null

2019-09-04 Thread Ross Nicholson
Hey All, Anything needed from me to progress this? Thanks in advance, Ross > On 29 Aug 2019, at 17:04, Ross Nicholson wrote: > > Hey Jun, > > So I got kodi running with FFmpeg n4.2 and the issue persists. Here's the > debugger output after trying to play the test link you provided. > >

[FFmpeg-devel] [PATCH] swscale/output: fix some code indentations

2019-09-04 Thread Linjie Fu
Signed-off-by: Linjie Fu --- libswscale/output.c | 70 ++--- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/libswscale/output.c b/libswscale/output.c index 26b0ff3..7eb4644 100644 --- a/libswscale/output.c +++ b/libswscale/output.c

Re: [FFmpeg-devel] [PATCH]lavf/rawenc: Only accept the appropriate stream type for raw muxers

2019-09-04 Thread James Almer
On 8/10/2019 9:25 PM, Carl Eugen Hoyos wrote: > Am Mo., 1. Juli 2019 um 00:47 Uhr schrieb Carl Eugen Hoyos > : >> >> Am Mo., 1. Juli 2019 um 00:40 Uhr schrieb Carl Eugen Hoyos >> : >>> >>> Hi! >>> >>> Attached patch fixes ticket #7979 for me. >> >> Now attached. > > Ping. > > Carl Eugen

Re: [FFmpeg-devel] [PATCH 1/2] lavc/qsv: Fix MSDK initialization failure in system memory mode

2019-09-04 Thread Fu, Linjie
> -Original Message- > From: Li, Zhong > Sent: Thursday, September 5, 2019 11:14 > To: Fu, Linjie ; FFmpeg development discussions and > patches > Subject: RE: [FFmpeg-devel] [PATCH 1/2] lavc/qsv: Fix MSDK initialization > failure in system memory mode > > > From: Fu, Linjie > > Sent:

Re: [FFmpeg-devel] [PATCH 1/2] lavc/qsv: Fix MSDK initialization failure in system memory mode

2019-09-04 Thread Li, Zhong
> From: Fu, Linjie > Sent: Thursday, September 5, 2019 12:07 PM > To: Li, Zhong ; FFmpeg development discussions and patches > > Subject: RE: [FFmpeg-devel] [PATCH 1/2] lavc/qsv: Fix MSDK initialization > failure > in system memory mode > > > -Original Message- > > From: Li, Zhong > >

[FFmpeg-devel] [PATCH V2] lavu/qsv: remove the redundant libmfx init code

2019-09-04 Thread Zhong Li
Signed-off-by: Zhong Li --- libavutil/hwcontext_qsv.c | 24 ++-- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/libavutil/hwcontext_qsv.c b/libavutil/hwcontext_qsv.c index 0329a81..1c0e4ff 100644 --- a/libavutil/hwcontext_qsv.c +++ b/libavutil/hwcontext_qsv.c

[FFmpeg-devel] [PATCH v3] hevc_mp4toannexb: Insert correct parameter sets before IRAP

2019-09-04 Thread Andriy Gelman
Changes in v3: Patch 1/2 - Fixed a bug where rbsp payload (without 0x03) was written into packet instead of the raw data (with 0x03). - Segment packets using ff_h2645_packet_split directly from mp4-style format without converting to annexb first. - Corrected

Re: [FFmpeg-devel] [PATCH 1/2] lavc/qsv: Fix MSDK initialization failure in system memory mode

2019-09-04 Thread Li, Zhong
> From: Fu, Linjie > Sent: Thursday, September 5, 2019 10:54 AM > To: FFmpeg development discussions and patches > Cc: Li, Zhong > Subject: RE: [FFmpeg-devel] [PATCH 1/2] lavc/qsv: Fix MSDK initialization > failure > in system memory mode > > > -Original Message- > > From: ffmpeg-devel

Re: [FFmpeg-devel] [PATCH v2] hevc_mp4toannexb: Insert correct parameter sets before IRAP

2019-09-04 Thread Andriy Gelman
Andreas, Thanks again for reviewing this patch. On Tue, 20. Aug 07:54, Andreas Rheinhardt wrote: > Hello, > > I have not looked at the *PS and the SEI stuff yet, but here is > already my review of the general code. > > Andriy Gelman: > > From: Andriy Gelman > > > > Fixes #7799 > > > >

Re: [FFmpeg-devel] [PATCH 4/4] avfilter/vf_v360: x86 SIMD for interpolations

2019-09-04 Thread James Almer
On 9/4/2019 4:28 PM, Paul B Mahol wrote: > diff --git a/libavfilter/x86/vf_v360.asm b/libavfilter/x86/vf_v360.asm > new file mode 100644 > index 00..46142a3bad > --- /dev/null > +++ b/libavfilter/x86/vf_v360.asm > @@ -0,0 +1,104 @@ >

Re: [FFmpeg-devel] [PATCH 4/4] avfilter/vf_v360: x86 SIMD for interpolations

2019-09-04 Thread James Almer
On 9/4/2019 5:47 PM, Henrik Gramner wrote: > On Wed, Sep 4, 2019 at 10:01 PM James Almer wrote: >> On 9/4/2019 4:28 PM, Paul B Mahol wrote: >>> +vpmulld m3, m1, m0 >>> +vpaddd m1, m3, m2 >> >> pmulld m1, m0 >> paddd m1, m2 > > Could use pmaddwd instead as