Re: [FFmpeg-devel] [PATCHv2 5/5] lavfi/select: add support for concatdec_select option

2015-11-20 Thread Stefano Sabatini
On date Friday 2015-11-20 13:54:26 +0100, Marton Balint encoded: > This option can be used to select useful frames from an ffconcat file which is > using inpoints and outpoints but where the source files are not intra frame > only. > > Signed-off-by: Marton Balint > --- > doc/filters.texi

Re: [FFmpeg-devel] [PATCH 2/3] lavf/utils: handle AVERROR_REDO.

2015-12-03 Thread Stefano Sabatini
On date Friday 2015-11-27 15:27:02 +0100, Clément Bœsch encoded: > On Fri, Nov 27, 2015 at 01:10:29PM +0100, Nicolas George wrote: > > Le septidi 7 frimaire, an CCXXIV, Clement Boesch a écrit : > > > But then it's still exposed by the API, and someone looking at handling > > > every error code migh

Re: [FFmpeg-devel] [PATCH 1/5] lavf: add FFERROR_REDO to let demuxer return no packet.

2015-12-03 Thread Stefano Sabatini
On date Friday 2015-11-27 19:16:06 +0100, Nicolas George encoded: > Signed-off-by: Nicolas George > --- > libavformat/internal.h | 6 ++ > libavformat/utils.c| 5 + > 2 files changed, 11 insertions(+) > > > Apparently, the most unhappyness was caused by the error code in the public

Re: [FFmpeg-devel] [PATCH 2/5] lavf/flvdec: use FFERROR_REDO instead of AVERROR(EAGAIN).

2015-12-03 Thread Stefano Sabatini
On date Friday 2015-11-27 19:16:07 +0100, Nicolas George encoded: > Fix trac ticket #5041. > > Signed-off-by: Nicolas George > --- > libavformat/flvdec.c | 14 +++--- > 1 file changed, 7 insertions(+), 7 deletions(-) > > > Problem can be observed by transcoding or remuxing a large FLV

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/nvenc: Include NVENC SDK header

2015-12-07 Thread Stefano Sabatini
On date Monday 2015-12-07 14:53:22 -0300, James Almer encoded: > On 12/7/2015 11:14 AM, Timo Rothenpieler wrote: > > Nvidia finaly decided to put a propper MIT license on their nvenc header, so > > it can be included, removing any external dependencies for nvenc and > > making it no longer require

Re: [FFmpeg-devel] [PATCH] lavf/segment: add option to write empty filler segments as needed

2015-12-08 Thread Stefano Sabatini
On date Monday 2015-12-07 14:24:44 -0600, Rodger Combs encoded: > --- > libavformat/segment.c | 22 +++--- > 1 file changed, 15 insertions(+), 7 deletions(-) Missing docs. > diff --git a/libavformat/segment.c b/libavformat/segment.c > index 8432d0f..acd266b 100644 > --- a/libavf

Re: [FFmpeg-devel] [PATCH 5/6] ffprobe: display loop points when applicable

2015-12-29 Thread Stefano Sabatini
On date Tuesday 2015-06-16 17:28:17 -0500, Rodger Combs encoded: > --- > ffprobe.c | 4 > 1 file changed, 4 insertions(+) > > diff --git a/ffprobe.c b/ffprobe.c > index 3e5324e..d54eb87 100644 > --- a/ffprobe.c > +++ b/ffprobe.c > @@ -2436,6 +2436,10 @@ static int show_format(WriterContext *

Re: [FFmpeg-devel] [PATCH] ffprobe: avoid unnecessary pow and exp2 calls

2015-12-29 Thread Stefano Sabatini
On date Wednesday 2015-12-23 09:56:17 -0800, Ganesh Ajjanagadde encoded: > These are just for prefixes and may be hardcoded easily; see lavu/eval > for this approach. > > Signed-off-by: Ganesh Ajjanagadde > --- > ffprobe.c | 27 +++ > 1 file changed, 19 insertions(+), 8 d

[FFmpeg-devel] [PATCH] ffmpeg: extend -benchmark_all option to show elapsed time

2016-01-11 Thread Stefano Sabatini
The value is useful to get a raw estimate of the expected encoding/decoding time. Also extend option documentation. --- doc/ffmpeg.texi | 6 ++ ffmpeg.c| 9 +++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index a38a32e..9ea48

[FFmpeg-devel] Allow MPEGTS and KLV metadata remuxing

2016-01-17 Thread Stefano Sabatini
ful Picky Exxagerate Guru >From 9ad3c8fda108b4fb5a2b6779189cfca3e069b89e Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Wed, 18 Nov 2015 19:23:03 +0100 Subject: [PATCH] lavc/lavf: transmit stream_id information for mpegts KLV data packets This allows to copy information related to the stream

Re: [FFmpeg-devel] [PATCH] avfilter/vf_crop: make it possible to use frame metadata when cropping

2016-01-26 Thread Stefano Sabatini
On date Sunday 2016-01-17 20:15:45 +0100, Paul B Mahol encoded: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 6 ++ > libavfilter/vf_crop.c | 54 > +++ > 2 files changed, 48 insertions(+), 12 deletions(-) > > diff --git a/doc/

Re: [FFmpeg-devel] [PATCH 1/2] lavf/segment: add support for specifying clock time offset

2016-01-26 Thread Stefano Sabatini
On date Monday 2016-01-18 21:56:29 +0100, Marton Balint encoded: > Signed-off-by: Marton Balint > --- > doc/muxers.texi | 10 ++ > libavformat/segment.c | 11 ++- > 2 files changed, 20 insertions(+), 1 deletion(-) > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index a

Re: [FFmpeg-devel] [PATCH 2/2] lavf/segment: add new option segment_clocktime_wrap_duration

2016-01-27 Thread Stefano Sabatini
On date Monday 2016-01-18 21:56:30 +0100, Marton Balint encoded: > This option can force the segmenter to only start a new segment if a packet > reaches the muxer whithin the specified duration after the segmenting clock > time, which makes it more resilient to backward local time jumps, such as le

Re: [FFmpeg-devel] Feature Suggestion/Idea: auto create profile from supplied media file.

2016-01-27 Thread Stefano Sabatini
On date Monday 2016-01-18 10:44:31 -0600, luke etyrnal encoded: > An idea for a new feature of ffmpeg: Detect media, and generate profile > for future transcoding. > > > The feature would add the ability to point ffmpeg at a media file and > analyze the file for its container type, codecs, chann

Re: [FFmpeg-devel] [PATCH] ffmpeg: extend -benchmark_all option to show elapsed time

2016-01-27 Thread Stefano Sabatini
On date Monday 2016-01-11 18:21:15 +0100, Stefano Sabatini encoded: > The value is useful to get a raw estimate of the expected > encoding/decoding time. > > Also extend option documentation. > --- > doc/ffmpeg.texi | 6 ++ > ffmpeg.c| 9 +++-- > 2 file

[FFmpeg-devel] [PATCH] ffmpeg: replace "flush Media" with "flush_media" in benchmark_all output

2016-01-27 Thread Stefano Sabatini
Simplify parsing and consistency. --- ffmpeg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index bcae930..8c49139 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1716,11 +1716,11 @@ static void flush_encoders(void) switch (enc->codec_type) {

Re: [FFmpeg-devel] [PATCH] ffmpeg: extend -benchmark_all option to show elapsed time

2016-01-27 Thread Stefano Sabatini
On date Wednesday 2016-01-27 13:56:38 +0100, James Darnley encoded: > On 2016-01-11 18:21, Stefano Sabatini wrote: > > +This option shows the following information for each processing step, > > +in this order: the user process time (in microseconds), the elapsed > > +relative

Re: [FFmpeg-devel] Allow MPEGTS and KLV metadata remuxing

2016-01-27 Thread Stefano Sabatini
On date Monday 2016-01-18 00:40:52 +0100, Michael Niedermayer encoded: > On Sun, Jan 17, 2016 at 01:24:29PM +0100, Stefano Sabatini wrote: > > Hi, > > > > the attached patches allow to remux MPEGTS files containing KLV > > metadata. Since there are two kinds o

Re: [FFmpeg-devel] [PATCHv2 1/2] lavf/segment: add support for specifying clock time offset

2016-01-27 Thread Stefano Sabatini
On date Thursday 2016-01-28 00:49:27 +0100, Marton Balint encoded: > Signed-off-by: Marton Balint > --- > doc/muxers.texi | 10 ++ > libavformat/segment.c | 11 ++- > 2 files changed, 20 insertions(+), 1 deletion(-) [...] LGTM, thanks. -- FFmpeg = Fancy & Freak Mysterious

Re: [FFmpeg-devel] [PATCHv2 2/2] lavf/segment: add new option segment_clocktime_wrap_duration

2016-01-27 Thread Stefano Sabatini
On date Thursday 2016-01-28 00:49:28 +0100, Marton Balint encoded: > This option can force the segmenter to only start a new segment if a packet > reaches the muxer whithin the specified duration after the segmenting clock nit: whithin => within > time, which makes it more resilient to backward l

Re: [FFmpeg-devel] [PATCH] ffmpeg: replace "flush Media" with "flush_media" in benchmark_all output

2016-01-29 Thread Stefano Sabatini
On date Wednesday 2016-01-27 18:27:33 +0100, James Darnley encoded: > On 2016-01-27 13:09, Stefano Sabatini wrote: > > Simplify parsing and consistency. > > Fine. > > (Ha. It looks like I forgot to press send on this before going out.) Applied, thanks. -- FFmpeg = Fos

Re: [FFmpeg-devel] [PATCH] ffmpeg: extend -benchmark_all option to show elapsed time

2016-01-29 Thread Stefano Sabatini
On date Wednesday 2016-01-27 21:08:19 +0100, Michael Niedermayer encoded: > On Mon, Jan 11, 2016 at 06:21:15PM +0100, Stefano Sabatini wrote: > > The value is useful to get a raw estimate of the expected > > encoding/decoding time. > > > > Also extend option docu

Re: [FFmpeg-devel] Fwd: libavformat/segment : add option to increment timecode

2016-01-29 Thread Stefano Sabatini
On date Friday 2016-01-29 12:18:02 +0100, Martin Vignali encoded: > Ping > > -- Forwarded message -- > From: Martin Vignali > Date: 2015-10-03 15:49 GMT+02:00 > Subject: libavformat/segment : add option to increment timecode > To: FFmpeg development discussions and patches > >

Re: [FFmpeg-devel] lavfi format negotiation at the "code source" seminar in Paris

2016-01-30 Thread Stefano Sabatini
On date Thursday 2016-01-28 20:51:29 +0100, Nicolas George encoded: > Hi. > > I am proud to announce that I have been asked to give a talk at the "code > source" seminar at the Jussieu Campus in Paris on February the 17th 2016. > This is a computer science / philosophy seminar where people present

Re: [FFmpeg-devel] Fwd: libavformat/segment : add option to increment timecode

2016-01-30 Thread Stefano Sabatini
On date Friday 2016-01-29 17:38:13 +0100, Martin Vignali encoded: > 2016-01-29 12:35 GMT+01:00 Stefano Sabatini : [...] > > +AVDictionaryEntry * tcr = av_dict_get(s->metadata, "timecode", > > NULL, 0); > > > +if (tcr){ >

[FFmpeg-devel] [PATCH] lavc/lavf: transmit stream_id information for mpegts KLV data packets

2016-01-30 Thread Stefano Sabatini
This allows to copy information related to the stream ID from the demuxer to the muxer, thus allowing for example to retain information related to synchronous and asynchronous KLV data packets. This information is used in the muxer when remuxing to distinguish the two kind of packets (if the inform

Re: [FFmpeg-devel] Allow MPEGTS and KLV metadata remuxing

2016-01-30 Thread Stefano Sabatini
On date Wednesday 2016-01-27 19:30:59 +0100, Stefano Sabatini encoded: > On date Monday 2016-01-18 00:40:52 +0100, Michael Niedermayer encoded: > > On Sun, Jan 17, 2016 at 01:24:29PM +0100, Stefano Sabatini wrote: > > > Hi, > > > > > > the attached patches al

Re: [FFmpeg-devel] [PATCH] avdevice/lavfi: replace deprecated function

2016-02-01 Thread Stefano Sabatini
On date Sunday 2016-01-31 17:43:21 +0100, Paul B Mahol encoded: > Hi, > > patch attached. > From 93a99efb889615d2f51f585d4cc49c2d6df70e28 Mon Sep 17 00:00:00 2001 > From: Paul B Mahol > Date: Sun, 31 Jan 2016 17:40:55 +0100 > Subject: [PATCH] avdevice/lavfi: replace deprecated avpicture_layout >

Re: [FFmpeg-devel] [PATCH] docs: explain properly how -fs works

2016-02-01 Thread Stefano Sabatini
On date Monday 2016-02-01 09:39:39 +, Carl Eugen Hoyos encoded: > Umair Khan gmail.com> writes: > > > -Set the file size limit, expressed in bytes. > > +Set the file size limit, expressed in bytes. No further chunk > > of bytes is written > > +after the limit is exceeded. The size of the out

[FFmpeg-devel] [SPI] Donation request to ffis.de

2016-02-02 Thread Stefano Sabatini
Hi, I propose to make a donation of 200 EUR to ffis.de to thank them for their services in the last two years. Currently the ffis.de FFmpeg fund contains 9195 EUR, so I would ask the ffis.de officers to directly grab from that fund. Note: due to the previous agreements, refund or expense request

Re: [FFmpeg-devel] [SPI] Outreachy funding

2016-02-03 Thread Stefano Sabatini
On date Tuesday 2016-02-02 19:35:09 +0100, Michael Niedermayer encoded: > Hi > > I Suggest that we fund 1 slot for outreachy (so that FFmpeg can > participate in this round of Outreachy) assuming no sponsors are > found > The exact amount needed for this would be 6500 USD IIUC > > See: https://wi

Re: [FFmpeg-devel] [PATCH] lavc/lavf: transmit stream_id information for mpegts KLV data packets

2016-02-03 Thread Stefano Sabatini
On date Saturday 2016-01-30 13:40:57 +0100, Stefano Sabatini encoded: > This allows to copy information related to the stream ID from the demuxer > to the muxer, thus allowing for example to retain information related to > synchronous and asynchronous KLV data packets. This informatio

Re: [FFmpeg-devel] [PATCHv2] doc/demuxers: add some concat demuxer script examples

2016-02-03 Thread Stefano Sabatini
On date Tuesday 2016-01-26 09:09:16 +0100, Tobias Rapp encoded: > On 25.01.2016 13:22, Nicolas George wrote: > >Le decadi 30 nivôse, an CCXXIV, Tobias Rapp a écrit : > >>Attached patch adds some example scripts for the concat demuxer to the > >>documentation. > > > >Well, I maintain the code, not r

Re: [FFmpeg-devel] [PATCHv3] doc/demuxers: add some concat demuxer script examples

2016-02-03 Thread Stefano Sabatini
On date Wednesday 2016-02-03 11:47:46 +0100, Tobias Rapp encoded: [...] > From efe7e2854f7155106339ba7b2fa6619f5721d2d7 Mon Sep 17 00:00:00 2001 > From: Tobias Rapp > Date: Tue, 26 Jan 2016 09:02:51 +0100 > Subject: [PATCH] doc/demuxers: add some concat demuxer script examples > > Signed-off-by:

Re: [FFmpeg-devel] [PATCH] lavc/lavf: transmit stream_id information for mpegts KLV data packets

2016-02-04 Thread Stefano Sabatini
On date Wednesday 2016-02-03 10:18:34 +0100, Stefano Sabatini encoded: [...] > Note: since my purpose is to allow remuxing KLV data, I can change > this to enable stream_id side-data only with data streams (so that no > reference must be changed). > > Since I have no strong opin

Re: [FFmpeg-devel] [PATCH] lavc/lavf: transmit stream_id information for mpegts KLV data packets

2016-02-08 Thread Stefano Sabatini
On date Friday 2016-02-05 01:15:47 +0100, Marton Balint encoded: > > On Thu, 4 Feb 2016, Stefano Sabatini wrote: > > >On date Wednesday 2016-02-03 10:18:34 +0100, Stefano Sabatini encoded: > >[...] > >>Note: since my purpose is to allow remuxing KLV data, I

Re: [FFmpeg-devel] FFmpegs future and resigning as leader

2015-08-02 Thread Stefano Sabatini
On date Friday 2015-07-31 15:53:04 +0200, Michael Niedermayer wrote: > Hi all > > Ive been in FFmepg since 14 years and been the leader since 11 years > and i feel that iam not the best person for the leader position. > I had hoped for a long time that the fork situation would resolve and > both s

Re: [FFmpeg-devel] [PATCH] doc: make timespec more precise

2015-08-12 Thread Stefano Sabatini
On date Tuesday 2015-08-11 13:00:46 -0400, Ganesh Ajjanagadde encoded: > Fixes Ticket4595 > > Signed-off-by: Ganesh Ajjanagadde > --- > doc/ffmpeg.texi | 11 +++ > doc/ffplay.texi | 12 ++-- > 2 files changed, 17 insertions(+), 6 deletions(-) Applied, thanks. -- FFmpeg = Freak

[FFmpeg-devel] [PATCH] web/index: use "audio" and "video" in place of "audios" and "videos"

2015-08-12 Thread Stefano Sabatini
"Audios" is a dubious English term, "audio" sounds more correct and more generic. --- src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index b/src/index index d5c3106..7a24517 100644 --- a/src/index +++ b/src/index @@ -18,7 +18,7 @@ -Converting video

Re: [FFmpeg-devel] [PATCH] web/index: use "audio" and "video" in place of "audios" and "videos"

2015-08-13 Thread Stefano Sabatini
On date Wednesday 2015-08-12 07:58:34 -0800, Lou Logan encoded: > On Wed, Aug 12, 2015, at 06:09 AM, Stefano Sabatini wrote: > > "Audios" is a dubious English term, "audio" sounds more correct and more > > generic. > > --- > > src/index | 2 +-

[FFmpeg-devel] [PATCH] doc/demuxers/mpegts: update documentation

2015-08-13 Thread Stefano Sabatini
The description is yet crappy, it merely copies the description of the added and undocumented options and their value range. More descriptive documentation is welcome. --- doc/demuxers.texi | 19 +++ 1 file changed, 19 insertions(+) diff --git a/doc/demuxers.texi b/doc/demuxers.te

Re: [FFmpeg-devel] [PATCH] doc/demuxers/mpegts: update documentation

2015-08-14 Thread Stefano Sabatini
On date Friday 2015-08-14 00:16:31 +0200, Michael Niedermayer encoded: > On Thu, Aug 13, 2015 at 01:26:30PM +0200, Stefano Sabatini wrote: > > The description is yet crappy, it merely copies the description of the > > added and undocumented options and their value range. M

Re: [FFmpeg-devel] [PATCH] doc/demuxers/mpegts: update documentation

2015-08-14 Thread Stefano Sabatini
On date Friday 2015-08-14 11:33:57 +0200, Michael Niedermayer encoded: > On Fri, Aug 14, 2015 at 11:15:43AM +0200, Stefano Sabatini wrote: [...] > > demuxers.texi | 13 + > > 1 file changed, 13 insertions(+) > > 69139cef59232f0c319defb217a375194acba585 > &g

Re: [FFmpeg-devel] [PATCH]lavf/segment: Fix memleak

2015-08-25 Thread Stefano Sabatini
On date Friday 2015-08-21 12:21:05 +0200, Carl Eugen Hoyos encoded: > Hi! > > Attached patch fixes a memleak for me, reproducible with: > $ valgrind --leak-check=full ./ffmpeg_g -i > fate-suite/lena.pnm -reset_timestamps 1 -f segment out%1d.avi > > Please review, Carl Eugen > diff --git a/libav

[FFmpeg-devel] [PATCH] lavf/mpegenc: provide better feedback in case of invalid media type

2015-08-27 Thread Stefano Sabatini
--- libavformat/mpegenc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/mpegenc.c b/libavformat/mpegenc.c index 2520f49..b3ee2a0 100644 --- a/libavformat/mpegenc.c +++ b/libavformat/mpegenc.c @@ -410,7 +410,9 @@ static av_cold int mpeg_mux_init(AVFormatContext

Re: [FFmpeg-devel] [PATCH] lavf/mpegenc: provide better feedback in case of invalid media type

2015-08-27 Thread Stefano Sabatini
On date Thursday 2015-08-27 17:59:20 +0200, Michael Niedermayer wrote: > On Thu, Aug 27, 2015 at 05:42:55PM +0200, Stefano Sabatini wrote: > > --- > > libavformat/mpegenc.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/li

Re: [FFmpeg-devel] Gathering opinions from FFmpeg developers about a reunification with Libav developers

2015-09-07 Thread Stefano Sabatini
On date Saturday 2015-08-01 11:18:34 +0200, Clément Bœsch encoded: > Hi folks, > > Since Michael decided to step down as a leader, the question of > reunification with Libav came up once more naturally. Before negotiations > start again, I think it's important if we can all individually start > th

[FFmpeg-devel] IRC meeting on Saturday 2015-09-12, UTC 15:00

2015-09-07 Thread Stefano Sabatini
Hi, I propose to have an official IRC meeting on the next Saturday, and I propose the tentative time of 15:00 UTC, but feel free to propose a different time if this can't suit you. The IRC meeting channel will be public and the log will be published at the end of the meeting. This meeting is als

[FFmpeg-devel] [PATCH] doc/codecs: mention GOP in the g option

2015-09-08 Thread Stefano Sabatini
This helps when grepping for "gop". --- doc/codecs.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/codecs.texi b/doc/codecs.texi index 2afb09c..da048b1 100644 --- a/doc/codecs.texi +++ b/doc/codecs.texi @@ -129,7 +129,7 @@ should be @code{1 / frame_rate} and timestamp

[FFmpeg-devel] [PATCH] doc/codecs: extend documentation for the threads option

2015-09-08 Thread Stefano Sabatini
--- doc/codecs.texi | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/codecs.texi b/doc/codecs.texi index da048b1..58f2f63 100644 --- a/doc/codecs.texi +++ b/doc/codecs.texi @@ -817,13 +817,17 @@ for codecs that support it. See also @file{doc/examples/export_mvs.c}.

[FFmpeg-devel] [PATCH] doc/encoders: add libopenh264 entry

2015-09-08 Thread Stefano Sabatini
--- doc/encoders.texi | 59 +++ 1 file changed, 59 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi index f9fe331..37a0330 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -1342,6 +1342,65 @@ disabled A description of s

[FFmpeg-devel] [PATCH] lavc/libopenh264enc: apply minor consistency fixes to options text

2015-09-08 Thread Stefano Sabatini
--- libavcodec/libopenh264enc.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/libopenh264enc.c b/libavcodec/libopenh264enc.c index b315e8b..84a9cb1 100644 --- a/libavcodec/libopenh264enc.c +++ b/libavcodec/libopenh264enc.c @@ -46,12 +46,12 @@ typedef s

[FFmpeg-devel] [PATCH] lavc/options: extend/fix text for threads and slices options

2015-09-08 Thread Stefano Sabatini
--- libavcodec/options_table.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index c18bd85..3ee80d6 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -342,7 +342,7 @@ static const AVOption a

Re: [FFmpeg-devel] [PATCH] doc/codecs: mention GOP in the g option

2015-09-08 Thread Stefano Sabatini
On date Tuesday 2015-09-08 16:42:26 +0200, Clément Bœsch encoded: > On Tue, Sep 08, 2015 at 03:59:35PM +0200, Stefano Sabatini wrote: > > This helps when grepping for "gop". > > --- > > doc/codecs.texi | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-)

Re: [FFmpeg-devel] [PATCH] doc/codecs: extend documentation for the threads option

2015-09-08 Thread Stefano Sabatini
On date Tuesday 2015-09-08 16:45:32 +0200, Clément Bœsch encoded: > On Tue, Sep 08, 2015 at 03:59:42PM +0200, Stefano Sabatini wrote: > > --- > > doc/codecs.texi | 8 ++-- > > 1 file changed, 6 insertions(+), 2 deletions(-) > > > > diff --git a/doc/codecs

Re: [FFmpeg-devel] [PATCH] doc/encoders: add libopenh264 entry

2015-09-08 Thread Stefano Sabatini
On date Tuesday 2015-09-08 16:49:33 +0200, Clément Bœsch encoded: > On Tue, Sep 08, 2015 at 03:59:50PM +0200, Stefano Sabatini wrote: > > --- > > doc/encoders.texi | 59 > > +++ > > 1 file changed, 59 insertions(+

Re: [FFmpeg-devel] [PATCH] lavc/libopenh264enc: apply minor consistency fixes to options text

2015-09-08 Thread Stefano Sabatini
On date Tuesday 2015-09-08 16:41:57 +0200, Clément Bœsch encoded: > On Tue, Sep 08, 2015 at 03:59:58PM +0200, Stefano Sabatini wrote: > > --- > > libavcodec/libopenh264enc.c | 12 ++-- > > 1 file changed, 6 insertions(+), 6 deletions(-) > > > > diff --gi

Re: [FFmpeg-devel] [PATCH] lavc/options: extend/fix text for threads and slices options

2015-09-08 Thread Stefano Sabatini
On date Tuesday 2015-09-08 16:38:04 +0200, Clément Bœsch encoded: > On Tue, Sep 08, 2015 at 04:00:06PM +0200, Stefano Sabatini wrote: > > --- > > libavcodec/options_table.h | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/libavc

Re: [FFmpeg-devel] IRC meeting on Saturday 2015-09-12, UTC 15:00

2015-09-12 Thread Stefano Sabatini
On date Monday 2015-09-07 11:37:47 +0200, Stefano Sabatini encoded: > Hi, > > I propose to have an official IRC meeting on the next Saturday, and I > propose the tentative time of 15:00 UTC, but feel free to propose a > different time if this can't suit you. > > The I

Re: [FFmpeg-devel] [PATCH] doc/developer: clarify merge requests

2015-09-12 Thread Stefano Sabatini
On date Saturday 2015-09-12 15:56:34 +0200, Michael Niedermayer encoded: > From: Michael Niedermayer > > Signed-off-by: Michael Niedermayer > --- > doc/developer.texi |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/developer.texi b/doc/developer.texi > index b82

Re: [FFmpeg-devel] [PATCH] doc/developer: clarify merge requests

2015-09-12 Thread Stefano Sabatini
On date Saturday 2015-09-12 16:27:56 +0200, Nicolas George encoded: > Le sextidi 26 fructidor, an CCXXIII, Michael Niedermayer a écrit : > > + gitorious.org. And posting a merge request to the ffmpeg-devel > > mailing list. > > Please no. The patches themselves need to go to the mailing list

Re: [FFmpeg-devel] IRC meeting on Saturday 2015-09-12, UTC 15:00

2015-09-12 Thread Stefano Sabatini
On date Saturday 2015-09-12 16:13:53 +0200, Stefano Sabatini encoded: > On date Monday 2015-09-07 11:37:47 +0200, Stefano Sabatini encoded: > > Hi, > > > > I propose to have an official IRC meeting on the next Saturday, and I > > propose the tentative time of 15:00 UTC,

[FFmpeg-devel] Voting committee

2015-09-13 Thread Stefano Sabatini
Hi, as discussed in the last IRC meeting, we settle some simple criteria to define what an active developer is, based on the commit count. We are aware that such metrics are flawed in many ways, but since we needed to converge on some simple measurable criteria, we decided to adopt this one. We

Re: [FFmpeg-devel] [PATCH] avfilter/f_sendcmd: use the name 's' for the pointer to the private context

2015-09-15 Thread Stefano Sabatini
On date Tuesday 2015-09-15 12:59:54 -0400, Ganesh Ajjanagadde encoded: > On Wed, Sep 9, 2015 at 2:30 PM, Ganesh Ajjanagadde > wrote: > > Signed-off-by: Ganesh Ajjanagadde > > --- > > libavfilter/f_sendcmd.c | 36 ++-- > > 1 file changed, 18 insertions(+), 18 delet

[FFmpeg-devel] [PATCH] ffmpeg/web/index: add news describing GSoC 2015 program outcome

2015-09-27 Thread Stefano Sabatini
--- src/index | 234 ++ 1 file changed, 234 insertions(+) diff --git a/src/index b/src/index index 9d12a7b..8937172 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,240 @@ News + September 27th, 2015, GSoC 2015 results + +

Re: [FFmpeg-devel] [PATCH] ffmpeg/web/index: add news describing GSoC 2015 program outcome

2015-09-27 Thread Stefano Sabatini
On date Sunday 2015-09-27 15:28:50 +0200, James Darnley encoded: > On 2015-09-27 14:37, Stefano Sabatini wrote: > > --- > > src/index | 234 > > ++ > > 1 file changed, 234 insertions(+) > > >

Re: [FFmpeg-devel] [PATCH] ffmpeg/web/index: add news describing GSoC 2015 program outcome

2015-09-27 Thread Stefano Sabatini
On date Sunday 2015-09-27 09:44:33 -0400, Ganesh Ajjanagadde encoded: > On Sun, Sep 27, 2015 at 8:37 AM, Stefano Sabatini wrote: > > --- > > src/index | 234 > > ++ > > 1 file changed, 234 insertions(+) [.

Re: [FFmpeg-devel] [PATCHv4] ffplay: add support for interactive volume control

2015-09-27 Thread Stefano Sabatini
On date Sunday 2015-09-27 10:41:37 -0400, Ganesh Ajjanagadde encoded: > This is a feature heavily inspired by the mpv player. At the moment, methods > for adjusting volume in ffplay are rather clumsy: either one needs to set it > system-wide, or one needs to set it via the volume filter. > > This

Re: [FFmpeg-devel] Getting timestamp from transport stream

2015-09-27 Thread Stefano Sabatini
On date Saturday 2015-09-26 12:48:33 -0700, Sabur Hassan Baidya encoded: > Hi, > > I am a newbie to ffmpeg. I created a transport stream from encoded mp4 file > using ffmpeg command. Now I am trying to send the packets of the transport > stream over UDP. I found that there are ffmpeg commands for

Re: [FFmpeg-devel] [PATCHv2] doc/ffplay, ffplay: add information regarding volume control

2015-09-27 Thread Stefano Sabatini
On date Sunday 2015-09-27 12:38:34 -0400, Ganesh Ajjanagadde encoded: > ffplay now supports dynamic volume control. This documents the supported > behavior. > > Signed-off-by: Ganesh Ajjanagadde > --- > doc/ffplay.texi | 9 + > ffplay.c| 3 +++ > 2 files changed, 12 insertions(+)

Re: [FFmpeg-devel] [PATCH] ffmpeg/web/index: add news describing GSoC 2015 program outcome

2015-09-27 Thread Stefano Sabatini
Glue >From 30992bf2ac753aba638afda96e82bce0b7df654d Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 27 Sep 2015 14:36:16 +0200 Subject: [PATCH] ffmpeg/web/index: add news describing GSoC 2015 program outcome --- src/index | 234 +++

Re: [FFmpeg-devel] [PATCH] ffmpeg/web/index: add news describing GSoC 2015 program outcome

2015-09-29 Thread Stefano Sabatini
On date Monday 2015-09-28 22:20:53 -0800, Lou Logan encoded: > On Sun, Sep 27, 2015, at 08:55 AM, Stefano Sabatini wrote: > > > > + 0001-ffmpeg-web-index-add-news-describing-GSoC-2015-progr.patch > > 10k (text/x-diff) > > LGTM. Thanks for writing this. Thanks a

[FFmpeg-devel] [PATCH] tests: add spp test

2015-02-04 Thread Stefano Sabatini
This requires the new sample file matrixbench_mpeg2.lq1.mpg. --- tests/fate/filter-video.mak | 3 +++ tests/ref/fate/filter-spp | 26 ++ 2 files changed, 29 insertions(+) create mode 100644 tests/ref/fate/filter-spp diff --git a/tests/fate/filter-video.mak b/tests/fate

Re: [FFmpeg-devel] [PATCH 1/7] ffprobe: Change string_validation to int, its accessed via AVOption as int

2015-02-04 Thread Stefano Sabatini
On date Monday 2015-02-02 23:22:09 +0100, Michael Niedermayer encoded: > Signed-off-by: Michael Niedermayer > --- > ffprobe.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/ffprobe.c b/ffprobe.c > index d352bb6b..30f9cba 100644 > --- a/ffprobe.c > +++ b/ffprobe.c > @

Re: [FFmpeg-devel] [PATCH 3/3] update docs: remove the non-negative number requirement for start_number

2015-02-04 Thread Stefano Sabatini
On date Tuesday 2015-02-03 11:26:13 -0800, Liviu Oniciuc encoded: > --- > doc/muxers.texi | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index b0bed7e..a8225fc 100644 > --- a/doc/muxers.texi > +++ b/doc/muxers.texi > @@ -381,8 +381,7

Re: [FFmpeg-devel] Adding Force Style option in Subtitles Filter

2015-02-04 Thread Stefano Sabatini
On date Wednesday 2015-02-04 01:30:09 +0530, Eejya Singh encoded: > Hi, > I've implemented a force_style option in the subtitles filter. Kindly find > the patch attached. > > -- > Eejya Singh, > 3rd year undergraduate, > Computer Science, > BITS Pilani Goa Campus > From 88014fde69b249d3b1cb8e6bd

Re: [FFmpeg-devel] Adding Force Style option in Subtitles Filter

2015-02-05 Thread Stefano Sabatini
On date Thursday 2015-02-05 16:16:15 +0530, Eejya Singh encoded: [...] > From c0d6197f1936445a23b9eb726de24ed54551c675 Mon Sep 17 00:00:00 2001 > From: Eejya Singh > Date: Wed, 28 Jan 2015 17:41:42 +0530 > Subject: [PATCH] Adding Force Style option in Subtitles Filter Change the name of the patc

Re: [FFmpeg-devel] [PATCH 1/7] ffprobe: Change string_validation to int, its accessed via AVOption as int

2015-02-05 Thread Stefano Sabatini
On date Wednesday 2015-02-04 16:10:03 +0100, Michael Niedermayer encoded: > On Wed, Feb 04, 2015 at 03:23:59PM +0100, Michael Niedermayer wrote: > > On Wed, Feb 04, 2015 at 12:34:53PM +0100, Stefano Sabatini wrote: > > > On date Monday 2015-02-02 23:22:09 +0100, Michael N

Re: [FFmpeg-devel] [PATCH] tests: add spp test

2015-02-05 Thread Stefano Sabatini
On date Wednesday 2015-02-04 16:22:02 +0100, Michael Niedermayer encoded: > On Wed, Feb 04, 2015 at 12:52:05PM +0100, Stefano Sabatini wrote: > > On date Wednesday 2015-02-04 12:26:15 +0100, Stefano Sabatini encoded: > > > This requires the new sample file matrixb

Re: [FFmpeg-devel] [PATCH] tests: add spp test

2015-02-05 Thread Stefano Sabatini
On date Wednesday 2015-02-04 16:18:32 +0100, Michael Niedermayer encoded: > On Wed, Feb 04, 2015 at 12:26:15PM +0100, Stefano Sabatini wrote: > > This requires the new sample file matrixbench_mpeg2.lq1.mpg. > > --- > > tests/fate/filter-video.mak | 3 +++ > > tests

Re: [FFmpeg-devel] Adding Force Style option in Subtitles Filter

2015-02-06 Thread Stefano Sabatini
On date Thursday 2015-02-05 22:12:08 +0530, Eejya Singh encoded: [...] > From ed526a03c939055e2b9f931a0cb4e0e22b7b5b04 Mon Sep 17 00:00:00 2001 > From: Eejya Singh > Date: Wed, 28 Jan 2015 17:41:42 +0530 > Subject: [PATCH] lavfi/subtitles: add force_style option > > Signed-off-by: Eejya Singh >

Re: [FFmpeg-devel] [PATCH 1/7] ffprobe: Change string_validation to int, its accessed via AVOption as int

2015-02-06 Thread Stefano Sabatini
On date Thursday 2015-02-05 23:03:56 +0100, Michael Niedermayer encoded: > On Thu, Feb 05, 2015 at 12:10:12PM +0100, Stefano Sabatini wrote: > > On date Wednesday 2015-02-04 16:10:03 +0100, Michael Niedermayer encoded: [...] > > > > the enum might be a different data type th

Re: [FFmpeg-devel] [PATCH] tests: add spp test

2015-02-06 Thread Stefano Sabatini
On date Thursday 2015-02-05 22:57:31 +0100, Clément Bœsch encoded: > On Thu, Feb 05, 2015 at 06:04:56PM +0100, Michael Niedermayer wrote: > > On Thu, Feb 05, 2015 at 12:49:20PM +0100, Stefano Sabatini wrote: > > > On date Wednesday 2015-02-04 16:18:32 +0100, Michael Niedermayer e

[FFmpeg-devel] [GSOC-2015] Call for mentors for GSOC 2015

2015-02-16 Thread Stefano Sabatini
Hi folks, we decided to participate in GSOC 2015 also this year, and we setup a page on the wiki: http://trac.ffmpeg.org/wiki/SponsoringPrograms/GSoC/2015 Check also: http://www.google-melange.com/gsoc/events/google/gsoc2015 Michael, Reynaldo, and me will act as administrators for the program. A

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-02-19 Thread Stefano Sabatini
On date Thursday 2015-02-19 17:13:15 +0530, Arwa Arif encoded: > Updated the patch. > From 66a8c9d03995c9e7c6ccc05fb9b20756f51c17f4 Mon Sep 17 00:00:00 2001 > From: Arwa Arif > Date: Thu, 19 Feb 2015 01:26:44 +0530 > Subject: [PATCH] Add process_command to eq. > > --- > doc/filters.texi|

Re: [FFmpeg-devel] [PATCH] doc/filters.texi: Added reference link to video size syntax description

2015-02-24 Thread Stefano Sabatini
On date Tuesday 2015-02-24 13:23:56 +0100, Tobias Rapp encoded: > Attached patch updates the filter option documentation text to link to > ffmpeg-utils documentation for video size syntax description. > From 3c73ad81f31eedde3ed7f500af1ed23a5458652b Mon Sep 17 00:00:00 2001 > From: Tobias Rapp > D

Re: [FFmpeg-devel] [PATCH] Port FFT domain filter.

2015-03-01 Thread Stefano Sabatini
On date Saturday 2015-02-28 20:22:49 +0530, Arwa Arif encoded: > Updated the patch. > From ba761516b97b146f4c62d6c5c08dc5ea02c06af5 Mon Sep 17 00:00:00 2001 > From: Arwa Arif > Date: Tue, 24 Feb 2015 12:17:30 +0530 > Subject: [PATCH] Port FFT domain filter. Subject: lavfi: add FFT domain filter

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-04 Thread Stefano Sabatini
On date Friday 2015-02-20 01:11:40 +0100, Stefano Sabatini encoded: > On date Thursday 2015-02-19 17:13:15 +0530, Arwa Arif encoded: > > Updated the patch. > > > From 66a8c9d03995c9e7c6ccc05fb9b20756f51c17f4 Mon Sep 17 00:00:00 2001 > > From: Arwa Arif > > Date: T

Re: [FFmpeg-devel] Post-processing filter Documentation

2015-03-10 Thread Stefano Sabatini
gt; > > On Thu, Jan 29, 2015 at 5:18 PM, Stefano Sabatini > > > > wrote: > > > > > > > > > On date Thursday 2015-01-29 03:46:42 +0530, Arwa Arif encoded: > > > > > > I have updated the page with new images. > > > > >

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-10 Thread Stefano Sabatini
On date Tuesday 2015-03-10 00:27:52 +0530, Arwa Arif encoded: > On Fri, Feb 20, 2015 at 5:41 AM, Stefano Sabatini > wrote: > > > On date Thursday 2015-02-19 17:13:15 +0530, Arwa Arif encoded: > > > Updated the patch. > > > > > From 66a8c9d03995c9e7c6ccc

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-10 Thread Stefano Sabatini
On date Monday 2015-03-09 19:54:57 +0530, Arwa Arif encoded: > I was going through the code, and I realized that I have made a mistake. I > have corrected the code, and attached the corresponding patch. > From 2ebd299b55a34914d5549f21d264e8cb7f5f605d Mon Sep 17 00:00:00 2001 > From: Arwa Arif > D

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-11 Thread Stefano Sabatini
On date Wednesday 2015-03-11 10:55:07 +0530, Arwa Arif encoded: > On Tue, Mar 10, 2015 at 2:41 PM, Stefano Sabatini > wrote: [...] > > > There are no parameters accepted by the expressions. I will add some > > > examples in the doc. > > > > Look how it is done

[FFmpeg-devel] [PATCH] lavfi/eq: factorize code in process_command through a macro

2015-03-13 Thread Stefano Sabatini
--- libavfilter/vf_eq.c | 56 ++--- 1 file changed, 15 insertions(+), 41 deletions(-) diff --git a/libavfilter/vf_eq.c b/libavfilter/vf_eq.c index 980e9ca..e1aa206 100644 --- a/libavfilter/vf_eq.c +++ b/libavfilter/vf_eq.c @@ -282,48 +282,22 @@ stat

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-13 Thread Stefano Sabatini
k expression evaluation In particular, add support for t, pos, n, r parameters, and add an eval mode option. Also, partially reword option documentation. With several major edit by Stefano Sabatini. Signed-off-by: Stefano Sabatini --- doc/filters.texi| 70

[FFmpeg-devel] [PATCH] lavf/segment: [WIP] add support to segmentation expression

2015-03-13 Thread Stefano Sabatini
TODO: add documentation, add support to chapters. --- libavformat/segment.c | 57 +++ 1 file changed, 57 insertions(+) diff --git a/libavformat/segment.c b/libavformat/segment.c index b65a2eb..794504a 100644 --- a/libavformat/segment.c +++ b/libavfo

[FFmpeg-devel] [PATCH] lavf/segment: do not set default value for segment_time option

2015-03-15 Thread Stefano Sabatini
Also allows a negative value to allow to never split the input. This changes the default behavior, to never split the input if an explicit value is not set. TODO: bump micro. --- doc/muxers.texi | 11 +++ libavformat/segment.c | 9 - 2 files changed, 11 insertions(+), 9 de

Re: [FFmpeg-devel] [PATCH] lavf/segment: [WIP] add support to segmentation expression

2015-03-15 Thread Stefano Sabatini
On date Friday 2015-03-13 19:34:14 +0100, Stefano Sabatini encoded: > TODO: add documentation, add support to chapters. > --- > libavformat/segment.c | 57 > +++ > 1 file changed, 57 insertions(+) Up, I'm a bit dissatisfied b

Re: [FFmpeg-devel] [PATCH] lavfi/eq: factorize code in process_command through a macro

2015-03-15 Thread Stefano Sabatini
On date Friday 2015-03-13 20:05:35 +0100, Michael Niedermayer encoded: > On Fri, Mar 13, 2015 at 05:16:53PM +0100, Stefano Sabatini wrote: > > --- > > libavfilter/vf_eq.c | 56 > > ++--- > > 1 file changed, 15 insertions

Re: [FFmpeg-devel] [PATCH 1/5] avfilter/formats: remove unused COPY_INT_LIST() macro

2015-03-15 Thread Stefano Sabatini
On date Sunday 2015-03-15 14:24:26 +0100, Clément Bœsch encoded: > This macro is unused since 247fa6c27c4589d0f7a427c520d782edbb6de060. > --- > libavfilter/formats.c | 12 > 1 file changed, 12 deletions(-) > > diff --git a/libavfilter/formats.c b/libavfilter/formats.c > index f25328c

Re: [FFmpeg-devel] [PATCH 2/5] avfilter/formats: use av_realloc_array in ADD_FORMAT()

2015-03-15 Thread Stefano Sabatini
On date Sunday 2015-03-15 14:24:27 +0100, Clément Bœsch encoded: > --- > libavfilter/formats.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavfilter/formats.c b/libavfilter/formats.c > index 1fc7fa6..896ceeb 100644 > --- a/libavfilter/formats.c > +++ b/libavfilt

<    5   6   7   8   9   10   11   12   13   14   >