Re: [FFmpeg-devel] [PATCH 1/2] avcodec, avformat: deprecate anything related to side data merging

2017-03-20 Thread wm4
On Thu, 16 Mar 2017 05:20:51 +0100 wm4 wrote: > This patch deprecates anything that has to do with merging/splitting Review comments applied and pushed both patches. This doesn't change anything yet (other than adding deprecations) - bumping the ABI/API correctly is up to people in the future. _

Re: [FFmpeg-devel] [PATCH 0/9] Merge Libav changes that allow frame theading with hwaccels

2017-03-20 Thread wm4
On Sat, 18 Mar 2017 09:55:57 +0100 wm4 wrote: > Correctness of my merge questionable. Appears to merge. > > Anton Khirnov (5): > pthread_frame: use atomics for PerThreadContext.state > pthread_frame: use atomics for frame progress > pthread_frame: properly propagate the hw frame context ac

Re: [FFmpeg-devel] [PATCH] examples/vaapi_dec: Add a VA-API hwaccel decoding example

2017-03-20 Thread wm4
On Tue, 21 Mar 2017 12:45:26 +0800 Jun Zhao wrote: > From 6b56c541ed7dd271ad0aa6eb6412a8427f009525 Mon Sep 17 00:00:00 2001 > From: Jun Zhao > Date: Tue, 21 Mar 2017 11:04:41 +0800 > Subject: [PATCH] examples/vaapi_dec: Add a VA-API hwaccel decoding example. > > Add a VA-API hwaccel decoding ex

Re: [FFmpeg-devel] [PATCH] swr/resample: free existing ResampleContext on reinit

2017-03-20 Thread wm4
On Mon, 20 Mar 2017 22:33:53 -0300 James Almer wrote: > Fixes memleak (See opus-testvector12 fate test). > > Signed-off-by: James Almer > --- > libswresample/resample.c | 15 --- > 1 file changed, 8 insertions(+), 7 deletions(-) > > diff --git a/libswresample/resample.c b/libswres

[FFmpeg-devel] [PATCH] examples/vaapi_dec: Add a VA-API hwaccel decoding example

2017-03-20 Thread Jun Zhao
From 6b56c541ed7dd271ad0aa6eb6412a8427f009525 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 21 Mar 2017 11:04:41 +0800 Subject: [PATCH] examples/vaapi_dec: Add a VA-API hwaccel decoding example. Add a VA-API hwaccel decoding example. Signed-off-by: Liu, Kaixuan Signed-off-by: Jun Zhao ---

[FFmpeg-devel] [PATCH] swr/resample: free existing ResampleContext on reinit

2017-03-20 Thread James Almer
Fixes memleak (See opus-testvector12 fate test). Signed-off-by: James Almer --- libswresample/resample.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/libswresample/resample.c b/libswresample/resample.c index 144b232462..ad6410142b 100644 --- a/libswresample

[FFmpeg-devel] [PATCH v4] avformat/dashdec: add dash demuxer base version

2017-03-20 Thread Steven Liu
v2 fixed: 1. from autodetect to disabled 2. from camelCase code style to ffmpeg code style 3. from RepType to AVMediaType 4. fix variable typo 5. change time value from uint32_t to uint64_t 6. removed be used once API 7. change 'time(NULL)`, except it is not 2038-safe.' to av_gettime and av_timegm

Re: [FFmpeg-devel] [PATCH 2/3] ffplay: convert to new decode API

2017-03-20 Thread wm4
On Mon, 20 Mar 2017 21:49:14 +0100 (CET) Marton Balint wrote: > On Mon, 20 Mar 2017, wm4 wrote: > > > On Sun, 19 Mar 2017 11:51:28 -0700 > > Philip Langdale wrote: > > > >> On Fri, 17 Mar 2017 19:42:07 -0700 > >> Philip Langdale wrote: > >> > >> > On Sat, 18 Mar 2017 01:51:39 +0100 (CET)

Re: [FFmpeg-devel] [PATCHv3] add signature filter for MPEG7 video signature

2017-03-20 Thread Gerion Entrup
On Dienstag, 21. März 2017 00:12:52 CET Michael Niedermayer wrote: > On Mon, Mar 20, 2017 at 02:31:46PM -0800, Lou Logan wrote: > > On Mon, 20 Mar 2017 15:23:10 +0100 > > Paul B Mahol wrote: > > > > > Then wait until someone else appears and like to commit this code. > > > > It would be easier t

[FFmpeg-devel] [PATCH 1/2] avformat/apng: fix setting frame delay when max_fps is set to no limit

2017-03-20 Thread James Almer
Signed-off-by: James Almer --- libavformat/apngdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/apngdec.c b/libavformat/apngdec.c index bb17896ee5..7a284e32c2 100644 --- a/libavformat/apngdec.c +++ b/libavformat/apngdec.c @@ -269,7 +269,7 @@ static int decode_

[FFmpeg-devel] [PATCH 2/2] avformat/apng: set max_fps to no limit by default

2017-03-20 Thread James Almer
Should fix ticket #6252 Signed-off-by: James Almer --- libavformat/apngdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/apngdec.c b/libavformat/apngdec.c index 7a284e32c2..75dcf74a0c 100644 --- a/libavformat/apngdec.c +++ b/libavformat/apngdec.c @@ -421,7 +42

[FFmpeg-devel] [PATCH 1/2] avcodec/tiff: Check geotag count for being non zero

2017-03-20 Thread Michael Niedermayer
Fixes memleak Fixes: 874/clusterfuzz-testcase-5252796175613952 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/tiff.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavc

[FFmpeg-devel] [PATCH 2/2] avcodec/pictordec: runtime error: left shift of 15 by 28 places cannot be represented in type 'int'

2017-03-20 Thread Michael Niedermayer
Fixes: 898/clusterfuzz-testcase-6149765467209728 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/pictordec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/pictor

Re: [FFmpeg-devel] [PATCH] hwcontext: fix comments for av_hwdevice_ctx_alloc()

2017-03-20 Thread Mark Thompson
On 19/03/17 07:53, Jun Zhao wrote: > From 74fa715cdc1e17ab3a59a9e3efa6ef142dd35d1a Mon Sep 17 00:00:00 2001 > From: Jun Zhao > Date: Sun, 19 Mar 2017 15:44:46 +0800 > Subject: [PATCH] hwcontext: fix comments for av_hwdevice_ctx_alloc() > > fix the wrong comments for av_hwdevice_ctx_alloc() > > S

Re: [FFmpeg-devel] [PATCHv3] add signature filter for MPEG7 video signature

2017-03-20 Thread Michael Niedermayer
On Mon, Mar 20, 2017 at 02:31:46PM -0800, Lou Logan wrote: > On Mon, 20 Mar 2017 15:23:10 +0100 > Paul B Mahol wrote: > > > Then wait until someone else appears and like to commit this code. > > It would be easier to do for a lazy commit monkey if it was rebased to > current git master: > > e

[FFmpeg-devel] [PATCH] avutil/x86inc: don't use movss in VBROADCASTSS macro when src and dst args are the same

2017-03-20 Thread James Almer
Signed-off-by: James Almer --- libavutil/x86/x86util.asm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/x86/x86util.asm b/libavutil/x86/x86util.asm index de7d2d11c1..fe9a727e22 100644 --- a/libavutil/x86/x86util.asm +++ b/libavutil/x86/x86util.asm @@ -833,7 +833,9 @@ %if cpuflag

Re: [FFmpeg-devel] Refund request for travelling costs to Chemnitz

2017-03-20 Thread Michael Niedermayer
On Mon, Mar 13, 2017 at 11:04:36AM +0100, Carl Eugen Hoyos wrote: > Hi! > > Alexander Strasser, Thilo Borgmann, Thomas Volkert and myself > represented FFmpeg at the Chemnitzer Linuxtage 2017. We showed > different filters in action on video screens, talked to guests and > other projects and as us

Re: [FFmpeg-devel] Refund request for travelling costs to Chemnitz

2017-03-20 Thread Michael Niedermayer
On Tue, Mar 14, 2017 at 10:39:02PM +0100, Thilo Borgmann wrote: > Am 14.03.17 um 22:15 schrieb Thilo Borgmann: > > Hi, > > > >> Alexander Strasser, Thilo Borgmann, Thomas Volkert and myself > >> represented FFmpeg at the Chemnitzer Linuxtage 2017. We showed > >> different filters in action on vi

Re: [FFmpeg-devel] [PATCH]lsws/input: Do not define unused functions

2017-03-20 Thread Michael Niedermayer
On Mon, Mar 13, 2017 at 10:02:22AM +0100, Carl Eugen Hoyos wrote: > 2017-03-11 13:13 GMT+01:00 Michael Niedermayer : > > On Tue, Mar 07, 2017 at 09:30:18AM +0100, Carl Eugen Hoyos wrote: > >> Hi! > >> > >> Attached patch fixes a few warnings when compiling with newer gcc. > >> > >> Please comment,

Re: [FFmpeg-devel] [PATCHv3] add signature filter for MPEG7 video signature

2017-03-20 Thread Lou Logan
On Mon, 20 Mar 2017 15:23:10 +0100 Paul B Mahol wrote: > Then wait until someone else appears and like to commit this code. It would be easier to do for a lazy commit monkey if it was rebased to current git master: error: patch failed: Changelog:12 error: Changelog: patch does not apply e

Re: [FFmpeg-devel] [PATCH v3] avformat/dashdec: add dash demuxer base version

2017-03-20 Thread Michael Niedermayer
On Mon, Mar 20, 2017 at 10:29:48PM +0800, Steven Liu wrote: [...] > +static int parse_mainifest_segmenttimeline(AVFormatContext *s, struct > representation *rep, > + xmlNodePtr fragment_timeline_node) > +{ > +xmlAttrPtr attr = NULL; > +xmlChar *val

Re: [FFmpeg-devel] [PATCH] clear s->error in avio_read

2017-03-20 Thread Fredrik Hubinette
Hopefully valid patch attached. On Mon, Mar 20, 2017 at 2:39 PM, Fredrik Hubinette wrote: > It looks like the value in s->error also comes from an earlier call to > avio_read(). > ogg_read_page tries to read 4439 bytes from the file. It has 524 bytes > already buffered. > fill_buffer() fails wi

Re: [FFmpeg-devel] [PATCH] clear s->error in avio_read

2017-03-20 Thread Fredrik Hubinette
It looks like the value in s->error also comes from an earlier call to avio_read(). ogg_read_page tries to read 4439 bytes from the file. It has 524 bytes already buffered. fill_buffer() fails with an EIO, but because of the buffered bytes, avio_read() returns 524 and leaves the EIO in s->error.

Re: [FFmpeg-devel] [PATCH v3] avformat/dashdec: add dash demuxer base version

2017-03-20 Thread Ricardo Constantino
Also, 'manifest' seems to be typo'd through the patch to 'mainifest'. Not sure if intended. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH v3] avformat/dashdec: add dash demuxer base version

2017-03-20 Thread Clément Bœsch
On Mon, Mar 20, 2017 at 10:29:48PM +0800, Steven Liu wrote: > v2 fixed: > 1. from autodetect to disabled > 2. from camelCase code style to ffmpeg code style > 3. from RepType to AVMediaType > 4. fix variable typo > 5. change time value from uint32_t to uint64_t > 6. removed be used once API > 7. ch

Re: [FFmpeg-devel] [PATCH] clear s->error in avio_read

2017-03-20 Thread Fredrik Hubinette
On Mon, Mar 20, 2017 at 1:35 PM, Michael Niedermayer wrote: > On Mon, Mar 20, 2017 at 10:21:08AM -0700, Fredrik Hubinette wrote: > > In some cases (when parsing OGG) non-fatal errors can happen, which > > will cause s->error to be set. In most cases, this is not a problem > beucase > > s->error i

[FFmpeg-devel] [PATCHv2 2/3] ffplay: convert to new decode API

2017-03-20 Thread Marton Balint
Since subtitles are not yet supported with the new API, CODEC_CAP_DELAY subtitle codecs (only libzvbi so far) may loose the last few buffered frames in the end of the stream. The impact of this is so limited, it seemded better to accept it than losing the simplification benefits of the new API. S

Re: [FFmpeg-devel] [PATCH 2/3] ffplay: convert to new decode API

2017-03-20 Thread Marton Balint
On Mon, 20 Mar 2017, wm4 wrote: On Sun, 19 Mar 2017 11:51:28 -0700 Philip Langdale wrote: On Fri, 17 Mar 2017 19:42:07 -0700 Philip Langdale wrote: > On Sat, 18 Mar 2017 01:51:39 +0100 (CET) > Marton Balint wrote: > > > On Sat, 18 Mar 2017, wal...@free.fr wrote: > > > > > The logs: ht

Re: [FFmpeg-devel] [PATCH] clear s->error in avio_read

2017-03-20 Thread Michael Niedermayer
On Mon, Mar 20, 2017 at 10:21:08AM -0700, Fredrik Hubinette wrote: > In some cases (when parsing OGG) non-fatal errors can happen, which > will cause s->error to be set. In most cases, this is not a problem beucase > s->error is not checked unless an actual error has occurred. However, > when avio

[FFmpeg-devel] [PATCH] rtmpproto: send swfverify value as swfurl if latter is unused

2017-03-20 Thread Ricardo Constantino
Replicates lavf/librtmp.c behavior in L149-156 and rtmpdump's behavior with "--swfVfy " passing the url to swfUrl. Fixes trac ticket #5549. --- libavformat/rtmpproto.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c inde

Re: [FFmpeg-devel] [PATCH] aacsbr: Turnoff in the event of over read.

2017-03-20 Thread Rostislav Pehlivanov
On 20 March 2017 at 19:52, Alex Converse wrote: > Aliased compressed AAC bytes are almost certainly not meaningful SBR > data. In the wild this causes harsh artifacts switching HE-AAC streams > that don't have SBR headers aligned with segment boundaries. > > Turning off SBR falls back to a defaul

[FFmpeg-devel] [PATCH] aacsbr: Turnoff in the event of over read.

2017-03-20 Thread Alex Converse
Aliased compressed AAC bytes are almost certainly not meaningful SBR data. In the wild this causes harsh artifacts switching HE-AAC streams that don't have SBR headers aligned with segment boundaries. Turning off SBR falls back to a default set of upsampling parameters that can function as a sort

Re: [FFmpeg-devel] [PATCH] vf_drawtext: Fix memory leak

2017-03-20 Thread Clément Bœsch
On Mon, Mar 20, 2017 at 07:42:58PM +, Kieran Kunhya wrote: > $subj LGTM -- Clément B. signature.asc Description: PGP signature ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] vf_drawtext: Fix memory leak

2017-03-20 Thread Kieran Kunhya
$subj 0001-vf_drawtext-Fix-memory-leak.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] libavcodec/dnxhd: add support more dnxhr header prefixes

2017-03-20 Thread Paul B Mahol
On 7/12/16, Mark Reid wrote: > Hi, > The following patch adds support for detecting more dnxhr header prefixes. > > After generating many random resolution dnxhr files via quicktime, > I have deduced that second 4 bytes in prefix is the header size or > data offset to the end of the scan table. On

[FFmpeg-devel] [PATCH] clear s->error in avio_read

2017-03-20 Thread Fredrik Hubinette
In some cases (when parsing OGG) non-fatal errors can happen, which will cause s->error to be set. In most cases, this is not a problem beucase s->error is not checked unless an actual error has occurred. However, when avio_read() fails to read more bytes, it checks s->error to decide if it just r

Re: [FFmpeg-devel] [PATCH] configure: error out if jni is enabled and not found

2017-03-20 Thread Matthieu Bouron
On Sat, Mar 18, 2017 at 12:27:20PM +0100, Matthieu Bouron wrote: > On Wed, Mar 15, 2017 at 03:29:08PM +0100, Matthieu Bouron wrote: > > --- > > configure | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/configure b/configure > > index 1e2e774950..a4890ca0d3 100755 >

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

2017-03-20 Thread tiejun.peng
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 /system/lib/libavformat.so (ffurl_write+9) Signed-off-by: tiejun.p

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/wavpack: Check shift

2017-03-20 Thread Michael Niedermayer
On Mon, Mar 20, 2017 at 07:59:04AM +0100, Clément Bœsch wrote: > On Mon, Mar 20, 2017 at 02:21:50AM +0100, Michael Niedermayer wrote: > > Fixes: runtime error: shift exponent 255 is too large for 32-bit type > > 'unsigned int' > > Fixes: 894/clusterfuzz-testcase-4841537823309824 > > > > Found-by:

[FFmpeg-devel] [PATCH v3] avformat/dashdec: add dash demuxer base version

2017-03-20 Thread Steven Liu
v2 fixed: 1. from autodetect to disabled 2. from camelCase code style to ffmpeg code style 3. from RepType to AVMediaType 4. fix variable typo 5. change time value from uint32_t to uint64_t 6. removed be used once API 7. change 'time(NULL)`, except it is not 2038-safe.' to av_gettime and av_timegm

Re: [FFmpeg-devel] [PATCHv3] add signature filter for MPEG7 video signature

2017-03-20 Thread Paul B Mahol
On 3/20/17, Dave Rice wrote: > >> On Mar 20, 2017, at 10:13 AM, Paul B Mahol wrote: >> >> On 3/20/17, Dave Rice wrote: >>> On Jan 6, 2017, at 1:34 PM, Gerion Entrup >>> wrote: On Donnerstag, 5. Januar 2017 02:26:23 CET Michael Niedermayer wrote: > On Wed, Jan 04, 2017 at 05:05:41P

Re: [FFmpeg-devel] [PATCHv3] add signature filter for MPEG7 video signature

2017-03-20 Thread Dave Rice
> On Mar 20, 2017, at 10:13 AM, Paul B Mahol wrote: > > On 3/20/17, Dave Rice wrote: >> On Jan 6, 2017, at 1:34 PM, Gerion Entrup >> wrote: >>> >>> On Donnerstag, 5. Januar 2017 02:26:23 CET Michael Niedermayer wrote: On Wed, Jan 04, 2017 at 05:05:41PM +0100, Gerion Entrup wrote: > O

Re: [FFmpeg-devel] [PATCHv3] add signature filter for MPEG7 video signature

2017-03-20 Thread Paul B Mahol
On 3/20/17, Dave Rice wrote: > On Jan 6, 2017, at 1:34 PM, Gerion Entrup > wrote: >> >> On Donnerstag, 5. Januar 2017 02:26:23 CET Michael Niedermayer wrote: >>> On Wed, Jan 04, 2017 at 05:05:41PM +0100, Gerion Entrup wrote: On Dienstag, 3. Januar 2017 16:58:32 CET Moritz Barsnick wrote: >>>

Re: [FFmpeg-devel] [PATCH] Added AVX2 implementation for VP8 decoder (ff_pred16x16_tm_vp8_8_avx2)

2017-03-20 Thread Ronald S. Bultje
Hi, On Sat, Mar 18, 2017 at 3:50 PM, Mirage Abeysekara wrote: > --- > libavcodec/x86/h264_intrapred.asm| 37 ++ > ++ > libavcodec/x86/h264_intrapred_init.c | 7 +++ > 2 files changed, 44 insertions(+) > > diff --git a/libavcodec/x86/h264_intrapred.asm b/

Re: [FFmpeg-devel] [PATCH] wmavoice: remove unused or write-only variables.

2017-03-20 Thread Ronald S. Bultje
Hi, On Tue, Dec 27, 2016 at 10:04 AM, Ronald S. Bultje wrote: > --- > libavcodec/wmavoice.c | 44 +--- > 1 file changed, 17 insertions(+), 27 deletions(-) > > diff --git a/libavcodec/wmavoice.c b/libavcodec/wmavoice.c > index cd5958c..4b283e3 100644 > ---

Re: [FFmpeg-devel] [PATCH] avcodec/vp9: avx2 implementation of ipred_dl_16x16_16

2017-03-20 Thread Ronald S. Bultje
Hi, On Sun, Mar 12, 2017 at 6:06 PM, Ilia wrote: > vp9_diag_downleft_16x16_10bpp_c: 263.0 > vp9_diag_downleft_16x16_10bpp_sse2: 44.7 > vp9_diag_downleft_16x16_10bpp_ssse3: 32.5 > vp9_diag_downleft_16x16_10bpp_avx: 31.9 > vp9_diag_downleft_16x16_10bpp_avx2: 25.7 > vp9_diag_downleft_16x16_12bpp_c:

Re: [FFmpeg-devel] [PATCHv3] add signature filter for MPEG7 video signature

2017-03-20 Thread Dave Rice
On Jan 6, 2017, at 1:34 PM, Gerion Entrup wrote: > > On Donnerstag, 5. Januar 2017 02:26:23 CET Michael Niedermayer wrote: >> On Wed, Jan 04, 2017 at 05:05:41PM +0100, Gerion Entrup wrote: >>> On Dienstag, 3. Januar 2017 16:58:32 CET Moritz Barsnick wrote: >> The English opposite of "fine" is

Re: [FFmpeg-devel] [PATCH v2] avformat/dashdec: add dash demuxer base version

2017-03-20 Thread Moritz Barsnick
On Mon, Mar 20, 2017 at 20:36:19 +0800, Steven Liu wrote: >--enable-libxvid enable Xvid encoding via xvidcore, > native MPEG-4/Xvid encoder exists [no] > + --enabled-xml2 enable XML parsing using the C library libxml2 > [no] ^ I'm sur

[FFmpeg-devel] [PATCH v2] avformat/dashdec: add dash demuxer base version

2017-03-20 Thread Steven Liu
fixed: 1. from autodetect to disabled 2. from camelCase code style to ffmpeg code style 3. from RepType to AVMediaType 4. fix variable typo 5. change time value from uint32_t to uint64_t 6. removed be used once API 7. change 'time(NULL)`, except it is not 2038-safe.' to av_gettime and av_timegm 8.

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Andrey Turkin
I'd like to use this opportunity to remind of http://ffmpeg.org/pipermail/ffmpeg-devel/2017-February/207513.html 2017-03-20 14:29 GMT+03:00 Michael Niedermayer : > On Mon, Mar 20, 2017 at 10:14:21AM +0100, Hendrik Leppkes wrote: > > On Mon, Mar 20, 2017 at 10:11 AM, Carl Eugen Hoyos > wrote: >

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Michael Niedermayer
On Mon, Mar 20, 2017 at 10:14:21AM +0100, Hendrik Leppkes wrote: > On Mon, Mar 20, 2017 at 10:11 AM, Carl Eugen Hoyos wrote: > > 2017-03-20 10:03 GMT+01:00 Hendrik Leppkes : > >> On Mon, Mar 20, 2017 at 9:59 AM, Carl Eugen Hoyos > >> wrote: > >>> 2017-03-20 9:42 GMT+01:00 Clément Bœsch : >

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-20 Thread Steven Liu
2017-03-19 18:12 GMT+08:00 Nicolas George : > Le nonidi 29 ventôse, an CCXXV, Rodger Combs a écrit : > > fragmentTimescale. > > fragment_timescale or fragment_time_scale; camelCase is not part of > FFmpeg's coding standards. > merged! > > > Use time_t or int64_t. > > Certainly not time_t. > > The

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: add dash demuxer base version

2017-03-20 Thread Steven Liu
2017-03-19 18:06 GMT+08:00 Rodger Combs : > A few initial comments inline: > > > On Mar 19, 2017, at 04:05, Steven Liu wrote: > > > > ffmpeg need a dash demuxer for demux the dash formats > > base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/ > master/tmp/ffmpeg/patches/3.2.2/0

Re: [FFmpeg-devel] [PATCH] libswscale/swscale_unscaled: fix DITHER_COPY macro

2017-03-20 Thread Mateusz Brzostek
W dniu 2017-03-20 o 10:00, Carl Eugen Hoyos pisze: > 2017-03-15 22:52 GMT+01:00 Mateusz Brzostek : >> Hello! >> >> There are 3 problems with DITHER_COPY macro in libswscale/swscale_unscaled.c: >> 1) there is overflow in dithering from 12-bit to 10-bit (output value > >> 1023); >> 2) for limit rang

Re: [FFmpeg-devel] [PATCH 2/3] ffplay: convert to new decode API

2017-03-20 Thread wallak
- Mail original - De: "wm4" À: ffmpeg-devel@ffmpeg.org Envoyé: Lundi 20 Mars 2017 04:23:43 Objet: Re: [FFmpeg-devel] [PATCH 2/3] ffplay: convert to new decode API On Sun, 19 Mar 2017 11:51:28 -0700 Philip Langdale wrote: > On Fri, 17 Mar 2017 19:42:07 -0700 > Philip Langdale wrote: >

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Clément Bœsch
On Mon, Mar 20, 2017 at 10:12:49AM +0100, Carl Eugen Hoyos wrote: > 2017-03-20 10:04 GMT+01:00 Clément Bœsch : > > >> Is there really no incentive that would make you work on subtitle > >> support in the filter chain? > > > > Yes, someone else working on the remaining 870+ commits to merge. > > Y

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Hendrik Leppkes
On Mon, Mar 20, 2017 at 10:11 AM, Carl Eugen Hoyos wrote: > 2017-03-20 10:03 GMT+01:00 Hendrik Leppkes : >> On Mon, Mar 20, 2017 at 9:59 AM, Carl Eugen Hoyos wrote: >>> 2017-03-20 9:42 GMT+01:00 Clément Bœsch : On Mon, Mar 20, 2017 at 09:38:15AM +0100, Carl Eugen Hoyos wrote: > 2017-03-2

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Carl Eugen Hoyos
2017-03-20 10:04 GMT+01:00 Clément Bœsch : >> Is there really no incentive that would make you work on subtitle >> support in the filter chain? > > Yes, someone else working on the remaining 870+ commits to merge. You told me last year you don't care what happens with those who must not be named

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Carl Eugen Hoyos
2017-03-20 10:03 GMT+01:00 Hendrik Leppkes : > On Mon, Mar 20, 2017 at 9:59 AM, Carl Eugen Hoyos wrote: >> 2017-03-20 9:42 GMT+01:00 Clément Bœsch : >>> On Mon, Mar 20, 2017 at 09:38:15AM +0100, Carl Eugen Hoyos wrote: 2017-03-20 9:35 GMT+01:00 Clément Bœsch : > On Mon, Mar 20, 2017 at 0

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Carl Eugen Hoyos
2017-03-20 10:07 GMT+01:00 wm4 : > You're invited to do something more productive as well. You mean more productive than helping users? Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Hendrik Leppkes
On Mon, Mar 20, 2017 at 9:59 AM, Carl Eugen Hoyos wrote: > 2017-03-20 9:42 GMT+01:00 Clément Bœsch : >> On Mon, Mar 20, 2017 at 09:38:15AM +0100, Carl Eugen Hoyos wrote: >>> 2017-03-20 9:35 GMT+01:00 Clément Bœsch : >>> > On Mon, Mar 20, 2017 at 09:17:36AM +0100, Carl Eugen Hoyos wrote: >>> >> 201

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread wm4
On Mon, 20 Mar 2017 09:59:24 +0100 Carl Eugen Hoyos wrote: > 2017-03-20 9:42 GMT+01:00 Clément Bœsch : > > On Mon, Mar 20, 2017 at 09:38:15AM +0100, Carl Eugen Hoyos wrote: > >> 2017-03-20 9:35 GMT+01:00 Clément Bœsch : > >> > On Mon, Mar 20, 2017 at 09:17:36AM +0100, Carl Eugen Hoyos wrote:

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Clément Bœsch
On Mon, Mar 20, 2017 at 09:59:24AM +0100, Carl Eugen Hoyos wrote: > 2017-03-20 9:42 GMT+01:00 Clément Bœsch : > > On Mon, Mar 20, 2017 at 09:38:15AM +0100, Carl Eugen Hoyos wrote: > >> 2017-03-20 9:35 GMT+01:00 Clément Bœsch : > >> > On Mon, Mar 20, 2017 at 09:17:36AM +0100, Carl Eugen Hoyos wrote:

Re: [FFmpeg-devel] [PATCH] libswscale/swscale_unscaled: fix DITHER_COPY macro

2017-03-20 Thread Carl Eugen Hoyos
2017-03-15 22:52 GMT+01:00 Mateusz Brzostek : > Hello! > > There are 3 problems with DITHER_COPY macro in libswscale/swscale_unscaled.c: > 1) there is overflow in dithering from 12-bit to 10-bit (output value > 1023); > 2) for limit range the lower limit is not respected, for example from 10-bit >

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Carl Eugen Hoyos
2017-03-20 9:42 GMT+01:00 Clément Bœsch : > On Mon, Mar 20, 2017 at 09:38:15AM +0100, Carl Eugen Hoyos wrote: >> 2017-03-20 9:35 GMT+01:00 Clément Bœsch : >> > On Mon, Mar 20, 2017 at 09:17:36AM +0100, Carl Eugen Hoyos wrote: >> >> 2017-03-20 8:57 GMT+01:00 Clément Bœsch : >> >> > ffmpeg | branch:

Re: [FFmpeg-devel] [PATCH] libavfilter/af_ambisonic.c Added File for Ambisonic Filter

2017-03-20 Thread Carl Eugen Hoyos
2017-03-13 10:15 GMT+01:00 Sanchit Sinha : > Sir, I cannot find any tabs in the code. For the future: There is a script in tools/patcheck that helps you with some basic issues. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmp

Re: [FFmpeg-devel] [PATCH] libswscale/swscale_unscaled: fix DITHER_COPY macro

2017-03-20 Thread Mateusz Brzostek
In previous patch there was missing braces {} in for (; j < length; j++) loop. Please ignore that patch. New patch with braces and without FFMIN macro. Mateusz W dniu 2017-03-18 o 21:28, Mateusz Brzostek pisze: > W dniu 2017-03-16 o 19:17, Michael Niedermayer pisze: >> On Wed, Mar 15, 2017 at

Re: [FFmpeg-devel] [PATCH 05/10] h264_idct8_add

2017-03-20 Thread Carl Eugen Hoyos
2017-03-17 14:18 GMT+01:00 James Darnley : > 1.01x faster (1069±1.9 vs. 1060±0.7 decicycles) compared with sse2 So does this patch make sense? Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-dev

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread wm4
On Mon, 20 Mar 2017 09:38:15 +0100 Carl Eugen Hoyos wrote: > 2017-03-20 9:35 GMT+01:00 Clément Bœsch : > > On Mon, Mar 20, 2017 at 09:17:36AM +0100, Carl Eugen Hoyos wrote: > >> 2017-03-20 8:57 GMT+01:00 Clément Bœsch : > >> > ffmpeg | branch: master | Clément Bœsch | Mon Mar 20 > >> > 08:5

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Clément Bœsch
On Mon, Mar 20, 2017 at 09:38:15AM +0100, Carl Eugen Hoyos wrote: > 2017-03-20 9:35 GMT+01:00 Clément Bœsch : > > On Mon, Mar 20, 2017 at 09:17:36AM +0100, Carl Eugen Hoyos wrote: > >> 2017-03-20 8:57 GMT+01:00 Clément Bœsch : > >> > ffmpeg | branch: master | Clément Bœsch | Mon Mar 20 > >> > 08:

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Carl Eugen Hoyos
2017-03-20 9:35 GMT+01:00 Clément Bœsch : > On Mon, Mar 20, 2017 at 09:17:36AM +0100, Carl Eugen Hoyos wrote: >> 2017-03-20 8:57 GMT+01:00 Clément Bœsch : >> > ffmpeg | branch: master | Clément Bœsch | Mon Mar 20 >> > 08:52:07 2017 +0100| [3835283293bfd38ba69203f4618f0f0f21377bcc] | >> > committ

Re: [FFmpeg-devel] [FFmpeg-cvslog] Merge commit '4fb311c804098d78e5ce5f527f9a9c37536d3a08'

2017-03-20 Thread Clément Bœsch
On Mon, Mar 20, 2017 at 09:17:36AM +0100, Carl Eugen Hoyos wrote: > 2017-03-20 8:57 GMT+01:00 Clément Bœsch : > > ffmpeg | branch: master | Clément Bœsch | Mon Mar 20 08:52:07 > > 2017 +0100| [3835283293bfd38ba69203f4618f0f0f21377bcc] | committer: Clément > > Bœsch > > > > Merge commit '4fb311c8

Re: [FFmpeg-devel] [PATCH 1/2] fate: add fate-sws-pixdesc-query

2017-03-20 Thread wm4
On Sun, 19 Mar 2017 15:00:55 +0100 Clément Bœsch wrote: > Test the pixel format querying within libswscale. > --- > libswscale/Makefile | 1 + > libswscale/tests/.gitignore | 1 + > libswscale/tests/pixdesc_query.c | 78 > tests/Makefile | 1 +

Re: [FFmpeg-devel] Patchset v2 for pixel format querying within swscale

2017-03-20 Thread Clément Bœsch
On Sun, Mar 19, 2017 at 03:33:38PM +0100, Clément Bœsch wrote: > This is in response to the next Libav commit I'll (partially) noop soon > (aa37d2bf45). patchset applied -- Clément B. signature.asc Description: PGP signature ___ ffmpeg-devel mailing