Re: [FFmpeg-devel] [PATCH] lavc/movtextdec.c: Avoid infinite loop on invalid data.

2016-09-27 Thread Philip Langdale
On Tue, 27 Sep 2016 19:23:20 -0700 Sasi Inguva wrote: > Signed-off-by: Sasi Inguva > --- > libavcodec/movtextdec.c | 4 > 1 file changed, 4 insertions(+) > > diff --git a/libavcodec/movtextdec.c b/libavcodec/movtextdec.c > index

Re: [FFmpeg-devel] order T-shirts

2016-09-27 Thread Steven Liu
2016-09-05 22:28 GMT+08:00 Nicolas George : > Le nonidi 19 fructidor, an CCXXIV, Ronald S. Bultje a écrit : > > I like it, I still don't have one! > > I would very much like to wear FFmpeg t-shirts on occasion too. > > Regards, > > -- > Nicolas George > >

[FFmpeg-devel] [PATCH] lavc/movtextdec.c: Avoid infinite loop on invalid data.

2016-09-27 Thread Sasi Inguva
Signed-off-by: Sasi Inguva --- libavcodec/movtextdec.c | 4 1 file changed, 4 insertions(+) diff --git a/libavcodec/movtextdec.c b/libavcodec/movtextdec.c index abf8711..a33fff7 100644 --- a/libavcodec/movtextdec.c +++ b/libavcodec/movtextdec.c @@ -471,6 +471,10 @@ static

Re: [FFmpeg-devel] [PATCH 1/2] compat/avisynth: minor update for alpha offsets

2016-09-27 Thread Stephen Hutchinson
On 9/27/2016 4:11 PM, Michael Niedermayer wrote: can you update the status for the patch(es) on https://patchwork.ffmpeg.org/project/ffmpeg/list/?submitter=49 ? so developers know what needs a review, needs to be applied and what is on hold/revovked, ... thx Done. I think I did it right,

Re: [FFmpeg-devel] [PATCH] ffprobe: don't use AVStream.codec to set decoder framerate

2016-09-27 Thread James Almer
On 9/27/2016 7:20 PM, Josh de Kock wrote: > On 27/09/2016 02:57, James Almer wrote: >> Also don't set time_base. It's deprecated for decoding and avcodec_open2() >> will overwrite it >> >> Signed-off-by: James Almer >> --- >> ffprobe.c | 5 + >> 1 file changed, 1

[FFmpeg-devel] [PATCH 2/2] avformat/matroskadec: check for more reserved values on some Colour elements

2016-09-27 Thread James Almer
Signed-off-by: James Almer --- libavformat/matroskadec.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 32b2457..a94398b 100644 --- a/libavformat/matroskadec.c +++

[FFmpeg-devel] [PATCH 1/2] avformat/matroskaenc: don't write an empty Colour master element

2016-09-27 Thread James Almer
Signed-off-by: James Almer --- libavformat/matroskaenc.c | 53 ++- 1 file changed, 34 insertions(+), 19 deletions(-) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 3eeb09b..3cbc437 100644 ---

Re: [FFmpeg-devel] [PATCH 3/3] avformat/matroskadec: set AVCodecParameters.field_order on progressive video

2016-09-27 Thread James Almer
On 9/27/2016 8:26 PM, Michael Niedermayer wrote: > On Tue, Sep 27, 2016 at 03:03:05PM -0300, James Almer wrote: >> Signed-off-by: James Almer >> --- >> libavformat/matroskadec.c | 2 ++ >> 1 file changed, 2 insertions(+) >> >> diff --git a/libavformat/matroskadec.c

Re: [FFmpeg-devel] [PATCH 3/3] avformat/matroskadec: set AVCodecParameters.field_order on progressive video

2016-09-27 Thread Michael Niedermayer
On Tue, Sep 27, 2016 at 03:03:05PM -0300, James Almer wrote: > Signed-off-by: James Almer > --- > libavformat/matroskadec.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c > index 77b8a5d..2317024 100644 > ---

Re: [FFmpeg-devel] [PATCH 2/3] avformat/matroskaenc: write the FieldOrder element for non-interlaced video

2016-09-27 Thread James Almer
On 9/27/2016 6:36 PM, Hendrik Leppkes wrote: > On Tue, Sep 27, 2016 at 11:14 PM, James Almer wrote: >> On 9/27/2016 5:56 PM, Hendrik Leppkes wrote: >>> On Tue, Sep 27, 2016 at 8:03 PM, James Almer wrote: It's listed as mandatory in

Re: [FFmpeg-devel] [PATCH] libavcodec/qdm2.c: fix warning due to misleading indentation

2016-09-27 Thread Michael Niedermayer
On Tue, Sep 27, 2016 at 09:47:32PM +0200, Adriano Pallavicino wrote: > Sure > > Adriano > > 2016-09-27 21:19 GMT+02:00 Josh de Kock : > > > On 27/09/2016 19:46, Adriano Pallavicino wrote: > > > >> --- > >> libavcodec/qdm2.c | 117 > >>

[FFmpeg-devel] [PATCH 1/2 v2] movenc: use similar logic to DASH when writing bit rate to ISML

2016-09-27 Thread Jan Ekström
This way, in case of bit rate not being set, max_bitrate will be used instead. This enables, for example, re-using max_bitrate information from the input or doing transcoding with a rate control mode that is not bit rate based. Signed-off-by: Jan Ekström ---

Re: [FFmpeg-devel] [PATCH] avformat/matroskadec: retain error codes in matroska_resync() and matroska_read_packet()

2016-09-27 Thread Michael Niedermayer
On Tue, Sep 27, 2016 at 12:00:29PM -0700, Sophia Wang wrote: > Signed-off-by: Sophia Wang > --- > libavformat/matroskadec.c | 15 +-- > 1 file changed, 9 insertions(+), 6 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint:

Re: [FFmpeg-devel] [PATCH 2/3] lavf/mov.c: Make audio timestamps strictly monotonically increasing inside an edit list.

2016-09-27 Thread Sasi Inguva
Corrected indentation. Don't know why the patch would not apply. I am attaching it as a file, if it helps. On Tue, Sep 27, 2016 at 12:02 PM, Moritz Barsnick wrote: > On Tue, Sep 27, 2016 at 09:28:13 -0700, Sasi Inguva wrote: > > if (curr_cts < edit_list_media_time

[FFmpeg-devel] [PATCH 2/3] lavf/mov.c: Make audio timestamps strictly monotonically increasing inside an edit list.

2016-09-27 Thread Sasi Inguva
Fixes gapless decoding. Adjust skip_samples field correctly in case of DISCARDed audio frames. Signed-off-by: Sasi Inguva --- libavformat/mov.c| 80 tests/ref/fate/gaplessenc-itunes-to-ipod-aac | 2 +-

Re: [FFmpeg-devel] FFmpeg 3.2

2016-09-27 Thread Lou Logan
On Tue, 27 Sep 2016 15:30:03 +0200, Michael Niedermayer wrote: > also a name needs to be choosen Plenty of suggestions from the previous release: I think Kyle had a good suggestion:

Re: [FFmpeg-devel] [PATCH] ffmpeg_vaapi: fix choice of decoder_format

2016-09-27 Thread Mark Thompson
On 27/09/16 14:23, Moritz Barsnick wrote: > The check could previously never evaluate to true, probably due to > a typo. > > Reported-By: Mihai Chindea > Signed-off-by: Moritz Barsnick > --- > As discovered and suggested by Mihai Chindea, >

Re: [FFmpeg-devel] [PATCH] ffprobe: don't use AVStream.codec to set decoder framerate

2016-09-27 Thread Josh de Kock
On 27/09/2016 02:57, James Almer wrote: Also don't set time_base. It's deprecated for decoding and avcodec_open2() will overwrite it Signed-off-by: James Almer --- ffprobe.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ffprobe.c b/ffprobe.c index

Re: [FFmpeg-devel] [PATCH 2/4] V11 - SCTE-35 extraction from mpegts

2016-09-27 Thread Marton Balint
On Tue, 27 Sep 2016, Carlos Fernandez Sanz wrote: From: Carlos Fernandez Signed-off-by: Carlos Fernandez --- libavformat/mpegts.c | 48 ++-- 1 file changed, 46 insertions(+), 2 deletions(-) [...]

Re: [FFmpeg-devel] [PATCH] libavcodec/qdm2.c: fix warning due to misleading indentation

2016-09-27 Thread Josh de Kock
On 27/09/2016 20:47, Adriano Pallavicino wrote: Sure Adriano This patch looks good to me, just going to give it a little time for others to comment. -- Josh ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH 2/4] V11 - SCTE-35 extraction from mpegts

2016-09-27 Thread Marton Balint
On Tue, 27 Sep 2016, Carlos Fernandez Sanz wrote: From: Carlos Fernandez Signed-off-by: Carlos Fernandez --- libavformat/mpegts.c | 48 ++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff

Re: [FFmpeg-devel] [PATCH] cmdutils: improve `-buildconf` for shell substitution

2016-09-27 Thread Kyle Swanson
On Tue, Sep 27, 2016 at 4:37 PM, Clément Bœsch wrote: > > On Tue, Sep 27, 2016 at 04:25:52PM -0500, Kyle Swanson wrote: > > Hi, > > > > Always thought something like this might be useful, but I finally took the > > time to take a look. Useful when you want to configure a new FFmpeg

Re: [FFmpeg-devel] [PATCH 2/3] avformat/matroskaenc: write the FieldOrder element for non-interlaced video

2016-09-27 Thread Hendrik Leppkes
On Tue, Sep 27, 2016 at 11:14 PM, James Almer wrote: > On 9/27/2016 5:56 PM, Hendrik Leppkes wrote: >> On Tue, Sep 27, 2016 at 8:03 PM, James Almer wrote: >>> It's listed as mandatory in https://matroska.org/technical/specs/index.html >>> >>> Signed-off-by:

Re: [FFmpeg-devel] [PATCH] cmdutils: improve `-buildconf` for shell substitution

2016-09-27 Thread Clément Bœsch
On Tue, Sep 27, 2016 at 04:25:52PM -0500, Kyle Swanson wrote: > Hi, > > Always thought something like this might be useful, but I finally took the > time to take a look. Useful when you want to configure a new FFmpeg build > using the configuration string of a previously built version. True you >

Re: [FFmpeg-devel] imagepipe filter (was [PATCH] avfilter: add dynoverlay filter.)

2016-09-27 Thread Paul B Mahol
On 9/27/16, Priebe, Jason wrote: > On 9/23/16, Paul B Mahol wrote: > >> Named pipe approach would implement video source which would read images >> from named pipe. It would read from named pipe until it decodes single >> frame >> and then would use

[FFmpeg-devel] [PATCH] cmdutils: improve `-buildconf` for shell substitution

2016-09-27 Thread Kyle Swanson
Hi, Always thought something like this might be useful, but I finally took the time to take a look. Useful when you want to configure a new FFmpeg build using the configuration string of a previously built version. True you could accomplish the same thing with sed, but I think this tweak is still

Re: [FFmpeg-devel] [PATCH] flv format support mp3 audio with 48khz

2016-09-27 Thread Yusuke Nakamura
2016-09-28 0:01 GMT+09:00 : > From: frankos2 > > --- > libavformat/flvenc.c |8 > 1 files changed, 8 insertions(+), 0 deletions(-) > > diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c > index 99903f5..296426a 100644 >

Re: [FFmpeg-devel] [PATCH 2/3] avformat/matroskaenc: write the FieldOrder element for non-interlaced video

2016-09-27 Thread James Almer
On 9/27/2016 5:56 PM, Hendrik Leppkes wrote: > On Tue, Sep 27, 2016 at 8:03 PM, James Almer wrote: >> It's listed as mandatory in https://matroska.org/technical/specs/index.html >> >> Signed-off-by: James Almer >> --- >> The spec also mentions FieldOrder

Re: [FFmpeg-devel] [PATCH 2/3] avformat/matroskaenc: write the FieldOrder element for non-interlaced video

2016-09-27 Thread Hendrik Leppkes
On Tue, Sep 27, 2016 at 8:03 PM, James Almer wrote: > It's listed as mandatory in https://matroska.org/technical/specs/index.html > > Signed-off-by: James Almer > --- > The spec also mentions FieldOrder "MUST be ignored if FlagInterlaced is not > set to

Re: [FFmpeg-devel] [PATCH 2/4] V10 - SCTE-35 extraction from mpegts

2016-09-27 Thread Carlos Fernandez Sanz
On Mon, Sep 26, 2016 at 3:25 PM, Michael Niedermayer wrote: > > this breaks fate: > make: *** [fate-h264-skip-nokey] Error 1 Thanks - solved in V11. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

[FFmpeg-devel] [PATCH 4/4] V11 - Correct Indentation

2016-09-27 Thread Carlos Fernandez Sanz
From: Carlos Fernandez Signed-off-by: Carlos Fernandez --- libavformat/hlsenc.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 3303dc8..39d1fe9 100644 ---

[FFmpeg-devel] [PATCH 1/4] V11 - Adding SCTE-35 CUI codec

2016-09-27 Thread Carlos Fernandez Sanz
From: Carlos Fernandez Signed-off-by: Carlos Fernandez --- libavcodec/avcodec.h| 2 ++ libavcodec/codec_desc.c | 6 ++ 2 files changed, 8 insertions(+) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index b174116..e3103a1

[FFmpeg-devel] [PATCH 0/4] V11 - SCTE-35 support

2016-09-27 Thread Carlos Fernandez Sanz
- Addresses all new comments - fate now passes all tests Carlos Fernandez (4): Adding SCTE-35 CUI codec SCTE-35 extraction from mpegts SCTE-35 support in hlsenc Correct Indentation libavcodec/avcodec.h| 2 + libavcodec/codec_desc.c | 6 + libavformat/Makefile| 2 +-

Re: [FFmpeg-devel] [PATCH 1/2] compat/avisynth: minor update for alpha offsets

2016-09-27 Thread Michael Niedermayer
On Tue, Sep 27, 2016 at 12:48:18PM -0400, Stephen Hutchinson wrote: > On 9/27/2016 3:12 AM, Carl Eugen Hoyos wrote: > >2016-08-31 16:16 GMT+02:00 Stephen Hutchinson : > >>On 8/31/2016 9:37 AM, Carl Eugen Hoyos wrote: > >>> > >>>2016-08-31 2:26 GMT+02:00 Stephen Hutchinson

Re: [FFmpeg-devel] [PATCH] flv format support mp3 audio with 48khz

2016-09-27 Thread Michael Niedermayer
On Tue, Sep 27, 2016 at 08:01:13AM -0700, fu.qiup...@hotmail.com wrote: > From: frankos2 This is not a name and email address is this intended as "Author" information for git ? Or is this a mistake ? If its a mistake please correct it and resubmit the patch thx

Re: [FFmpeg-devel] [PATCH] libavcodec/qdm2.c: fix warning due to misleading indentation

2016-09-27 Thread Adriano Pallavicino
Sure Adriano 2016-09-27 21:19 GMT+02:00 Josh de Kock : > On 27/09/2016 19:46, Adriano Pallavicino wrote: > >> --- >> libavcodec/qdm2.c | 117 >> +++--- >> 1 file changed, 59 insertions(+), 58 deletions(-) >> >> diff --git

Re: [FFmpeg-devel] [PATCH] libavcodec/qdm2.c: fix warning due to misleading indentation

2016-09-27 Thread Josh de Kock
On 27/09/2016 19:46, Adriano Pallavicino wrote: --- libavcodec/qdm2.c | 117 +++--- 1 file changed, 59 insertions(+), 58 deletions(-) diff --git a/libavcodec/qdm2.c b/libavcodec/qdm2.c index dd8b257..e3cc902 100644 --- a/libavcodec/qdm2.c +++

Re: [FFmpeg-devel] [PATCH] doc/filters: blend-by-default-terminates-on-longest-input

2016-09-27 Thread Lou Logan
On Sat, 24 Sep 2016 09:14:02 +0530, Mulvya V wrote: > From a740ed91ea2d651f7cdf731befc4de673f4db784 Mon Sep 17 00:00:00 2001 > From: Mulvya > Date: Sat, 24 Sep 2016 09:05:27 +0530 > Subject: [PATCH] blend, by default, terminates on longest input > > Signed-off-by: Mulvya

Re: [FFmpeg-devel] [PATCH 2/3] lavf/mov.c: Make audio timestamps strictly monotonically increasing inside an edit list.

2016-09-27 Thread Moritz Barsnick
On Tue, Sep 27, 2016 at 09:28:13 -0700, Sasi Inguva wrote: > if (curr_cts < edit_list_media_time || curr_cts >= > (edit_list_duration + edit_list_media_time)) { > -if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && > curr_cts < edit_list_media_time && > -

[FFmpeg-devel] [PATCH] avformat/matroskadec: retain error codes in matroska_resync() and matroska_read_packet()

2016-09-27 Thread Sophia Wang
Signed-off-by: Sophia Wang --- libavformat/matroskadec.c | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 77b8a5d..7ee1c7a 100644 --- a/libavformat/matroskadec.c +++

Re: [FFmpeg-devel] [PATCH] avformat/matroskadec: retain error codes in matroska_resync() and matroska_read_packet()

2016-09-27 Thread Sophia Wang
On Fri, Sep 23, 2016 at 1:40 AM, Benoit Fouet wrote: > Hi, > > > On 22/09/2016 23:03, Sophia Wang wrote: > >> Signed-off-by: Sophia Wang >> --- >> libavformat/matroskadec.c | 13 - >> 1 file changed, 8 insertions(+), 5 deletions(-) >> >>

[FFmpeg-devel] [PATCH] libavcodec/qdm2.c: fix warning due to misleading indentation

2016-09-27 Thread Adriano Pallavicino
--- libavcodec/qdm2.c | 117 +++--- 1 file changed, 59 insertions(+), 58 deletions(-) diff --git a/libavcodec/qdm2.c b/libavcodec/qdm2.c index dd8b257..e3cc902 100644 --- a/libavcodec/qdm2.c +++ b/libavcodec/qdm2.c @@ -537,7 +537,7 @@ static void

[FFmpeg-devel] imagepipe filter (was [PATCH] avfilter: add dynoverlay filter.)

2016-09-27 Thread Priebe, Jason
On 9/23/16, Paul B Mahol wrote: > Named pipe approach would implement video source which would read images > from named pipe. It would read from named pipe until it decodes single frame > and then would use that frame as input to next filter, for example > overlay filter. > >

[FFmpeg-devel] [PATCH 2/3] avformat/matroskaenc: write the FieldOrder element for non-interlaced video

2016-09-27 Thread James Almer
It's listed as mandatory in https://matroska.org/technical/specs/index.html Signed-off-by: James Almer --- The spec also mentions FieldOrder "MUST be ignored if FlagInterlaced is not set to interlaced". Since it's a mandatory element, i interpreted that as a demuxer guideline.

[FFmpeg-devel] [PATCH 1/3] avformat/matroska: write FlagInterlaced element in WebM

2016-09-27 Thread James Almer
It's listed as supported in both https://www.webmproject.org/docs/container/ and https://matroska.org/technical/specs/index.html Signed-off-by: James Almer --- libavformat/matroskaenc.c | 41 + 1 file changed, 21 insertions(+), 20

[FFmpeg-devel] [PATCH 3/3] avformat/matroskadec: set AVCodecParameters.field_order on progressive video

2016-09-27 Thread James Almer
Signed-off-by: James Almer --- libavformat/matroskadec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 77b8a5d..2317024 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -2279,6 +2279,8

Re: [FFmpeg-devel] [PATCH 1/2] compat/avisynth: minor update for alpha offsets

2016-09-27 Thread Stephen Hutchinson
On 9/27/2016 3:12 AM, Carl Eugen Hoyos wrote: 2016-08-31 16:16 GMT+02:00 Stephen Hutchinson : On 8/31/2016 9:37 AM, Carl Eugen Hoyos wrote: 2016-08-31 2:26 GMT+02:00 Stephen Hutchinson : -//AVS_CPUF_AVX= 0x800, // Sandy Bridge, Bulldozer +

[FFmpeg-devel] [PATCH 2/3] lavf/mov.c: Make audio timestamps strictly monotonically increasing inside an edit list.

2016-09-27 Thread Sasi Inguva
Fixes gapless decoding. Adjust skip_samples field correctly in case of DISCARDed audio frames. Signed-off-by: Sasi Inguva --- libavformat/mov.c| 81 tests/ref/fate/gaplessenc-itunes-to-ipod-aac | 2 +-

[FFmpeg-devel] 答复: [PATCH] flv format support mp3 audio with 48khz

2016-09-27 Thread 付 秋平
AAC 48khz has alreay been supported in flv_enc.c file, when the flv with audio format is aac it just set it into: if (enc->codec_id == AV_CODEC_ID_AAC) // specs force these parameters return FLV_CODECID_AAC | FLV_SAMPLERATE_44100HZ | FLV_SAMPLESSIZE_16BIT | FLV_STEREO;

Re: [FFmpeg-devel] [PATCH 2/4] V10 - SCTE-35 extraction from mpegts

2016-09-27 Thread Carlos Fernandez Sanz
On Tue, Sep 27, 2016 at 12:30 AM, Marton Balint wrote: >> +} else if (ts->pids[i] && ts->pids[i]->type == >> MPEGTS_SECTION) { >> +return ret; > > > Why do you need this hunk? I think you can delete it, and everything will > remain working. This loop

Re: [FFmpeg-devel] [PATCH] flv format support mp3 audio with 48khz

2016-09-27 Thread Steven Liu
2016-09-27 23:01 GMT+08:00 : > From: frankos2 > > --- > libavformat/flvenc.c |8 > 1 files changed, 8 insertions(+), 0 deletions(-) > > diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c > index 99903f5..296426a 100644

[FFmpeg-devel] [PATCH] flv format support mp3 audio with 48khz

2016-09-27 Thread fu . qiuping
From: frankos2 --- libavformat/flvenc.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index 99903f5..296426a 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -107,6

[FFmpeg-devel] (no subject)

2016-09-27 Thread fu . qiuping
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 1/3] avformat/hlsenc: support mkdir_p for use_localtime_mkdir

2016-09-27 Thread Steven Liu
2016-09-27 6:50 GMT+08:00 Michael Niedermayer : > On Mon, Sep 26, 2016 at 04:04:32PM +0800, Steven Liu wrote: > > > > > hlsenc.c | 31 ++- > > 1 file changed, 30 insertions(+), 1 deletion(-) > > 8647c63d575b475e6e19b6427061787e39081bc4

Re: [FFmpeg-devel] FFmpeg 3.2

2016-09-27 Thread Sven C. Dack
On 27/09/16 14:30, Michael Niedermayer wrote: Hi all Its long since FFmpeg 3.1, so its time to make 3.2 ill branch release/3.2 off master and make 3.2 in maybe about a week or 2 unless something delays it also a name needs to be choosen Thanks I narrowed it down for myself to Trump, Clinton

Re: [FFmpeg-devel] [PATCH 2/2] ffmpeg: stop using AVStream.codec on stream copy

2016-09-27 Thread James Almer
On 9/26/2016 10:28 PM, Michael Niedermayer wrote: > On Mon, Sep 26, 2016 at 08:06:47PM -0300, James Almer wrote: >> This commit is based on commit 35c8580 from Anton Khirnov >> which was skipped in b8945c4. >> >> The avcodec_copy_context() call in the encode path is left in

Re: [FFmpeg-devel] [PATCH 2/3] lavf/mov.c: Make audio timestamps strictly monotonically increasing inside an edit list. Fixes gapless decoding. Adjust skip_samples field correctly in case of DISCARDed

2016-09-27 Thread Moritz Barsnick
On Mon, Sep 26, 2016 at 11:42:51 -0700, Sasi Inguva wrote: > Subject: [FFmpeg-devel] [PATCH 2/3] lavf/mov.c: Make audio timestamps > strictly monotonically increasing inside an edit list. Fixes gapless > decoding. Adjust skip_samples field correctly in case of DISCARDed audio > frames. Please

[FFmpeg-devel] FFmpeg 3.2

2016-09-27 Thread Michael Niedermayer
Hi all Its long since FFmpeg 3.1, so its time to make 3.2 ill branch release/3.2 off master and make 3.2 in maybe about a week or 2 unless something delays it also a name needs to be choosen Thanks -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Democracy is the

Re: [FFmpeg-devel] [PATCH 2/2] swresample: Add swr_build_matrix()

2016-09-27 Thread Michael Niedermayer
On Tue, Sep 27, 2016 at 10:03:35AM -0300, James Almer wrote: > On 9/27/2016 8:12 AM, Michael Niedermayer wrote: > > On Thu, Aug 18, 2016 at 02:03:56AM +0200, Michael Niedermayer wrote: > >> API and Doxy documentation is taken from avresample_build_matrix() > >> Fixes: Ticket5780 > >> > >>

[FFmpeg-devel] [PATCH] ffmpeg_vaapi: fix choice of decoder_format

2016-09-27 Thread Moritz Barsnick
As discovered and suggested by Mihai Chindea, http://ffmpeg.org/pipermail/ffmpeg-devel/2016-September/198932.html I have only inspected/reviewed this change visually, not tested. Moritz >From bc8437848870f6143d3cf5b3e615e865b0411ecf Mon Sep 17 00:00:00 2001 From: Moritz Barsnick

Re: [FFmpeg-devel] [PATCH 2/2] swresample: Add swr_build_matrix()

2016-09-27 Thread James Almer
On 9/27/2016 8:12 AM, Michael Niedermayer wrote: > On Thu, Aug 18, 2016 at 02:03:56AM +0200, Michael Niedermayer wrote: >> API and Doxy documentation is taken from avresample_build_matrix() >> Fixes: Ticket5780 >> >> Signed-off-by: Michael Niedermayer >> --- >>

Re: [FFmpeg-devel] [PATCH 2/2] swresample: Add swr_build_matrix()

2016-09-27 Thread Michael Niedermayer
On Thu, Aug 18, 2016 at 02:03:56AM +0200, Michael Niedermayer wrote: > API and Doxy documentation is taken from avresample_build_matrix() > Fixes: Ticket5780 > > Signed-off-by: Michael Niedermayer > --- > libswresample/rematrix.c | 157 >

Re: [FFmpeg-devel] [PATCH] pass TLS args for RTSPS

2016-09-27 Thread Moritz Barsnick
On Mon, Sep 26, 2016 at 11:24:33 -0400, jayri...@gmail.com wrote: > +{ "tls_verify", "Verify the peer certificate", OFFSET(verify), > AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DEC|ENC}, AV_OPT_TYPE_BOOL > +{ "cert_file", "Certificate file", OFFSET(cert_file), > AV_OPT_TYPE_STRING, {.str =

Re: [FFmpeg-devel] [PATCH 1/2] swresample: Use double and float for matrixes for best quality and speed

2016-09-27 Thread Michael Niedermayer
On Thu, Aug 18, 2016 at 02:03:55AM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libswresample/rematrix.c| 11 ++- > libswresample/swresample_internal.h | 3 ++- > 2 files changed, 12 insertions(+), 2 deletions(-)

Re: [FFmpeg-devel] [PATCH 4/4] lavf/mp3dec: read encoder delay/padding from Info tag

2016-09-27 Thread wm4
On Mon, 26 Sep 2016 16:04:26 -0700 Jon Toohill wrote: > A similar concern was raised in a previous related patch: > http://ffmpeg.org/pipermail/ffmpeg-devel/2016-May/194690.html > I think the resolution at the time was to go ahead with using both, since > both

Re: [FFmpeg-devel] [OPW] OPW Project Proposal

2016-09-27 Thread Pallavi Kumari
Lou, Jean thanks for your suggestions. I will go through them meanwhile I have finished a rough sketch of the idea. Please find it at [1]. [1] https://wiki.mozilla.org/Atana/idea On Tue, Sep 27, 2016 at 11:33 AM, Jean First wrote: > On Sun Sep 25 2016 14:32:25 GMT+0200

Re: [FFmpeg-devel] [PATCH 2/4] lavc/libmp3lame: set trailing_padding after flushing encoder

2016-09-27 Thread Carl Eugen Hoyos
2016-09-26 19:13 GMT+02:00 Jon Toohill : > +avctx->trailing_padding = FFMAX(lame_get_encoder_padding(s->gfp) - > 528 - 1, 0); Can you confirm that this function exists in lame 3.98.3? Thank you, Carl Eugen

Re: [FFmpeg-devel] [PATCH 2/2] lavf/mxfdec: begin utilizing the newly parsed widths and heights

2016-09-27 Thread Marton Balint
On Mon, 26 Sep 2016, Jan Ekstrom wrote: On Sep 26, 2016 04:05, "Marton Balint" wrote: Overriding width/height with display width/height does not seem right, check what happens with a PAL IMX50 MXF file for example. If you want to signal this, then a stream side data with

Re: [FFmpeg-devel] [PATCH]lavf/riffenc: Always write unexpected channel_mask

2016-09-27 Thread Carl Eugen Hoyos
2016-09-27 9:38 GMT+02:00 Tobias Rapp : > On 27.09.2016 09:02, Carl Eugen Hoyos wrote: >> >> 2016-09-27 8:49 GMT+02:00 Tobias Rapp : >>> >>> On 26.09.2016 12:39, Carl Eugen Hoyos wrote: >> Attached patch allows to write arbitrary (mono)

Re: [FFmpeg-devel] [PATCH 1/4] V10 - Adding SCTE-35 CUI codec

2016-09-27 Thread Carl Eugen Hoyos
2016-09-26 19:59 GMT+02:00 Carlos Fernandez Sanz : > From: Carlos Fernandez > > Signed-off-by: Carlos Fernandez > --- > libavcodec/avcodec.h| 3 ++- > libavcodec/codec_desc.c | 6 ++ > 2 files changed, 8

Re: [FFmpeg-devel] [PATCH]lavf/riffenc: Always write unexpected channel_mask

2016-09-27 Thread Tobias Rapp
On 27.09.2016 09:02, Carl Eugen Hoyos wrote: 2016-09-27 8:49 GMT+02:00 Tobias Rapp : On 26.09.2016 12:39, Carl Eugen Hoyos wrote: Attached patch allows to write arbitrary (mono) channel_masks even for 16bit 48kHz pcm audio. As far as I understand this patch is in

Re: [FFmpeg-devel] [PATCH 1/2] movenc: use similar logic to DASH when writing bit rate to ISML

2016-09-27 Thread Carl Eugen Hoyos
2016-09-27 0:10 GMT+02:00 Jan Ekström : > avio_printf(pb, "<%s systemBitrate=\"%"PRId64"\">\n", type, > -(int64_t)track->par->bit_rate); > -param_write_int(pb, "systemBitrate", track->par->bit_rate); > +

Re: [FFmpeg-devel] [PATCH 2/4] V10 - SCTE-35 extraction from mpegts

2016-09-27 Thread Marton Balint
On Mon, 26 Sep 2016, Carlos Fernandez Sanz wrote: From: Carlos Fernandez Signed-off-by: Carlos Fernandez --- libavformat/mpegts.c | 64 ++-- 1 file changed, 62 insertions(+), 2 deletions(-) diff

Re: [FFmpeg-devel] [PATCH]lavf/mpegtsenc: Set min PID for data pkt to 0x0010

2016-09-27 Thread Carl Eugen Hoyos
2016-09-27 5:42 GMT+02:00 Andrey Turkin : > Nevermind, I didn't though this through. Default value is high enough to > comply with all standards. I'll apply the patch if there are no objections. Carl Eugen ___ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 2/2] avisynth: fix Planar RGB output

2016-09-27 Thread Carl Eugen Hoyos
2016-09-27 6:45 GMT+02:00 Stephen Hutchinson : > Ping. Consider sending your public key to Michael, you maintain this code. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH 1/2] compat/avisynth: minor update for alpha offsets

2016-09-27 Thread Carl Eugen Hoyos
2016-08-31 16:16 GMT+02:00 Stephen Hutchinson : > On 8/31/2016 9:37 AM, Carl Eugen Hoyos wrote: >> >> 2016-08-31 2:26 GMT+02:00 Stephen Hutchinson : >>> >>> -//AVS_CPUF_AVX= 0x800, // Sandy Bridge, Bulldozer >>> + AVS_CPUF_AVX= 0x800, //

Re: [FFmpeg-devel] [PATCH]lavf/riffenc: Always write unexpected channel_mask

2016-09-27 Thread Carl Eugen Hoyos
2016-09-27 8:49 GMT+02:00 Tobias Rapp : > On 26.09.2016 12:39, Carl Eugen Hoyos wrote: >> Attached patch allows to write arbitrary (mono) channel_masks >> even for 16bit 48kHz pcm audio. > > As far as I understand this patch is in response to >

Re: [FFmpeg-devel] [PATCH]lavf/riffenc: Always write unexpected channel_mask

2016-09-27 Thread Tobias Rapp
On 26.09.2016 12:39, Carl Eugen Hoyos wrote: Hi! Attached patch allows to write arbitrary (mono) channel_masks even for 16bit 48kHz pcm audio. Please comment, Carl Eugen As far as I understand this patch is in response to https://ffmpeg.org/pipermail/ffmpeg-user/2016-September/033757.html

Re: [FFmpeg-devel] [OPW] OPW Project Proposal

2016-09-27 Thread Jean First
On Sun Sep 25 2016 14:32:25 GMT+0200 (CEST), Pallavi Kumari wrote: [...] > I want to propose the idea of implementing filters for ffmpeg that would > give different audio fingerprints for an audio which could be reused by > other people for variety of applications. Goal of this system is given a