Re: [FFmpeg-devel] [PATCH] avformat/options_table, doc/formats: clarify meaning of igndts as per definition in avformat.h

2023-12-11 Thread Stefano Sabatini
On date Saturday 2023-12-09 21:05:13 -0600, Marth64 wrote: > This confused me for a long time, hopefully this is helpful to others. > The definition in avformat.h says "Ignore DTS on frames that contain both DTS > & PTS" > > Signed-off-by: Marth64 > --- > doc/formats.texi| 2 +- > l

Re: [FFmpeg-devel] [PATCH] gdigrab: Allow capturing a window by its handle

2023-12-11 Thread Stefano Sabatini
On date Monday 2023-12-11 02:52:01 +0100, ffmpeg-devel Mailing List wrote: > x11grab can capture windows by their ID, but gdigrab can only capture windows > by their names, internally calling FindWindowW to lookup its handle. > > This patch simply allows the user to specify a window handle direct

Re: [FFmpeg-devel] [PATCH 01/35] avcodec/proresenc_kostya: remove an unnecessary parenthesis level in MAKE_CODE() macro

2023-12-11 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:02 +0100, Clément Bœsch wrote: > --- > libavcodec/proresenc_kostya.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/proresenc_kostya.c b/libavcodec/proresenc_kostya.c > index 52fe5639b1..58fc340879 100644 > --- a/libavcodec/pror

Re: [FFmpeg-devel] [PATCH 02/35] avcodec/proresenc_kostya: remove unused plane factor variables

2023-12-11 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:03 +0100, Clément Bœsch wrote: > --- > libavcodec/proresenc_kostya.c | 36 --- > 1 file changed, 12 insertions(+), 24 deletions(-) > > diff --git a/libavcodec/proresenc_kostya.c b/libavcodec/proresenc_kostya.c > index 58fc340879..7ae

Re: [FFmpeg-devel] [PATCH 03/35] avcodec/proresenc_kostya: remove redundant codebook assignments

2023-12-11 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:04 +0100, Clément Bœsch wrote: > This is already assigned at declaration. > --- > libavcodec/proresenc_kostya.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/libavcodec/proresenc_kostya.c b/libavcodec/proresenc_kostya.c > index 7aed3974c3..6e1d5a0cef 10

Re: [FFmpeg-devel] [PATCH 04/35] avcodec/proresenc_anatoliy: move run/lev to codebook LUT to shared proresdata

2023-12-11 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:05 +0100, Clément Bœsch wrote: > This is going to be shared with proresenc_kostya in the upcoming commit. > --- > libavcodec/proresdata.c | 6 ++ > libavcodec/proresdata.h | 2 ++ > libavcodec/proresenc_anatoliy.c | 9 ++--- > 3 files changed

Re: [FFmpeg-devel] [PATCH 04/35] avcodec/proresenc_anatoliy: move run/lev to codebook LUT to shared proresdata

2023-12-12 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:05 +0100, Clément Bœsch wrote: > This is going to be shared with proresenc_kostya in the upcoming commit. > --- > libavcodec/proresdata.c | 6 ++ > libavcodec/proresdata.h | 2 ++ > libavcodec/proresenc_anatoliy.c | 9 ++--- > 3 files changed

Re: [FFmpeg-devel] [PATCH 05/35] avcodec/proresenc_kostya: remove one LUT indirection for run/level to codebook mapping

2023-12-12 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:06 +0100, Clément Bœsch wrote: > This is following the same logic as proresenc_anatoliy. > --- > libavcodec/proresenc_kostya.c | 47 +++ > 1 file changed, 14 insertions(+), 33 deletions(-) > > diff --git a/libavcodec/proresenc_kostya

Re: [FFmpeg-devel] [RFC] fftools/ffmpeg and libavdevice/sdl issue

2023-12-13 Thread Stefano Sabatini
On date Wednesday 2023-12-13 10:08:45 +0100, Anton Khirnov wrote: > Quoting Zhao Zhili (2023-12-12 18:27:39) [...] > Honestly I don't see how this could be done in ffmpeg CLI without > disgusting hacks, but before that the question is: > why is there an SDL > "muxer" and why would anyone want to u

[FFmpeg-devel] [PATCH] lavfi/overlay: factorize definition of planar and package blending functions

2023-12-16 Thread Stefano Sabatini
--- libavfilter/vf_overlay.c | 260 --- 1 file changed, 53 insertions(+), 207 deletions(-) diff --git a/libavfilter/vf_overlay.c b/libavfilter/vf_overlay.c index fa39abb23a..caf0634b51 100644 --- a/libavfilter/vf_overlay.c +++ b/libavfilter/vf_overlay.c @@ -690

Re: [FFmpeg-devel] [RFC] fftools/ffmpeg and libavdevice/sdl issue

2023-12-16 Thread Stefano Sabatini
On date Thursday 2023-12-14 10:35:56 +0100, Nicolas George wrote: > Anton Khirnov (12023-12-14): [...] > > I have to strongly disagree. This is neither practically workable, > > nor a good goal to aim at. > > And I strongly agree with Stefano. Having the tools just thin wrappers > around the libra

Re: [FFmpeg-devel] [PATCH v3] gdigrab: Allow capturing a window by its handle

2023-12-16 Thread Stefano Sabatini
On date Thursday 2023-12-14 11:32:44 +0100, Lena wrote: > Updated the wording of the documentation, and added error checking for strtol. > > I looked at how other parts of the codebase check for errors on strtol and > implemented it that way (iec61883, filter_units_bsf, etc). > > As for checking

Re: [FFmpeg-devel] [PATCH 1/2] lavfi: introduce textutils

2023-12-16 Thread Stefano Sabatini
On date Saturday 2023-12-09 19:12:29 +0100, Stefano Sabatini wrote: > On date Sunday 2023-12-03 16:05:40 +0100, Stefano Sabatini wrote: > > On date Thursday 2023-11-30 01:49:13 +0100, Stefano Sabatini wrote: > > > Generalize drawtext utilities to make them usable in other filter

Re: [FFmpeg-devel] [PATCH 06/35] avcodec/proresenc_anatoliy: remove duplicated define

2023-12-16 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:07 +0100, Clément Bœsch wrote: > This is already defined in proresdata.h > --- > libavcodec/proresenc_anatoliy.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c > index 6b2e513bed..c6f49be9

Re: [FFmpeg-devel] [PATCH 07/35] avcodec/proresenc_anatoliy: move DC codebook LUT to shared proresdata

2023-12-16 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:08 +0100, Clément Bœsch wrote: > This is going to be shared with proresenc_kostya in the upcoming commit. > --- > libavcodec/proresdata.c | 2 ++ > libavcodec/proresdata.h | 1 + > libavcodec/proresenc_anatoliy.c | 3 +-- > 3 files changed, 4 inserti

Re: [FFmpeg-devel] [PATCH 08/35] avcodec/proresenc_kostya: save a few operations in DC encoding

2023-12-16 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:09 +0100, Clément Bœsch wrote: > This matches the logic from proresenc_anatoliy. > --- > libavcodec/proresenc_kostya.c | 21 ++--- > 1 file changed, 6 insertions(+), 15 deletions(-) LGTM. ___ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 09/35] avcodec/proresenc_kostya: fix chroma quantisation matrix in frame header

2023-12-16 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:10 +0100, Clément Bœsch wrote: > --- > libavcodec/proresenc_kostya.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/proresenc_kostya.c b/libavcodec/proresenc_kostya.c > index 2d45f9a685..103051830a 100644 > --- a/libavcodec/pror

Re: [FFmpeg-devel] [PATCH 2/2] lavfi: add qrencodesrc source

2023-12-17 Thread Stefano Sabatini
On date Saturday 2023-12-09 19:13:46 +0100, Stefano Sabatini wrote: > On date Thursday 2023-11-30 01:49:14 +0100, Stefano Sabatini wrote: > > --- > > configure | 4 + > > libavfilter/Makefile| 1 + > > libavfilter/allfilters.c

Re: [FFmpeg-devel] [PATCH v4] gdigrab: Allow capturing a window by its handle

2023-12-17 Thread Stefano Sabatini
On date Sunday 2023-12-17 18:29:33 +0100, Lena wrote: > Added more context in the error message and did a final test that it all > works. > > Thanks for the smooth patch submission process! > > > x11grab can capture windows by their ID, but gdigrab can only capture windows > by their names, in

Re: [FFmpeg-devel] [PATCH 10/35] avcodec/proresenc_kostya: simplify quantization matrix bytestream writing

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:11 +0100, Clément Bœsch wrote: > --- > libavcodec/proresenc_kostya.c | 8 ++-- > 1 file changed, 2 insertions(+), 6 deletions(-) > > diff --git a/libavcodec/proresenc_kostya.c b/libavcodec/proresenc_kostya.c > index 103051830a..e0aa7cf47a 100644 > --- a/libavco

Re: [FFmpeg-devel] [PATCH 11/35] avcodec/proresenc_anatoliy: use FRAME_ID defined in proresdata.h

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:12 +0100, Clément Bœsch wrote: > --- > libavcodec/proresenc_anatoliy.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c > index d6f5cefc16..804ff6ddf7 100644 > --- a/libavcode

Re: [FFmpeg-devel] [PATCH 12/35] avcodec/proresenc_anatoliy: shuffle encode_codeword() code to match Kostya encoder

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:13 +0100, Clément Bœsch wrote: > Code is functionally identical, it's just rename of variables, cosmetics > and branch logic shuffling. > --- > libavcodec/proresenc_anatoliy.c | 45 + > 1 file changed, 23 insertions(+), 22 deletions(-

Re: [FFmpeg-devel] [PATCH 13/35] avcodec/proresenc_anatoliy: rework encode_codeword() prototype

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:14 +0100, Clément Bœsch wrote: > This matches the function of the same name in proresenc_kostya. > --- > libavcodec/proresenc_anatoliy.c | 10 +- > 1 file changed, 5 insertions(+), 5 deletions(-) LGTM. ___ ffmpeg-

Re: [FFmpeg-devel] [PATCH 14/35] avcodec/proresenc_anatoliy: inline QSCALE()

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:15 +0100, Clément Bœsch wrote: > Also replaces 16384 with 0x4000. > > This makes the function slightly closer to same function in proresenc_kostya. LGTM (and possibly improves readability by removing an unnecessary indirection).

Re: [FFmpeg-devel] [PATCH 15/35] avcodec/proresenc_anatoliy: rename new_code/code to code/codebook

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:16 +0100, Clément Bœsch wrote: > This makes the function closer to encode_dcs() in proresenc_kostya. > --- > libavcodec/proresenc_anatoliy.c | 16 > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff --git a/libavcodec/proresenc_anatoliy.c b/

Re: [FFmpeg-devel] [PATCH 16/35] avcodec/proresenc_anatoliy: execute codebook FFMIN() at assignment

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:17 +0100, Clément Bœsch wrote: > This makes the function closer to encode_dcs() in proresenc_kostya. > --- > libavcodec/proresenc_anatoliy.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/pr

Re: [FFmpeg-devel] [PATCH 17/35] avcodec/proresenc_anatoliy: reduce DC encoding function prototype differences with Kostya encoder

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:18 +0100, Clément Bœsch wrote: > --- > libavcodec/proresenc_anatoliy.c | 10 +- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c > index f8feff850f..97d681467d 100644 > ---

Re: [FFmpeg-devel] [PATCH 18/35] avcodec/proresenc_anatoliy: directly work with blocks in encode_dcs()

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:19 +0100, Clément Bœsch wrote: > This makes the function closer to encode_dcs() in proresenc_kostya. > --- > libavcodec/proresenc_anatoliy.c | 9 + > 1 file changed, 5 insertions(+), 4 deletions(-) should be good

Re: [FFmpeg-devel] [PATCH 19/35] avcodec/proresenc_anatoliy: import GET_SIGN() macro from Kostya encoder and use it

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:20 +0100, Clément Bœsch wrote: > --- > libavcodec/proresenc_anatoliy.c | 7 --- > 1 file changed, 4 insertions(+), 3 deletions(-) LGTM ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/l

Re: [FFmpeg-devel] [PATCH 20/35] avcodec/proresenc_anatoliy: compute sign only once

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:21 +0100, Clément Bœsch wrote: > This makes the function closer to encode_dcs() in proresenc_kostya. > --- > libavcodec/proresenc_anatoliy.c | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) Should be good.

Re: [FFmpeg-devel] [PATCH 21/35] avcodec/proresenc_anatoliy: rename new_dc to dc

2023-12-17 Thread Stefano Sabatini
On date Monday 2023-12-11 02:35:22 +0100, Clément Bœsch wrote: > This makes the function closer to encode_dcs() in proresenc_kostya. > --- > libavcodec/proresenc_anatoliy.c | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) Should be good.

Re: [FFmpeg-devel] [PATCH v3 1/2] avfilter: Add fsync filter

2023-12-17 Thread Stefano Sabatini
On date Saturday 2023-12-16 09:13:21 +0100, ffmpeg-devel Mailing List wrote: > --- > Changelog| 1 + > MAINTAINERS | 1 + > configure| 2 + > doc/filters.texi | 33 + > libavfilter/Makefile | 1 + > libavfilter/allfilters.c |

Re: [FFmpeg-devel] Reimbursement request for LDP

2019-03-30 Thread Stefano Sabatini
On date Friday 2019-02-22 22:37:34 +0100, Michael Niedermayer encoded: > On Sun, Feb 10, 2019 at 07:53:50PM +0100, Thilo Borgmann wrote: > > Hi, > > > > I'd like to request reimbursement for my travel to the LDP [1]. > > > > Accomodation was sponsored by the LDP team, so travel costs are rather l

Re: [FFmpeg-devel] [CLT2019] FFmpeg at Chemnitzer Linux-Tage

2019-03-30 Thread Stefano Sabatini
On date Saturday 2019-03-30 11:19:11 -0400, Ronald S. Bultje encoded: > Hi, > > On Sat, Mar 30, 2019 at 11:04 AM Thilo Borgmann > wrote: [...] > > For me I ask to reimburse me 62,29 - for gas bringing Carl Eugen and me > > from Berlin to Chemnitz. > > Lost 1/2 receipts, which makes it cheaper thi

Re: [FFmpeg-devel] [CLT2019] FFmpeg at Chemnitzer Linux-Tage

2019-03-30 Thread Stefano Sabatini
On date Saturday 2019-03-30 16:04:23 +0100, Thilo Borgmann encoded: > Am 23.03.19 um 16:11 schrieb Thilo Borgmann: > > Hi, > > > >> FFmpeg has been accepted for CLT 2019 in Chemnitz, Germany! > >> This "Chemnitzer Linux Tage" will take place on 16th and 17th of March. > >> You can find more detail

Re: [FFmpeg-devel] Reimbursement request

2018-11-10 Thread Stefano Sabatini
On date Monday 2018-11-05 16:12:04 +0100, Michael Niedermayer encoded: > On Mon, Nov 05, 2018 at 12:06:46PM -0200, Pedro Arthur wrote: > > Hi, > > I'm requesting the reimbursement of travel expenses for the Google > > Mentor Summit. > > I mentored the Super Resolution project, more details can be f

Re: [FFmpeg-devel] Reimbursement request

2020-03-15 Thread Stefano Sabatini
On date Tuesday 2020-03-10 01:59:17 +0100, Carl Eugen Hoyos wrote: > Hi! > > The Chemnitzer Linuxtage were canceled yesterday because of the Coronavirus. > I request reimbursement of €138,86 for the flight to Germany I had > booked last month. > > Thank you, Carl Eugen Approved on my side, given

[FFmpeg-devel] [ffmpeg-web][PATCH] Drop my entry from the consulting list

2021-04-18 Thread Stefano Sabatini
Hi, I've not been really active in the last period and this patch clarifies this condition. Best regards, Stefano >From 38bc43827b9a6b2d967514323a718abee7e7211d Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 18 Apr 2021 22:23:20 +0200 Subject: [PATCH] consulting: remove

[FFmpeg-devel] [PATCH 1/2] lavf/avio: add avio_vprintf()

2021-04-18 Thread Stefano Sabatini
This new function makes it possible to use avio_printf() functionality from a function taking a variable list of arguments. --- doc/APIchanges| 3 +++ libavformat/avio.h| 6 ++ libavformat/aviobuf.c | 17 + libavformat/version.h | 2 +- 4 files changed, 23 insert

[FFmpeg-devel] [PATCH 2/2] ffprobe: add -o option

2021-04-18 Thread Stefano Sabatini
This enables printing to a resource specified with -o OUTPUT. Address issue: http://trac.ffmpeg.org/ticket/8024 --- doc/ffprobe.texi | 7 ++ fftools/ffprobe.c | 174 ++ 2 files changed, 120 insertions(+), 61 deletions(-) diff --git a/doc/ffprobe.tex

Re: [FFmpeg-devel] [REFUND-REQUEST] Packaging and Shipping cost AMD GPU

2019-09-11 Thread Stefano Sabatini
On date Monday 2019-09-02 18:24:08 +0200, Timo Rothenpieler wrote: > I have sent one of my spare AMD GPUs to Rodger Combs for work on AMF and > AMF/Vulkan integration. > > Since there is personal information on the receipts, I won't post them here, > but can send them to the responsible person on

Re: [FFmpeg-devel] Reimbursement request

2019-10-30 Thread Stefano Sabatini
On date Tuesday 2019-10-29 16:34:04 +0800, Steven Liu wrote: > Hi, > I'm requesting the reimbursement of travel expenses for the Google Mentor > Summit. > I mentored the Derain project, more details can be found in [1]. > > > Flight (CNY) ¥ 7062.00 > One night hotel (CNY) ¥ 632.00 > >

Re: [FFmpeg-devel] Reimbursement request

2019-10-30 Thread Stefano Sabatini
On date Wednesday 2019-10-30 18:21:45 +0100, Paul B Mahol wrote: > On 10/30/19, Kieran Kunhya wrote: [...] > >> Carl and Michael took all the remaining money, sorry. > >> > > > > This is an unacceptable comment. > > Nobody confirmed nor denied it. Of course I deny this, all the refund/expense r

Re: [FFmpeg-devel] Reimbursement request

2019-11-01 Thread Stefano Sabatini
On date Wednesday 2019-10-30 21:25:24 +0100, Carl Eugen Hoyos wrote: > Hi! > > I am requesting reimbursement for my travel to the Google mentor summit. > My total travelling expenses were € 90,90 LGTM, please fill the form here: https://www.spi-inc.org/treasurer/reimbursement-form/ and send it t

Re: [FFmpeg-devel] Reimbursement request LDP 2019

2019-11-21 Thread Stefano Sabatini
On date Monday 2019-11-18 12:44:37 +0100, Thilo Borgmann wrote: > Hi, > > here comes my request for reimbursements for attending the Linux Days Prague > 2019. > > Quite cheap, since accomodation is free. So there is a just bus ticket for > 51,87 EUR. Looks good for me, thanks. > Prepared the

Re: [FFmpeg-devel] Reimbursement request NTTW4 in Budapest

2019-12-09 Thread Stefano Sabatini
Il dom 8 dic 2019, 14:37 Carl Eugen Hoyos ha scritto: > Hi! > > I gave a talk at NTTW4 in Budapest last week and participated (late) > in the community day. > I request reimbursement for travel and accommodation, together € 78,- > and will prepare the usual paperwork for SPI. > LGTM, thanks. >

Re: [FFmpeg-devel] Reimbursement FOSDEM

2020-02-09 Thread Stefano Sabatini
On Sun, Feb 9, 2020 at 1:02 PM Michael Niedermayer wrote: > On Tue, Feb 04, 2020 at 09:46:35AM +0100, Thilo Borgmann wrote: > > Hi, > > > > > For travelling from Vienna to FOSDEM and back, I request > > > re-imbursement of €282,16 > > > > for the same reason I also request reimbursement for my fli

Re: [FFmpeg-devel] [PATCH 1/2] lavf/avio: add avio_vprintf()

2021-04-21 Thread Stefano Sabatini
On date Sunday 2021-04-18 23:30:57 +0200, Stefano Sabatini wrote: > This new function makes it possible to use avio_printf() functionality from > a function taking a variable list of arguments. > --- > doc/APIchanges| 3 +++ > libavformat/avio.h| 6 ++ > lib

Re: [FFmpeg-devel] [PATCH 2/2] ffprobe: add -o option

2021-04-21 Thread Stefano Sabatini
On date Monday 2021-04-19 11:26:49 +0200, Michael Niedermayer wrote: > On Sun, Apr 18, 2021 at 11:30:58PM +0200, Stefano Sabatini wrote: > > This enables printing to a resource specified with -o OUTPUT. > > > > Address issue: http://trac.ffmpeg.org/ticket/8024 > > --- &

Re: [FFmpeg-devel] Hardware purchase request

2021-06-24 Thread Stefano Sabatini
On Thu, Jun 24, 2021 at 2:04 PM Michael Niedermayer wrote: [...] > > iam also adding stefano to the CC as there was some communication between > > a few developers and SPI about this expense and iam not sure stefano is > > following > > the ML > > to re-animate this thread > cryptos seem down and

Re: [FFmpeg-devel] Hardware purchase request

2021-07-08 Thread Stefano Sabatini
On Mon, Jun 28, 2021 at 2:50 AM Lynne wrote: > > 27 Jun 2021, 19:33 by kier...@obe.tv: > > >> > >> I'm thinking of getting a: > >> LG UltraGear 27GN950-B > >> > > > > Can I ask why you need a ~£1000 monitor? What does it do that others can't? > > > > It's 850, with occasional dips to 770 euros. I

Re: [FFmpeg-devel] Hardware purchase request

2021-07-31 Thread Stefano Sabatini
On Thu, Jul 29, 2021 at 8:10 PM Michael Niedermayer wrote: > > On Thu, Jul 29, 2021 at 01:07:39AM +0200, Lynne wrote: [...] > > > Fractal Design Ion+ 860 W > > > Fractal Design Define 7 Compact > > > XFX Speedster MERC 319 Radeon RX 6900 XT > > > Samsung 980 PRO 2TB > > > LG UltraGear 27GN950-B >

Re: [FFmpeg-devel] Hardware purchase request

2021-07-31 Thread Stefano Sabatini
On Sat, Jul 31, 2021 at 8:02 PM Lynne wrote: > > 31 Jul 2021, 18:24 by stefa...@gmail.com: [...] > >> > Ping (I pinged Stefano 2 weeks ago as well, no response). > >> > >> is there something i can do ? > >> > >> just trying to make sure we are not stuck in a misunderstanding, as there > >> was >

[FFmpeg-devel] [PATCH] lavc/mpegvideo_enc: allow to force low_delay by increasing strict_std_compliance

2017-05-23 Thread Stefano Sabatini
Forcing low_delay can be useful, even if not officially supported. --- libavcodec/mpegvideo_enc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index db241c8..1123788 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/li

[FFmpeg-devel] [PATCH] examples/encode_video: add log

2017-05-23 Thread Stefano Sabatini
This helps to visualize how the send/receive API works. --- doc/examples/encode_video.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/examples/encode_video.c b/doc/examples/encode_video.c index d2075c1..107bea2 100644 --- a/doc/examples/encode_video.c +++ b/doc/exampl

[FFmpeg-devel] [PATCH] examples/encode_video: slightly improve error reporting

2017-05-23 Thread Stefano Sabatini
--- doc/examples/encode_video.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/examples/encode_video.c b/doc/examples/encode_video.c index 107bea2..8cd1321 100644 --- a/doc/examples/encode_video.c +++ b/doc/examples/encode_video.c @@ -89,7 +89,7 @@ int main(int argc

Re: [FFmpeg-devel] [PATCH] lavc/mpegvideo_enc: allow to force low_delay by increasing strict_std_compliance

2017-05-24 Thread Stefano Sabatini
On date Tuesday 2017-05-23 15:07:31 +0200, Moritz Barsnick encoded: > On Tue, May 23, 2017 at 12:28:48 +0200, Stefano Sabatini wrote: > > -if (s->codec_id != AV_CODEC_ID_MPEG2VIDEO) { > > +if (s->codec_id != AV_CODEC_ID_MPEG2VIDEO && > > +

Re: [FFmpeg-devel] [PATCH] lavc/mpegvideo_enc: allow to force low_delay by increasing strict_std_compliance

2017-06-06 Thread Stefano Sabatini
On date Saturday 2017-05-27 00:07:38 +0200, Michael Niedermayer encoded: > On Wed, May 24, 2017 at 10:31:10AM +0200, Stefano Sabatini wrote: [...] > > mpegvideo_enc.c |6 -- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > 0fa1dff6e9dbb5122cbea81ba56eb1892a0

Re: [FFmpeg-devel] Refund request of travel costs for GSoC Summit 2017

2017-11-21 Thread Stefano Sabatini
On Sat, Nov 18, 2017 at 6:26 PM, Thilo Borgmann wrote: > Hi, > > some time ago Carl Eugen and me went to the GSoC Summit. See review mail > for details. > > Here comes the refund request for my flight. Costs were 478.82€ total, > I'll send the invoice to Stefano privately as usual. > Approved by

Re: [FFmpeg-devel] Refund request of travel costs for GSoC Summit 2017

2017-11-21 Thread Stefano Sabatini
On Mon, Nov 20, 2017 at 1:58 PM, Carl Eugen Hoyos wrote: > 2017-11-18 18:26 GMT+01:00 Thilo Borgmann : > > > some time ago Carl Eugen and me went to the GSoC Summit. > > See review mail for details. > > > > Here comes the refund request for my flight. Costs were 478.82€ total > > I have sent my i

Re: [FFmpeg-devel] Refund request of travel costs for GSoC Summit 2017

2017-12-17 Thread Stefano Sabatini
On date Tuesday 2017-11-21 19:15:33 +0100, Stefano Sabatini encoded: > On Sat, Nov 18, 2017 at 6:26 PM, Thilo Borgmann > wrote: > > > Hi, > > > > some time ago Carl Eugen and me went to the GSoC Summit. See review mail > > for details. > > > > Here

Re: [FFmpeg-devel] Refund request of travel costs for GSoC Summit 2017

2017-12-17 Thread Stefano Sabatini
On date Sunday 2017-12-17 12:11:15 +0100, Stefano Sabatini encoded: > On date Tuesday 2017-11-21 19:15:33 +0100, Stefano Sabatini encoded: > > On Sat, Nov 18, 2017 at 6:26 PM, Thilo Borgmann > > wrote: > > > > > Hi, > > > > > > some time ago Carl

Re: [FFmpeg-devel] Refund request for FFshirt merchandise

2017-12-17 Thread Stefano Sabatini
On date Tuesday 2017-11-21 18:50:44 +0100, Thilo Borgmann encoded: > Hi, > > here comes the refund request for getting us developer T-shirts and > sending them around the world as well as getting a stock of T-shirts > for future developers to come and for giveaways at conferences and > to honored

[FFmpeg-devel] [PATCH] lavf/aviobuf: add ff_get_line2() variant

2016-10-13 Thread Stefano Sabatini
This allows to probe if the read line was partially discarded. --- libavformat/aviobuf.c | 10 +- libavformat/internal.h | 14 ++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 134d627..28183b4 100644 --- a/li

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-10-13 Thread Stefano Sabatini
On date Thursday 2016-09-29 21:55:11 +0200, wm4 encoded: > On Thu, 29 Sep 2016 01:21:01 +0200 > Stefano Sabatini wrote: > > > On date Monday 2016-09-26 18:55:47 +0200, wm4 encoded: > > > On Sun, 25 Sep 2016 19:32:37 +0200 > > > Stefano Sabatini wrote: > >

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-10-18 Thread Stefano Sabatini
On date Friday 2016-10-14 00:11:49 +0200, Moritz Barsnick encoded: > On Thu, Oct 13, 2016 at 19:46:41 +0200, Stefano Sabatini wrote: > > +In particular, can be also used to inject data stream generated by > ^ it can > > > +Unrecognized values are disca

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-10-18 Thread Stefano Sabatini
On date Thursday 2016-09-29 21:02:14 +0100, Josh de Kock encoded: [...] > Are you sure this cannot be done from outside of libav*? It really > seems like something which wouldn't actually be very useful for > anyone else. It can be done outside of libav* (reading from a custom format, and then con

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-10-18 Thread Stefano Sabatini
On date Thursday 2016-10-13 19:46:41 +0200, Stefano Sabatini encoded: > On date Thursday 2016-09-29 21:55:11 +0200, wm4 encoded: [...] > > This seems like a rather special use case. Why does it have a demuxer, > > and can't be in your own C code using libavcodec/libavfo

Re: [FFmpeg-devel] [PATCH] lavf/aviobuf: add ff_get_line2() variant

2016-10-18 Thread Stefano Sabatini
On date Thursday 2016-10-13 21:59:19 +0200, Michael Niedermayer encoded: > On Thu, Oct 13, 2016 at 07:40:59PM +0200, Stefano Sabatini wrote: > > This allows to probe if the read line was partially discarded. > > --- > > libavformat/aviobuf.c | 10 +- > >

Re: [FFmpeg-devel] [PATCH] doc/examples/demuxing_decoding: Drop AVFrame->pts use

2016-10-18 Thread Stefano Sabatini
On date Tuesday 2016-10-18 04:58:52 +0200, Michael Niedermayer encoded: > This code is not correct for git master > > Signed-off-by: Michael Niedermayer > --- > doc/examples/demuxing_decoding.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/doc/examples/demuxing_d

Re: [FFmpeg-devel] [PATCH] lavf/aviobuf: add ff_get_line2() variant

2016-10-20 Thread Stefano Sabatini
On date Tuesday 2016-10-18 16:48:02 +0200, Michael Niedermayer encoded: > On Tue, Oct 18, 2016 at 01:32:12PM +0200, Stefano Sabatini wrote: [...] > > aviobuf.c | 18 +++--- > > internal.h | 14 ++ > > 2 files changed, 29 inser

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-10-25 Thread Stefano Sabatini
On date Wednesday 2016-10-19 17:37:36 +0200, Moritz Barsnick encoded: > On Tue, Oct 18, 2016 at 13:33:27 +0200, Stefano Sabatini wrote: > > > Latest patch in attachment with ffprobe demuxer disabled by default, > > > and extended documentation. (I'm also attach

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-10-25 Thread Stefano Sabatini
On date Tuesday 2016-10-18 16:06:47 +0200, Michael Niedermayer encoded: > On Tue, Oct 18, 2016 at 01:33:27PM +0200, Stefano Sabatini wrote: > > On date Thursday 2016-10-13 19:46:41 +0200, Stefano Sabatini encoded: > > > On date Thursday 2016-09-29 21:55:11

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-10-27 Thread Stefano Sabatini
On date Wednesday 2016-10-26 01:46:35 +0200, Michael Niedermayer encoded: > On Tue, Oct 25, 2016 at 05:07:34PM +0200, Stefano Sabatini wrote: [...] > > 267580c51d49daf94e73a33175c63ecfed6a0bed > > 0002-lavf-add-ffprobe-demuxer.patch > > From 4e0aac4bc00104483859f9950af2ffb15

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-10-31 Thread Stefano Sabatini
On date Thursday 2016-10-27 17:08:50 +0200, Stefano Sabatini encoded: > On date Wednesday 2016-10-26 01:46:35 +0200, Michael Niedermayer encoded: > > On Tue, Oct 25, 2016 at 05:07:34PM +0200, Stefano Sabatini wrote: > [...] > > > 267580c51d49daf94e73a33175c63ecfed6a0bed

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-10-31 Thread Stefano Sabatini
On date Monday 2016-10-31 11:27:17 -0300, James Almer encoded: > On 10/31/2016 11:20 AM, Nicolas George wrote: > > Le decadi 10 brumaire, an CCXXV, Jean-Baptiste Kempf a écrit : > >> I strongly disagree with this patch too. > > > > We do not care about the number of people who disagree, we only ca

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-11-01 Thread Stefano Sabatini
On date Tuesday 2016-11-01 02:45:00 -0300, James Almer encoded: > On 10/31/2016 3:30 PM, Nicolas George wrote: > > Le decadi 10 brumaire, an CCXXV, James Almer a écrit : [...] > > * What benefits do you see for the separate tool approach? > > > > * Can you negate any of these drawbacks? > > I'll

Re: [FFmpeg-devel] Refund request for FFmpeg at LinuxCon 2016

2016-11-03 Thread Stefano Sabatini
On date Wednesday 2016-11-02 11:14:35 +0100, Michael Niedermayer encoded: > On Sun, Oct 16, 2016 at 12:16:25AM +0200, Thomas Volkert wrote: > > Hi, > > > > I'd like to ask for refund of my expenses for LinuxCon (see thread > > "FFmpeg at LinuxCon 2016"): > > > > - 191 € for 2 * 675km by car > >

Re: [FFmpeg-devel] [PATCH] lavf/mpegtsenc: write metadata descriptor for timed ID3 packets

2016-11-06 Thread Stefano Sabatini
On date Sunday 2016-08-21 18:23:21 +0200, Michael Niedermayer encoded: > On Sun, Aug 21, 2016 at 10:44:27AM +0200, Stefano Sabatini wrote: > > On date Saturday 2016-08-20 18:57:52 +0200, Michael Niedermayer encoded: > > > On Sat, Aug 20, 2016 at 03:48:35PM +0200, Stefano Sabatini

[FFmpeg-devel] [PATCH] ffprobe: fix crash in case -of is specified with an empty string

2016-11-17 Thread Stefano Sabatini
Fix trac issue #5957. --- ffprobe.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/ffprobe.c b/ffprobe.c index a2980b3..79fe296 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -3311,6 +3311,12 @@ int main(int argc, char **argv) goto end; } w_name = av_strtok(print_format, "

Re: [FFmpeg-devel] [PATCH] ffprobe: fix crash in case -of is specified with an empty string

2016-11-17 Thread Stefano Sabatini
On date Thursday 2016-11-17 19:57:13 +0100, Andreas Cadhalpun encoded: > On 17.11.2016 12:12, Stefano Sabatini wrote: > > Fix trac issue #5957. > > --- > > ffprobe.c | 6 ++ > > 1 file changed, 6 insertions(+) > > > > diff --git a/ffprobe.c b/ffpr

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-11-24 Thread Stefano Sabatini
On date Tuesday 2016-11-01 15:49:12 +0100, Michael Niedermayer encoded: > On Tue, Nov 01, 2016 at 02:45:00AM -0300, James Almer wrote: [...] > > Libavformat is not a dumping ground for code molded by a single person's > > specific needs, and it is not a library meant to hold your or anyone's > > de

Re: [FFmpeg-devel] [DECISION] Revoke the decision of dropping ffserver

2016-11-29 Thread Stefano Sabatini
On date Monday 2016-11-28 19:15:28 +0100, Nicolas George encoded: > Deadline: 2016-12-06 00:00 UTC. > > I propose, and put to the discussion, that the decision to drop ffserver > is revoked, conditioned to the fixing of the technical issues that lead > to it. > > In other words, if the technical

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-12-05 Thread Stefano Sabatini
On date Thursday 2016-12-01 22:21:17 +0100, Michael Niedermayer encoded: > On Tue, Jun 14, 2016 at 05:55:47PM +0200, Stefano Sabatini wrote: > > On date Wednesday 2016-06-08 18:20:39 +0200, Michael Niedermayer encoded: > > > On Sun, Jun 05, 2016 at 12:56:08PM +0200, Stef

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-12-09 Thread Stefano Sabatini
On date Friday 2016-11-25 11:58:42 +0100, Nicolas George encoded: > Le quintidi 5 frimaire, an CCXXV, Andreas Cadhalpun a écrit : > > I think a better idea would be to require '-strict experimental', > > as code disabled by default does neither get build- nor FATE-tested > > much. > > That is an e

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-12-10 Thread Stefano Sabatini
On date Sunday 2016-12-04 22:54:21 +0100, Andreas Cadhalpun encoded: > On 31.10.2016 09:51, Stefano Sabatini wrote: > > From 7f209e27aa33e8f43444e5cfc44c68f664b69e06 Mon Sep 17 00:00:00 2001 > > From: Nicolas George > > Date: Sat, 11 Jan 2014 19:42:41 +0100 > > Subject

Re: [FFmpeg-devel] [PATCH] lavf: add textdata virtual demuxer and demuxer

2016-07-14 Thread Stefano Sabatini
On date Tuesday 2016-06-28 11:42:42 +0200, Nicolas George encoded: > Le decadi 10 messidor, an CCXXIV, Stefano Sabatini a écrit : > > +The fftextdata bytestream consists of a sequence of packets. Each > > +packet starts with a timestamps expressed in a format recognized by &

Re: [FFmpeg-devel] Outreachy 2016 december

2016-07-25 Thread Stefano Sabatini
In date Friday 2016-07-22 19:18:13 +0200, Michael Niedermayer wrote: > On Wed, Jul 06, 2016 at 11:25:21PM +0200, Michael Niedermayer wrote: > > Hi all > > > > The next Outreachy round starts soon > > FFmpeg has till august 22 IIUC (https://www.gnome.org/outreachy/) > > to express interrest to part

Re: [FFmpeg-devel] [PATCH] lavf/mpegtsenc: add special case for handling timed ID3 packets

2016-07-29 Thread Stefano Sabatini
On date Thursday 2016-05-19 22:20:41 +0200, Michael Niedermayer encoded: > On Thu, May 19, 2016 at 06:45:41PM +0200, Stefano Sabatini wrote: > > Set the stream_id to 0xbd (private_stream_id_1). Tools seem to assume > > that value, and this is consistent with MPEG TS (ITU-T H

Re: [FFmpeg-devel] [PATCH] lavf/mpegtsenc: write metadata descriptor for timed ID3 packets

2016-08-20 Thread Stefano Sabatini
On date Thursday 2016-05-19 18:45:35 +0200, Stefano Sabatini encoded: > This is required since some softwares are not able to correctly recognize > the metadata. > --- > libavformat/mpegtsenc.c | 24 ++-- > 1 file changed, 14 insertions(+), 10 deletions(-) Upd

Re: [FFmpeg-devel] [PATCH] lavf: add textdata virtual demuxer and demuxer

2016-08-20 Thread Stefano Sabatini
On date Tuesday 2016-06-28 11:42:42 +0200, Nicolas George encoded: > Le decadi 10 messidor, an CCXXIV, Stefano Sabatini a écrit : > > +The fftextdata bytestream consists of a sequence of packets. Each > > +packet starts with a timestamps expressed in a format recognized by &

Re: [FFmpeg-devel] [PATCH] lavf/mpegtsenc: write metadata descriptor for timed ID3 packets

2016-08-21 Thread Stefano Sabatini
On date Saturday 2016-08-20 18:57:52 +0200, Michael Niedermayer encoded: > On Sat, Aug 20, 2016 at 03:48:35PM +0200, Stefano Sabatini wrote: > > On date Thursday 2016-05-19 18:45:35 +0200, Stefano Sabatini encoded: > > > This is required since some softwares are not able to c

Re: [FFmpeg-devel] [PATCH] lavf: add textdata virtual demuxer and demuxer

2016-08-23 Thread Stefano Sabatini
On date Saturday 2016-08-20 15:51:46 +0200, Stefano Sabatini encoded: > On date Tuesday 2016-06-28 11:42:42 +0200, Nicolas George encoded: > > Le decadi 10 messidor, an CCXXIV, Stefano Sabatini a écrit : > > > +The fftextdata bytestream consists of a sequence of packets. Each &g

Re: [FFmpeg-devel] FFmpeg in Outreachy Round 13 / 2016-december

2016-08-26 Thread Stefano Sabatini
In data Wednesday 2016-08-24 02:07:17 +0200, Michael Niedermayer ha scritto: > Hi Sarah > > > On Tue, Aug 23, 2016 at 10:04:55AM -0700, Sarah A Sharp wrote: > > Hi Michael, > > > > I'm happy to hear FFmpeg will participate again! Do you know who will > > sponsor your intern(s) and how many inter

Re: [FFmpeg-devel] [PATCH] lavf: add textdata virtual demuxer and demuxer

2016-08-30 Thread Stefano Sabatini
On date Tuesday 2016-08-23 16:53:28 +0200, Nicolas George encoded: > Le septidi 7 fructidor, an CCXXIV, Stefano Sabatini a écrit : > > Bump. > > > > So, basically, what are the features that you want to add? > > I can list a few: > > > > - have multiple

Re: [FFmpeg-devel] [PATCH] lavf: add textdata virtual demuxer and demuxer

2016-08-30 Thread Stefano Sabatini
On date Tuesday 2016-08-30 12:31:27 +0200, Stefano Sabatini encoded: [...] > I rebased the patch, and performed two simple changes in ffprobe (see > attachment), and it's almost working. > > I think supporting the show_compact_data mode should simplify the > format in case the

[FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-09-04 Thread Stefano Sabatini
From: Nicolas George With several modifications and documentation by Stefano Sabatini . Signed-off-by: Nicolas George --- doc/ffprobe-format.texi | 130 libavformat/Makefile | 1 + libavformat/allformats.c | 2 + libavformat/ffprobedec.c | 397

Re: [FFmpeg-devel] [PATCH] lavf: add ffprobe demuxer

2016-09-04 Thread Stefano Sabatini
On date Sunday 2016-09-04 18:27:55 +0200, Paul B Mahol encoded: > On 9/4/16, Stefano Sabatini wrote: > > From: Nicolas George > > > > With several modifications and documentation by Stefano Sabatini > > . > > > > Signed-off-by: Nicolas George >

[FFmpeg-devel] [PATCH] ffprobe: add -show_compact_data option

2016-09-04 Thread Stefano Sabatini
This is meant to slightly reduce the output size. --- ffprobe.c | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ffprobe.c b/ffprobe.c index 42a8d8e..f2c542a 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -99,6 +99,7 @@ static int use_byte_value_binary_prefix = 0; static in

[FFmpeg-devel] [PATCH] ffprobe: add -show_headers_first option

2016-09-04 Thread Stefano Sabatini
This is meant to be used for generating output suitable for the ffprobe_default demuxer. --- ffprobe.c | 30 ++ 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/ffprobe.c b/ffprobe.c index 657867d..42a8d8e 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -98,6 +9

<    1   2   3   4   5   6   7   8   9   10   >