Re: [FFmpeg-devel] [PATCH] flvdec: option for dropping negative CTS frames Initial frames with negative pts can produce video/audio desynchronization when a decoder is not prepared to handle negative

2017-04-05 Thread wm4
On Wed, 5 Apr 2017 17:15:26 -0300 Felipe Astroza wrote: > 2017-04-05 15:35 GMT-03:00 wm4 : > > > On Wed, 5 Apr 2017 14:29:30 -0300 > > fel...@astroza.cl wrote: > > > > > From: Felipe Astroza > > > > > > Signed-off-by: Felipe

[FFmpeg-devel] [PATCH 2/2] Add http cookie tests cases to fate

2017-04-05 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavformat/Makefile | 1 + libavformat/tests/http.c | 186 + tests/fate/libavformat.mak | 5 ++ tests/ref/fate/http| 30 4 files changed, 222 insertions(+) create

[FFmpeg-devel] [PATCH 2/2] Add http cookie tests cases to fate

2017-04-05 Thread Micah Galizia
Hi, I didn't realize there was a year 2038 problem -- dates beyond it overflow a 32-bit time_t -- I've made the unit tests 32-bit compatible now. Thank you! ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] libavformat/mov: Fix memory leak, need to free the chapter tracks array

2017-04-05 Thread Michael Niedermayer
On Wed, Apr 05, 2017 at 01:23:31PM -0700, Thierry Foucu wrote: > --- > libavformat/mov.c | 1 + > 1 file changed, 1 insertion(+) applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I have never wished to cater to the crowd; for what I know they do not

Re: [FFmpeg-devel] [PATCH 2/2] Add experimental support for Opus in ISO BMFF (MP4)

2017-04-05 Thread James Almer
On 3/15/2017 10:19 PM, Matthew Gregan wrote: > Hi, > > The attached patch adds demuxing support for Opus audio codec in > ISOBMFF/MP4. This is based on v0.6.8 of the draft spec at > https://vfrmaniac.fushizen.eu/contents/opus_in_isobmff.html. > > Firefox supports demuxing/playback of these

Re: [FFmpeg-devel] [RFC] Merge of Libav's bitstream filter

2017-04-05 Thread Michael Niedermayer
On Sun, Apr 02, 2017 at 06:58:39PM +0200, Clément Bœsch wrote: [...] > Comments? Just wanted to say thanks for posting this to the ML [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB When you are offended at any man's fault, turn to yourself and study your own

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Michael Niedermayer
On Wed, Apr 05, 2017 at 07:49:23PM +0200, Nicolas George wrote: > Le sextidi 16 germinal, an CCXXV, James Almer a écrit : > > > I don't think it would cause any problems for the users in practice. > > > But we can also remove the function alltogether from the release, so > > > anybody who want's

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/hevc_parse: check for parameter set decoding failure

2017-04-05 Thread Hendrik Leppkes
On Wed, Apr 5, 2017 at 11:40 PM, James Almer wrote: > On 4/3/2017 10:46 AM, James Almer wrote: >> On 4/3/2017 7:00 AM, Michael Niedermayer wrote: >>> On Sun, Apr 02, 2017 at 10:45:41PM -0300, James Almer wrote: Signed-off-by: James Almer ---

Re: [FFmpeg-devel] [PATCH v2] avformat/ftp: Solve a crash bug when network occur a exception

2017-04-05 Thread Michael Niedermayer
On Tue, Apr 04, 2017 at 10:12:19PM +0800, F1 wrote: > This fixes a proble where ffmpeg would cause crash to do a seek when the > network disconnect. > The log like this: > 01-01 10:53:03.441 6580 6580 F DEBUG : backtrace: > 01-01 10:53:03.441 6580 6580 F DEBUG : #00 pc 0002942e >

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/hevc_parse: check for parameter set decoding failure

2017-04-05 Thread James Almer
On 4/3/2017 10:46 AM, James Almer wrote: > On 4/3/2017 7:00 AM, Michael Niedermayer wrote: >> On Sun, Apr 02, 2017 at 10:45:41PM -0300, James Almer wrote: >>> Signed-off-by: James Almer >>> --- >>> libavcodec/hevc_parse.c | 32 +--- >>> 1 file

Re: [FFmpeg-devel] [PATCH v2] lavf: use the new bitstream filter for extracting extradata

2017-04-05 Thread James Almer
On 4/1/2017 9:03 PM, James Almer wrote: > This merges commits 8e2ea691351c5079cdab245ff7bfa5c0f3e3bfe4 and > 096a8effa3f8f3455292c958c3ed07e798def7bd by Anton Khirnov, with the > following change: > > - extract_extradata_check() is added to know if the codec is supported > by the bsf before

Re: [FFmpeg-devel] [PATCH] Build fix for MIPS

2017-04-05 Thread Ronald S. Bultje
Hi, On Wed, Apr 5, 2017 at 8:38 AM, Shivraj Patil wrote: > Hi, > > > > Updated the patch as per comments. > > As hevcpred_init_mips.c needs definition of HAVE_MSA and av_cold, now I > have included config.h & libavutil/attributes.h in this file. > Patch LGTM. I'll

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/h264: change RETs into REP_RETs where appropriate

2017-04-05 Thread Henrik Gramner
On Wed, Apr 5, 2017 at 3:53 AM, James Darnley wrote: > call h264_idct_add8_mmx_plane > -RET > +RET ; TODO: check rep ret after a function call call followed by RET should be replaced by the TAIL_CALL macro instead which outputs a jmp instruction if there's

[FFmpeg-devel] [PATCH] libavformat/mov: Fix memory leak, need to free the chapter tracks array

2017-04-05 Thread Thierry Foucu
--- libavformat/mov.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 90bc2499da..f2296f8917 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -5794,6 +5794,7 @@ static int mov_read_close(AVFormatContext *s)

Re: [FFmpeg-devel] [PATCH] flvdec: option for dropping negative CTS frames Initial frames with negative pts can produce video/audio desynchronization when a decoder is not prepared to handle negative

2017-04-05 Thread Felipe Astroza
2017-04-05 15:35 GMT-03:00 wm4 : > On Wed, 5 Apr 2017 14:29:30 -0300 > fel...@astroza.cl wrote: > > > From: Felipe Astroza > > > > Signed-off-by: Felipe Astroza > > --- > > libavformat/flvdec.c | 14 +++--- > > 1 file

[FFmpeg-devel] [PATCH 2/2] vp8: make mv_min/max thread-local if using partition threading.

2017-04-05 Thread Ronald S. Bultje
Fixes tsan warnings like this in fate-vp8-test-vector-007: WARNING: ThreadSanitizer: data race (pid=65909) Write of size 4 at 0x7d8ce088 by thread T1: #0 vp8_decode_mb_row_sliced vp8.c:2519 (ffmpeg:x86_64+0x100995ede) [..] Previous write of size 4 at 0x7d8ce088 by thread T2:

[FFmpeg-devel] [PATCH 1/2] vp8: make wait/thread_mb_pos atomic.

2017-04-05 Thread Ronald S. Bultje
Fixes tsan warnings like this in fate-vp8-test-vector-007: WARNING: ThreadSanitizer: data race (pid=3590) Write of size 4 at 0x7d8ce07c by thread T2: #0 decode_mb_row_no_filter src/libavcodec/vp8.c:2330 (ffmpeg+0x00ffb59e) [..] Previous write of size 4 at 0x7d8ce07c by thread

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/h264: change RETs into REP_RETs where appropriate

2017-04-05 Thread James Darnley
On 2017-04-05 05:33, James Almer wrote: > On 4/4/2017 10:53 PM, James Darnley wrote: >> --- >> libavcodec/x86/h264_idct.asm | 12 ++-- >> 1 file changed, 6 insertions(+), 6 deletions(-) >> >> diff --git a/libavcodec/x86/h264_idct.asm b/libavcodec/x86/h264_idct.asm >> index

Re: [FFmpeg-devel] [PATCH] pthread_frame: allow per-field ThreadFrame owners.

2017-04-05 Thread Ronald S. Bultje
Hi, On Mon, Apr 3, 2017 at 10:24 AM, Ronald S. Bultje wrote: > This tries to handle cases where separate invocations of decode_frame() > (each running in separate threads) write to respective fields in the > same AVFrame->data[]. Having per-field owners makes interaction

Re: [FFmpeg-devel] [PATCH] huffyuv: assign correct per-thread avctx pointer to HYuvContext::avctx.

2017-04-05 Thread Ronald S. Bultje
Hi, On Wed, Apr 5, 2017 at 3:29 PM, Michael Niedermayer wrote: > On Mon, Apr 03, 2017 at 10:28:33PM -0400, Ronald S. Bultje wrote: > > Fixes the following tsan warning when running fate-vsynth_lena-ffvhuff: > > > > WARNING: ThreadSanitizer: data race (pid=6484) > >

Re: [FFmpeg-devel] [PATCH] huffyuv: assign correct per-thread avctx pointer to HYuvContext::avctx.

2017-04-05 Thread Michael Niedermayer
On Mon, Apr 03, 2017 at 10:28:33PM -0400, Ronald S. Bultje wrote: > Fixes the following tsan warning when running fate-vsynth_lena-ffvhuff: > > WARNING: ThreadSanitizer: data race (pid=6484) > Write of size 8 at 0x7d64000154b8 by main thread (mutexes: write M1331): > #0

Re: [FFmpeg-devel] [PATCH 1/3] mjpegenc_common: check for codec ID before using avctx->priv_data

2017-04-05 Thread Michael Niedermayer
On Mon, Apr 03, 2017 at 09:13:28PM +0100, Rostislav Pehlivanov wrote: > When coding lossless jpeg the priv context will be pointing to LJpegEncContext > rather than MpegEncContext, which the function expects. > > Signed-off-by: Rostislav Pehlivanov > --- >

Re: [FFmpeg-devel] [PATCH] mjpegenc: enable optimal huffman coding by default

2017-04-05 Thread Michael Niedermayer
On Tue, Apr 04, 2017 at 04:10:39PM +0200, Michael Niedermayer wrote: > On Tue, Apr 04, 2017 at 03:59:28PM +0200, Michael Niedermayer wrote: > > On Tue, Apr 04, 2017 at 11:00:23AM +0100, Rostislav Pehlivanov wrote: > > > On 4 April 2017 at 02:54, Michael Niedermayer > > >

[FFmpeg-devel] [PATCH] x86/idctdsp_init: reindent.

2017-04-05 Thread Ronald S. Bultje
--- libavcodec/x86/idctdsp_init.c | 30 +++--- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/libavcodec/x86/idctdsp_init.c b/libavcodec/x86/idctdsp_init.c index 3f078e8..fd5ef3f 100644 --- a/libavcodec/x86/idctdsp_init.c +++

[FFmpeg-devel] [PATCH] x86/simple_idct: add explicit sse2 simple_idct_put/add versions.

2017-04-05 Thread Ronald S. Bultje
These use the mmx IDCT, but sse2 put/add_pixels_clamped implementations. This way we don't need to use the ff_put/add_pixels_clamped function pointers. --- libavcodec/x86/idctdsp_init.c | 38 ++ libavcodec/x86/simple_idct.c | 15 +--

[FFmpeg-devel] [PATCH] cavs: add a sse2 idct implementation.

2017-04-05 Thread Ronald S. Bultje
This makes using the function pointer ff_add_pixels_clamped() unnecessary, since we always know what the best implementation is at compile-time. --- libavcodec/x86/cavsdsp.c| 15 +- libavcodec/x86/cavsidct.asm | 48 - 2 files changed, 61

Re: [FFmpeg-devel] [PATCH] flvdec: option for dropping negative CTS frames Initial frames with negative pts can produce video/audio desynchronization when a decoder is not prepared to handle negative

2017-04-05 Thread wm4
On Wed, 5 Apr 2017 14:29:30 -0300 fel...@astroza.cl wrote: > From: Felipe Astroza > > Signed-off-by: Felipe Astroza > --- > libavformat/flvdec.c | 14 +++--- > 1 file changed, 11 insertions(+), 3 deletions(-) > > diff --git

[FFmpeg-devel] [PATCH] ffprobe: only use custom logging callback if -show_log is set

2017-04-05 Thread Marton Balint
The custom callback can cause significant CPU usage on Windows for some large files with many index entries for some reason. Signed-off-by: Marton Balint --- ffprobe.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ffprobe.c b/ffprobe.c index

Re: [FFmpeg-devel] [PATCH] vf_framestep: add blend parameter for motion blur effect

2017-04-05 Thread Michael Niedermayer
On Wed, Apr 05, 2017 at 02:00:28PM +0100, Matthias C. M. Troffaes wrote: > --- > Changelog | 1 + > doc/filters.texi | 7 ++ > libavfilter/vf_framestep.c| 242 > ++ > tests/fate/filter-video.mak | 5

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Steven Liu
2017-04-06 1:49 GMT+08:00 Nicolas George : > Le sextidi 16 germinal, an CCXXV, James Almer a écrit : > > > I don't think it would cause any problems for the users in practice. > > > But we can also remove the function alltogether from the release, so > > > anybody who want's to

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread James Almer
On 4/5/2017 2:49 PM, Nicolas George wrote: > Le sextidi 16 germinal, an CCXXV, James Almer a écrit : >>> I don't think it would cause any problems for the users in practice. >>> But we can also remove the function alltogether from the release, so >>> anybody who want's to use the function (with

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Nicolas George
Le sextidi 16 germinal, an CCXXV, James Almer a écrit : > > I don't think it would cause any problems for the users in practice. > > But we can also remove the function alltogether from the release, so > > anybody who want's to use the function (with the new name) will only > > have to check for a

Re: [FFmpeg-devel] [PATCHv 4] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Nicolas George
Le septidi 17 germinal, an CCXXV, Steven Liu a écrit : > This patch just remove the rename operation base on previous patch. Please hold your horses! Regards, -- Nicolas George ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread James Almer
On 4/5/2017 2:38 PM, Marton Balint wrote: > > > On Wed, 5 Apr 2017, James Almer wrote: > >> On 4/5/2017 1:49 PM, Marton Balint wrote: >>> >>> >>> On Wed, 5 Apr 2017, James Almer wrote: >>> On 4/5/2017 11:05 AM, Steven Liu wrote: > 2017-04-03 20:32 GMT+08:00 Nicolas George

Re: [FFmpeg-devel] [PATCHv 4] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Steven Liu
2017-04-06 1:39 GMT+08:00 Steven Liu : > Use AVBprint to implement av_strreplace > add av_strreplace test case TEST_STRREPLACE > > Signed-off-by: Steven Liu > --- > libavutil/avstring.c | 74 +++--- > >

Re: [FFmpeg-devel] FFmpeg 3.3

2017-04-05 Thread Nicolas George
Le sextidi 16 germinal, an CCXXV, James Almer a écrit : > Apparently, av_strreplace didn't even get a version bump or an > APIChanges line. This whole situation has been was overall pretty > sloppy. I do not see the point of throwing even more blame around; what is done is done. > I don't know

[FFmpeg-devel] [PATCHv 4] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Steven Liu
Use AVBprint to implement av_strreplace add av_strreplace test case TEST_STRREPLACE Signed-off-by: Steven Liu --- libavutil/avstring.c | 74 +++--- libavutil/tests/avstring.c | 16 ++ 2 files changed, 26 insertions(+),

Re: [FFmpeg-devel] [PATCH 4/6] cavs: add a sse2 idct implementation.

2017-04-05 Thread Michael Niedermayer
On Tue, Apr 04, 2017 at 12:48:16PM -0400, Ronald S. Bultje wrote: > This makes using the function pointer ff_add_pixels_clamped() unnecessary, > since we always know what the best implementation is at compile-time. > --- > libavcodec/x86/cavsdsp.c| 15 +- >

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Marton Balint
On Wed, 5 Apr 2017, James Almer wrote: On 4/5/2017 1:49 PM, Marton Balint wrote: On Wed, 5 Apr 2017, James Almer wrote: On 4/5/2017 11:05 AM, Steven Liu wrote: 2017-04-03 20:32 GMT+08:00 Nicolas George : Le quartidi 14 germinal, an CCXXV, Steven Liu a écrit : change

Re: [FFmpeg-devel] FFmpeg 3.3

2017-04-05 Thread James Almer
On 4/5/2017 2:18 PM, Nicolas George wrote: > Le quartidi 24 ventôse, an CCXXV, Michael Niedermayer a écrit : >> are there any issues/tickets that block making 3.3 ? > > There is the issue of av_strreplace() / av_strireplace() that needs to > be decided and then possibly backported. > > Regardss,

[FFmpeg-devel] [PATCH] flvdec: option for dropping negative CTS frames Initial frames with negative pts can produce video/audio desynchronization when a decoder is not prepared to handle negative pts.

2017-04-05 Thread felipe
From: Felipe Astroza Signed-off-by: Felipe Astroza --- libavformat/flvdec.c | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 3959a36..1556fe0 100644 ---

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Nicolas George
Le sextidi 16 germinal, an CCXXV, James Almer a écrit : > Library versions and feature sets in diverging branches. When you > branch you do a feature freeze. I do not agree with that. The delay between branching and tagging the release has exactly the purpose of fixing the big mistakes that were

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread James Almer
On 4/5/2017 1:49 PM, Marton Balint wrote: > > > On Wed, 5 Apr 2017, James Almer wrote: > >> On 4/5/2017 11:05 AM, Steven Liu wrote: >>> 2017-04-03 20:32 GMT+08:00 Nicolas George : >>> Le quartidi 14 germinal, an CCXXV, Steven Liu a écrit : > change name from

Re: [FFmpeg-devel] FFmpeg 3.3

2017-04-05 Thread Nicolas George
Le quartidi 24 ventôse, an CCXXV, Michael Niedermayer a écrit : > are there any issues/tickets that block making 3.3 ? There is the issue of av_strreplace() / av_strireplace() that needs to be decided and then possibly backported. Regardss, -- Nicolas George

Re: [FFmpeg-devel] [PATCH] avfilter/af_loudnorm: do not upsample during second-pass linear normalization

2017-04-05 Thread Kyle Swanson
On Tue, Apr 4, 2017 at 7:14 AM, Kyle Swanson wrote: > Hi, > > > On Sun, Apr 2, 2017 at 6:32 PM, Kyle Swanson wrote: > >> Signed-off-by: Kyle Swanson >> --- >> libavfilter/af_loudnorm.c | 58 +++--- >> - >> 1 file

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Nicolas George
Le sextidi 16 germinal, an CCXXV, James Almer a écrit : > You can't rename the function. It's already in the 3.3 branch. AFAICS, it is only a branch yet, so I see no reason not to push this, provided it is backported to the branch and done before the actual release. Thus, I think this discussion

Re: [FFmpeg-devel] [PATCH] mpegvideo_enc: disable optimized huffman coding with AMV or slice threads

2017-04-05 Thread Michael Niedermayer
On Tue, Apr 04, 2017 at 10:58:37AM +0100, Rostislav Pehlivanov wrote: > Doesn't work yet with slice threading and won't work with AMV. > --- > libavcodec/mpegvideo_enc.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c > index

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Marton Balint
On Wed, 5 Apr 2017, James Almer wrote: On 4/5/2017 11:05 AM, Steven Liu wrote: 2017-04-03 20:32 GMT+08:00 Nicolas George : Le quartidi 14 germinal, an CCXXV, Steven Liu a écrit : change name from av_strreplace to av_strireplace Use AVBprint to implement av_strireplace add

Re: [FFmpeg-devel] [PATCH v4 2/2] rtp: rfc4175: add handler for YCbCr-4:2:2

2017-04-05 Thread Rostislav Pehlivanov
On 31 March 2017 at 16:36, Damien Riegel wrote: > This adds partial support for the RFC 4175 (raw video over RTP). The > only supported formats are the YCbCr-4:2:2 8 bit because it's natively > supported by FFmpeg with pixel format UYVY, and 10 bit which

Re: [FFmpeg-devel] [PATCH v4 1/2] codec: bitpacked: add decoder

2017-04-05 Thread Rostislav Pehlivanov
On 4 April 2017 at 18:33, Damien Riegel wrote: > Hi, > > On Fri, Mar 31, 2017 at 07:23:28PM +0100, Rostislav Pehlivanov wrote: > > On 31 March 2017 at 18:11, Kieran Kunhya wrote: > > > > > On Fri, 31 Mar 2017 at 17:57 Rostislav Pehlivanov

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread James Almer
On 4/5/2017 11:05 AM, Steven Liu wrote: > 2017-04-03 20:32 GMT+08:00 Nicolas George : > >> Le quartidi 14 germinal, an CCXXV, Steven Liu a écrit : >>> change name from av_strreplace to av_strireplace >>> Use AVBprint to implement av_strireplace >>> add av_strireplace test case

Re: [FFmpeg-devel] [PATCH v3] avutil/avstring: improve av_strreplace implement

2017-04-05 Thread Steven Liu
2017-04-03 20:32 GMT+08:00 Nicolas George : > Le quartidi 14 germinal, an CCXXV, Steven Liu a écrit : > > change name from av_strreplace to av_strireplace > > Use AVBprint to implement av_strireplace > > add av_strireplace test case TEST_STRIREPLACE > > > > Signed-off-by: Steven

[FFmpeg-devel] [PATCH] avformat/hlsenc: add hls encrypt options

2017-04-05 Thread Steven Liu
add hls encrypt options looks like libav's libavformat/hlsenc.c Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 118 --- 1 file changed, 113 insertions(+), 5 deletions(-) diff --git a/libavformat/hlsenc.c

[FFmpeg-devel] [PATCH] vf_framestep: add blend parameter for motion blur effect

2017-04-05 Thread Matthias C. M. Troffaes
Attached a patch which adds a "blend" parameter to the framestep filter, to blend frames together at each step, for a motion blur effect. The number of frames that are blended (i.e. the exposure time, in frames) can be controlled, allowing control over the strength of the motion blur. The filter

[FFmpeg-devel] [PATCH] vf_framestep: add blend parameter for motion blur effect

2017-04-05 Thread Matthias C. M. Troffaes
--- Changelog | 1 + doc/filters.texi | 7 ++ libavfilter/vf_framestep.c| 242 ++ tests/fate/filter-video.mak | 5 + tests/ref/fate/filter-framestep-1 | 17 +++ tests/ref/fate/filter-framestep-2 |

Re: [FFmpeg-devel] [PATCH] Build fix for MIPS

2017-04-05 Thread Shivraj Patil
Hi, Updated the patch as per comments. As hevcpred_init_mips.c needs definition of HAVE_MSA and av_cold, now I have included config.h & libavutil/attributes.h in this file. Thanks, Shivraj From: Ronald S. Bultje [mailto:rsbul...@gmail.com] Sent: 04 April 2017 17:47 To: Shivraj Patil Cc:

Re: [FFmpeg-devel] [PATCH 2/5] avcodec/h264: change some labels to be macro-local

2017-04-05 Thread Ronald S. Bultje
Hi, On Tue, Apr 4, 2017 at 9:53 PM, James Darnley wrote: > The labels get stripped leading to (slightly) nicer disassembly from > objdump. > [..] > -jz .cycle%1end > +jz %%skip Can you preserve the leading dot? I don't mind the %%skip, but please make it .%%skip.

Re: [FFmpeg-devel] [PATCH 5/6] x86/simple_idct: add explicit sse2 simple_idct_put/add versions.

2017-04-05 Thread Ronald S. Bultje
Hi, On Tue, Apr 4, 2017 at 9:54 PM, Michael Niedermayer wrote: > if the idct depends on external asm then it would need to be under > HAVE_EXTERNAL_*, you are correct. Also that is ugly It's temporary, I think James/Kieran were talking about converting the IDCT to yasm

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '5f102a9559099429826e84758b8b5182244c52db'

2017-04-05 Thread wm4
On Wed, 5 Apr 2017 10:54:38 +0200 Michael Niedermayer wrote: > On Wed, Apr 05, 2017 at 12:31:24AM -0300, James Almer wrote: > > On 4/4/2017 11:12 PM, Michael Niedermayer wrote: > > > On Tue, Apr 04, 2017 at 11:44:21AM +0200, Clément Bœsch wrote: > > >> ffmpeg |

Re: [FFmpeg-devel] [PATCH v2 2/2] avfilter/interlace: add complex vertical low-pass filter

2017-04-05 Thread Thomas Mundt
>>>Thomas Mundt schrieb am Do, 30.3.2017: >>>Lou Logan schrieb am Do, 30.3.2017: >> On Mon, 13 Mar 2017 16:23:46 + (UTC) >> Thomas Mundt wrote: >> >> [...] >>> index 09ca4d3..0b5b858 100644 >>> --- a/libavfilter/vf_tinterlace.c >>> +++

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '5f102a9559099429826e84758b8b5182244c52db'

2017-04-05 Thread Michael Niedermayer
On Wed, Apr 05, 2017 at 12:31:24AM -0300, James Almer wrote: > On 4/4/2017 11:12 PM, Michael Niedermayer wrote: > > On Tue, Apr 04, 2017 at 11:44:21AM +0200, Clément Bœsch wrote: > >> ffmpeg | branch: master | Clément Bœsch | Tue Apr 4 > >> 11:44:45 2017 +0200|

Re: [FFmpeg-devel] [PATCH] mpegvideo_enc: disable optimized huffman coding with AMV or slice threads

2017-04-05 Thread Tobias Rapp
On 04.04.2017 11:58, Rostislav Pehlivanov wrote: Doesn't work yet with slice threading and won't work with AMV. --- libavcodec/mpegvideo_enc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 71a858fc72..db241c82f0 100644 ---