Re: [FFmpeg-devel] [PATCH] doc/faq: update macOS and URLs

2019-02-10 Thread Gyan
On 10-02-2019 10:20 PM, Reto Kromer wrote: Best regards, Reto Pushed as 6174686bc346e24fd146a725a97d77e571ebf5b4 Thanks, Gyan ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH V2] tests/api/api-h264-test: Add AV_NOPTS_VALUE check for AVFrame.pkt_dts

2019-02-10 Thread Jun Zhao
Add AV_NOPTS_VALUE check for AVFrame.pkt_dts to avoid print the pkt_dts as negative number like: "0,3616613, -9223372036854775808, 1001, 3110400, 0x75e37a65" Signed-off-by: Jun Zhao --- tests/api/api-h264-test.c | 10 +++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff -

Re: [FFmpeg-devel] [PATCH 1/3] libavcodec/cbs: Add ability to keep the units array.

2019-02-10 Thread Andreas Rheinhardt
Mark Thompson: > On 05/02/2019 20:08, Andreas Rheinhardt wrote: >> Currently, a fragment's unit array is constantly reallocated during >> splitting of a packet. This commit adds the ability to keep the unit >> array by distinguishing between the number of allocated and the number >> of valid units

[FFmpeg-devel] [PATCH 4/4] lavc/libaribb24: use integer math to calculate font scaling

2019-02-10 Thread Jan Ekström
--- libavcodec/libaribb24.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/libaribb24.c b/libavcodec/libaribb24.c index 28f20ca767..3a59938451 100644 --- a/libavcodec/libaribb24.c +++ b/libavcodec/libaribb24.c @@ -249,11 +249,11 @@ static int libaribb24_h

[FFmpeg-devel] [PATCH 1/4] lavc/libaribb24: add error handling to region handling

2019-02-10 Thread Jan Ekström
Fixes some rather embarrassing mistakes that somehow passed my eyes. * Now catches if memory allocation has failed during bprint usage by checking av_bprint_is_complete(). * Now catches if adding an ASS rectangle into an AVSubtitle failed. * Returns AVERROR_INVALIDDATA if we get an invalid regio

[FFmpeg-devel] [PATCH 2/4] lavc/libaribb24: protect handled value with parenthesis in RGB_TO_BGR

2019-02-10 Thread Jan Ekström
--- libavcodec/libaribb24.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libaribb24.c b/libavcodec/libaribb24.c index d6cccd117b..43da2b675d 100644 --- a/libavcodec/libaribb24.c +++ b/libavcodec/libaribb24.c @@ -202,7 +202,7 @@ static int libaribb24_close(AVCodecC

[FFmpeg-devel] [PATCH 3/4] lavc/libaribb24: add missing type struct members to AVOptions

2019-02-10 Thread Jan Ekström
--- libavcodec/libaribb24.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/libaribb24.c b/libavcodec/libaribb24.c index 43da2b675d..28f20ca767 100644 --- a/libavcodec/libaribb24.c +++ b/libavcodec/libaribb24.c @@ -367,9 +367,9 @@ static void libaribb24_flush(AVC

Re: [FFmpeg-devel] [PATCH 2/3] libavcodec/cbs: Don't zero twice

2019-02-10 Thread Mark Thompson
On 10/02/2019 23:11, Andreas Rheinhardt wrote: > Mark Thompson: >> On 05/02/2019 20:08, Andreas Rheinhardt wrote: >>> int ff_cbs_read_extradata(CodedBitstreamContext *ctx, >>>CodedBitstreamFragment *frag, >>> - const AVCodecParameters *par) >>>

Re: [FFmpeg-devel] [PATCH 1/2 v3] add libaribb24 ARIB STD-B24 caption decoder

2019-02-10 Thread Jan Ekström
On Mon, Feb 11, 2019 at 1:01 AM Michael Niedermayer wrote: > > On Sun, Feb 03, 2019 at 09:38:40PM +0200, Jan Ekström wrote: > > +#define RGB_TO_BGR(c) ((c & 0xff) << 16 | (c & 0xff00) | ((c >> 16) & > > 0xff)) > > c should be protected by a () > First of all, thank you for the technical review.

Re: [FFmpeg-devel] [PATCH 2/2] tests/api/api-h264-test: Add AV_NOPTS_VALUE check for AVFrame.pkt_dts

2019-02-10 Thread Michael Niedermayer
On Sun, Feb 10, 2019 at 02:53:58PM +0800, Jun Zhao wrote: > Add AV_NOPTS_VALUE check for AVFrame.pkt_dts to avoid print the > pkt_dts as negative number like: > "0,3616613, -9223372036854775808, 1001, 3110400, 0x75e37a65" > > Signed-off-by: Jun Zhao > --- > tests/api/api-h264-test.c |

Re: [FFmpeg-devel] [PATCH 2/3] libavcodec/cbs: Don't zero twice

2019-02-10 Thread Andreas Rheinhardt
Mark Thompson: > On 05/02/2019 20:08, Andreas Rheinhardt wrote: >> int ff_cbs_read_extradata(CodedBitstreamContext *ctx, >>CodedBitstreamFragment *frag, >> - const AVCodecParameters *par) >> + const AVCodecParameters *pa

Re: [FFmpeg-devel] [PATCH 3/3] cbs: Stop reallocating fragment unit arrays

2019-02-10 Thread Mark Thompson
On 05/02/2019 20:08, Andreas Rheinhardt wrote: > This commit changes various places that make use of cbs to keep the > fragments' unit arrays instead of constantly reallocating them. > > The more units a packet is split into, the bigger the benefit. > So MPEG-2 benefits the most; for a video comin

Re: [FFmpeg-devel] [PATCH 1/2 v3] add libaribb24 ARIB STD-B24 caption decoder

2019-02-10 Thread Michael Niedermayer
On Sun, Feb 03, 2019 at 09:38:40PM +0200, Jan Ekström wrote: > * Outputs ASS lines with basic coloring and font scaling for each > given region. > * Sets the default style to the resolution of the subtitle plane > (for example, 960x540 / 36pt font for profile A). > * Has options to: > * Disab

Re: [FFmpeg-devel] [PATCH 2/3] libavcodec/cbs: Don't zero twice

2019-02-10 Thread Mark Thompson
On 05/02/2019 20:08, Andreas Rheinhardt wrote: > Up until now, a fragment that got reused was zeroed twice: Once during > uninit and once during reading the next packet/extradata/buffer. The > second zeroing has now been made optional. > > This is also in preparation of actually reusing a fragment

Re: [FFmpeg-devel] [PATCH 1/3] libavcodec/cbs: Add ability to keep the units array.

2019-02-10 Thread Mark Thompson
On 05/02/2019 20:08, Andreas Rheinhardt wrote: > Currently, a fragment's unit array is constantly reallocated during > splitting of a packet. This commit adds the ability to keep the unit > array by distinguishing between the number of allocated and the number > of valid units in the unit array. >

Re: [FFmpeg-devel] [PATCH 1/4] zmbvenc: don't sum the entropy when blocks are equal

2019-02-10 Thread Matthew Fearnley
On Thu, 31 Jan 2019 at 15:00, Tomas Härdin wrote: > > > 1. The entropy calculation in block_cmp() omits the score of histogram[0] > > from the final sum. > > It's tempting to do this to bias the scores in favour of 0-bytes, but in > > reality, blocks with a majority of 0 (or any other byte) will

Re: [FFmpeg-devel] [PATCH] avformat/mov: fix hang while seek on a kind of fragmented mp4.

2019-02-10 Thread Carl Eugen Hoyos
2019-02-10 23:04 GMT+01:00, Marton Balint : > > > On Sun, 3 Feb 2019, Charles Liu wrote: > >> Binary searching would hang if the fragment items do NOT have timestamp >> for the specified stream. >> >> For example, a fmp4 consists of separated 'moof' boxes for each track, and >> separated 'sidx' for

Re: [FFmpeg-devel] [PATCH] configure: warn about disabled explicitly enabled components

2019-02-10 Thread Marton Balint
On Sat, 9 Feb 2019, Marton Balint wrote: On Sat, 9 Feb 2019, Carl Eugen Hoyos wrote: 2019-02-05 22:14 GMT+01:00, Marton Balint : If we enable a component but a dependant library is disabled, then the enabled component gets silently disabled. Warning about disabled explicitly enabled co

Re: [FFmpeg-devel] [PATCH] avformat/mov: fix hang while seek on a kind of fragmented mp4.

2019-02-10 Thread Marton Balint
On Sun, 3 Feb 2019, Charles Liu wrote: Binary searching would hang if the fragment items do NOT have timestamp for the specified stream. For example, a fmp4 consists of separated 'moof' boxes for each track, and separated 'sidx' for each segment, but no 'mfra' box. Then every fragment item

Re: [FFmpeg-devel] [PATCH] avcodec/cbs_av1: change the assert in trailing_bits to accept zero bits when reading

2019-02-10 Thread James Almer
On 2/10/2019 5:12 PM, James Almer wrote: > If nb_bits is zero when reading an OBU, then it's not a bug in CBS but an > invalid bitstream, and we should abort gracefully instead. > > Signed-off-by: James Almer > --- > rav1e is currently encoding invalid Metadata OBUs without trailing bits, which >

[FFmpeg-devel] [PATCH] avcodec/cbs_av1: change the assert in trailing_bits to accept zero bits when reading

2019-02-10 Thread James Almer
If nb_bits is zero when reading an OBU, then it's not a bug in CBS but an invalid bitstream, and we should abort gracefully instead. Signed-off-by: James Almer --- rav1e is currently encoding invalid Metadata OBUs without trailing bits, which are triggering the assert when parsed by CBS. This cha

Re: [FFmpeg-devel] [PATCH v2 01/11] vaapi_encode: Support more RC modes

2019-02-10 Thread Mark Thompson
On 05/02/2019 16:51, Eoff, Ullysses A wrote: >> -Original Message- >> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of >> Mark Thompson >> Sent: Monday, February 04, 2019 1:26 AM >> To: ffmpeg-devel@ffmpeg.org >> Subject: Re: [FFmpeg-devel] [PATCH v2 01/11] vaapi_en

[FFmpeg-devel] [PATCH v3 09/12] vaapi_encode_mpeg2: Add missing marker bit in time_code

2019-02-10 Thread Mark Thompson
We don't have anything useful to put in this field, but there is still meant to be a marker bit in the middle of it. --- libavcodec/vaapi_encode_mpeg2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/vaapi_encode_mpeg2.c b/libavcodec/vaapi_encode_mpeg2.c index 174

[FFmpeg-devel] [PATCH v3 07/12] vaapi_encode_vp9: Fix whitespace after previous patch

2019-02-10 Thread Mark Thompson
--- libavcodec/vaapi_encode_vp9.c | 30 +++--- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/libavcodec/vaapi_encode_vp9.c b/libavcodec/vaapi_encode_vp9.c index 8fb399f115..f89fd0d07a 100644 --- a/libavcodec/vaapi_encode_vp9.c +++ b/libavcodec/vaapi_encode

[FFmpeg-devel] [PATCH v3 04/12] vaapi_encode_mpeg2: Enable support for more RC modes

2019-02-10 Thread Mark Thompson
--- libavcodec/vaapi_encode_mpeg2.c | 24 +--- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/libavcodec/vaapi_encode_mpeg2.c b/libavcodec/vaapi_encode_mpeg2.c index 9d42c3e644..174611ff24 100644 --- a/libavcodec/vaapi_encode_mpeg2.c +++ b/libavcodec/vaapi_enco

[FFmpeg-devel] [PATCH v3 06/12] vaapi_encode_vp9: Enable support for more RC modes

2019-02-10 Thread Mark Thompson
--- libavcodec/vaapi_encode_vp9.c | 17 + 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/libavcodec/vaapi_encode_vp9.c b/libavcodec/vaapi_encode_vp9.c index 97142dcc49..8fb399f115 100644 --- a/libavcodec/vaapi_encode_vp9.c +++ b/libavcodec/vaapi_encode_vp9.c @@ -178

[FFmpeg-devel] [PATCH v3 12/12] vaapi_encode: Support limiting slice size

2019-02-10 Thread Mark Thompson
--- doc/encoders.texi | 4 +++ libavcodec/vaapi_encode.c | 57 --- libavcodec/vaapi_encode.h | 9 ++- 3 files changed, 65 insertions(+), 5 deletions(-) diff --git a/doc/encoders.texi b/doc/encoders.texi index 39b8fc1d37..21b6d147fe 100644 --- a/do

[FFmpeg-devel] [PATCH v3 08/12] vaapi_encode_mjpeg: Use common quality option

2019-02-10 Thread Mark Thompson
Doesn't change anything, but makes the behaviour better match that of the other codecs (the CONSTANT_QUALITY_ONLY flag already ensures that CQP is the only RC mode selectable for MJPEG). --- libavcodec/vaapi_encode_mjpeg.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/li

[FFmpeg-devel] [PATCH v3 05/12] vaapi_encode_vp8: Enable support for more RC modes

2019-02-10 Thread Mark Thompson
--- libavcodec/vaapi_encode_vp8.c | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/libavcodec/vaapi_encode_vp8.c b/libavcodec/vaapi_encode_vp8.c index 166636cd84..ddbe4c9075 100644 --- a/libavcodec/vaapi_encode_vp8.c +++ b/libavcodec/vaapi_encode_vp8.c @@ -161,

[FFmpeg-devel] [PATCH v3 11/12] vaapi_encode_h264: Don't include AUD with slice header

2019-02-10 Thread Mark Thompson
Always write it as a RawData block, even if there is no SEI as well. --- libavcodec/vaapi_encode_h264.c | 40 +++--- 1 file changed, 17 insertions(+), 23 deletions(-) diff --git a/libavcodec/vaapi_encode_h264.c b/libavcodec/vaapi_encode_h264.c index fb55eb7779..b65ee4b

[FFmpeg-devel] [PATCH v3 03/12] vaapi_encode_h265: Enable support for more RC modes

2019-02-10 Thread Mark Thompson
Also fixes QP going out of range when modified by the quant factor/offset values, and clarifies the QP behaviour for >8-bit modes. --- libavcodec/vaapi_encode_h265.c | 32 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/libavcodec/vaapi_encode_h265.

[FFmpeg-devel] [PATCH v3 10/12] vaapi_encode: Add support for VFR mode

2019-02-10 Thread Mark Thompson
Use the frame-skip feature to maintain a specified framerate from the point of view of the driver. --- "max_fps" collides with an option used in lavf, so renamed to "vfr_max_fps" here. (That hopefully also makes it clearer what the use of the option is.) doc/encoders.texi | 7 +++ li

[FFmpeg-devel] [PATCH v3 01/12] vaapi_encode: Support more RC modes

2019-02-10 Thread Mark Thompson
Allow setting the mode explicitly, and try to make a sensible choice given the available parameters if not. --- doc/encoders.texi | 24 +++ libavcodec/vaapi_encode.c | 382 +++--- libavcodec/vaapi_encode.h | 65 +++ 3 files changed, 358 insertions(+),

[FFmpeg-devel] [PATCH v3 02/12] vaapi_encode_h264: Enable support for more RC modes

2019-02-10 Thread Mark Thompson
Also fixes QP going out of range when modified by the quant factor/offset values. --- libavcodec/vaapi_encode_h264.c | 31 +++ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/libavcodec/vaapi_encode_h264.c b/libavcodec/vaapi_encode_h264.c index 4ea62d96f

Re: [FFmpeg-devel] Reimbursement request

2019-02-10 Thread Paul B Mahol
On 2/10/19, Thilo Borgmann wrote: > Am 10.02.19 um 20:09 schrieb Paul B Mahol: >> On 2/10/19, Thilo Borgmann wrote: >>> Am 10.02.19 um 19:58 schrieb Paul B Mahol: On 2/10/19, Thilo Borgmann wrote: > Hi, > >> I'm requesting the reimbursement of travel expenses for the Google

Re: [FFmpeg-devel] [PATCH v2 08/11] vaapi_encode_mjpeg: Warn if input is not full range

2019-02-10 Thread Mark Thompson
On 10/02/2019 18:49, Carl Eugen Hoyos wrote: > 2019-02-10 19:21 GMT+01:00, Mark Thompson : >> On 05/02/2019 13:27, Carl Eugen Hoyos wrote: >>> 2019-01-28 0:47 GMT+01:00, Mark Thompson : >>> +if (avctx->color_range == AVCOL_RANGE_MPEG) { +av_log(avctx, AV_LOG_WARNING, "Input vi

Re: [FFmpeg-devel] Reimbursement request

2019-02-10 Thread Paul B Mahol
On 2/10/19, Thilo Borgmann wrote: > Am 10.02.19 um 19:58 schrieb Paul B Mahol: >> On 2/10/19, Thilo Borgmann wrote: >>> Hi, >>> I'm requesting the reimbursement of travel expenses for the Google Mentor Summit. ... >>> >>> a little late, however I'd also like to request reimbursemen

Re: [FFmpeg-devel] Reimbursement request

2019-02-10 Thread Thilo Borgmann
Am 10.02.19 um 20:09 schrieb Paul B Mahol: > On 2/10/19, Thilo Borgmann wrote: >> Am 10.02.19 um 19:58 schrieb Paul B Mahol: >>> On 2/10/19, Thilo Borgmann wrote: Hi, > I'm requesting the reimbursement of travel expenses for the Google > Mentor Summit. > ... a litt

Re: [FFmpeg-devel] Reimbursement request

2019-02-10 Thread Thilo Borgmann
Am 10.02.19 um 19:58 schrieb Paul B Mahol: > On 2/10/19, Thilo Borgmann wrote: >> Hi, >> >>> I'm requesting the reimbursement of travel expenses for the Google >>> Mentor Summit. >>> ... >> >> a little late, however I'd also like to request reimbursement for my travel >> there last October [1]. >>

Re: [FFmpeg-devel] Reimbursement request

2019-02-10 Thread Paul B Mahol
On 2/10/19, Thilo Borgmann wrote: > Hi, > >> I'm requesting the reimbursement of travel expenses for the Google >> Mentor Summit. >> ... > > a little late, however I'd also like to request reimbursement for my travel > there last October [1]. > > Total cost of my flight: 1348.33€ Have picture of

Re: [FFmpeg-devel] lavc/libvpxenc: Deprecate lossless option

2019-02-10 Thread Carl Eugen Hoyos
2019-02-10 13:06 GMT+01:00, Kieran O Leary : > On Sat, 9 Feb 2019, 06:49 Gyan > although the `-lossless 1` encoding does return as lossless in SSIM. > > What ssim command did you use, and why use this over a hash muxer like > framehash? I'm always on the lookout for losslessness verification method

Re: [FFmpeg-devel] lavc/libvpxenc: Deprecate lossless option

2019-02-10 Thread Carl Eugen Hoyos
2019-02-10 5:44 GMT+01:00, Gyan : > > > On 09-02-2019 04:45 PM, Carl Eugen Hoyos wrote: >> 2019-02-09 7:49 GMT+01:00, Gyan : >>> >>> On 09-02-2019 02:26 AM, Carl Eugen Hoyos wrote: 2019-02-08 6:08 GMT+01:00, Gyan : > On 08-02-2019 03:31 AM, Carl Eugen Hoyos wrote: >> . >> No strong

[FFmpeg-devel] Reimbursement request for LDP

2019-02-10 Thread Thilo Borgmann
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 low: 21.90€ Will send the paperwork to Stefano. Thanks, Thilo [1] https://lists.ffmpeg.org/pipermail/ffmpeg-devel/2018-October/235352.html __

Re: [FFmpeg-devel] Reimbursement request

2019-02-10 Thread Thilo Borgmann
Hi, > I'm requesting the reimbursement of travel expenses for the Google > Mentor Summit. > ... a little late, however I'd also like to request reimbursement for my travel there last October [1]. Total cost of my flight: 1348.33€ Will send the paperworks to Stefano as usual. Thanks, Thilo [

Re: [FFmpeg-devel] [PATCH v2 08/11] vaapi_encode_mjpeg: Warn if input is not full range

2019-02-10 Thread Carl Eugen Hoyos
2019-02-10 19:21 GMT+01:00, Mark Thompson : > On 05/02/2019 13:27, Carl Eugen Hoyos wrote: >> 2019-01-28 0:47 GMT+01:00, Mark Thompson : >> >>> +if (avctx->color_range == AVCOL_RANGE_MPEG) { >>> +av_log(avctx, AV_LOG_WARNING, "Input video does not appear " >>> + "to use fu

Re: [FFmpeg-devel] Proposal: Homebrew tap for FFmpeg

2019-02-10 Thread Jean-Baptiste Kempf
On Sun, 10 Feb 2019, at 19:37, Werner Robitza wrote: > > Those options are just for non-free cases, and to be honest, I don't see > > why FFmpeg should advertise those. > > That is not correct. The following options/dependencies are not > present in Homebrew core: > > chromaprint, fdk-aac, game-

Re: [FFmpeg-devel] Proposal: Homebrew tap for FFmpeg

2019-02-10 Thread Werner Robitza
On Sat, Feb 9, 2019 at 11:59 PM Jean-Baptiste Kempf wrote: > > On Sat, 9 Feb 2019, at 11:59, Werner Robitza wrote: > > Then the only consequence can be to remove these options or support > > for these libraries altogether, because you'll find plenty of guides > > and recommendations on how to buil

Re: [FFmpeg-devel] [PATCH] amfenc: Add support for pict_type field

2019-02-10 Thread Mark Thompson
On 04/02/2019 14:41, Michael Dirks wrote: > On 04.02.2019 11:05, Mark Thompson wrote: >> Can you explain what this "skip frame" actually does in the encoder?  The >> concept does not exist in H.264 or H.265, as far as I know. > > I believe this has to do with the pic_struct flag which has a value

Re: [FFmpeg-devel] lavc/libvpxenc: Deprecate lossless option

2019-02-10 Thread Gyan
On 10-02-2019 05:36 PM, Kieran O Leary wrote: What ssim command did you use, and why use this over a hash muxer like framehash? I'm always on the lookout for losslessness verification methods. The barebones command:     ffmpeg -i main -i ref -lavfi ssim -f null - framehash will be sensitiv

Re: [FFmpeg-devel] [PATCH v2 08/11] vaapi_encode_mjpeg: Warn if input is not full range

2019-02-10 Thread Mark Thompson
On 05/02/2019 13:27, Carl Eugen Hoyos wrote: > 2019-01-28 0:47 GMT+01:00, Mark Thompson : > >> +if (avctx->color_range == AVCOL_RANGE_MPEG) { >> +av_log(avctx, AV_LOG_WARNING, "Input video does not appear " >> + "to use full-range: output colours may be incorrect.\n"); >

Re: [FFmpeg-devel] [PATCH v2 06/11] vaapi_encode_vp9: Enable support for more RC modes

2019-02-10 Thread Mark Thompson
On 05/02/2019 13:25, Carl Eugen Hoyos wrote: > 2019-01-28 0:47 GMT+01:00, Mark Thompson : >> --- >> libavcodec/vaapi_encode_vp9.c | 41 +-- >> 1 file changed, 25 insertions(+), 16 deletions(-) >> >> diff --git a/libavcodec/vaapi_encode_vp9.c b/libavcodec/vaapi_encod

Re: [FFmpeg-devel] [PATCH]lavf/img2dec: Split img2 and img2pipe options

2019-02-10 Thread Gyan
On 10-02-2019 11:31 PM, Carl Eugen Hoyos wrote: 2019-02-10 18:44 GMT+01:00, Michael Niedermayer : On Sat, Feb 09, 2019 at 01:58:06PM +0100, Carl Eugen Hoyos wrote: Hi! Currently if the "loop" option gets specified for -f image2pipe, there is no indication for the user that the option will no

Re: [FFmpeg-devel] [PATCH]lavf/img2dec: Split img2 and img2pipe options

2019-02-10 Thread Carl Eugen Hoyos
2019-02-10 18:44 GMT+01:00, Michael Niedermayer : > On Sat, Feb 09, 2019 at 01:58:06PM +0100, Carl Eugen Hoyos wrote: >> Hi! >> >> Currently if the "loop" option gets specified for -f image2pipe, there is >> no indication for the user that the option will not work, patch attached. >> >> Please comm

Re: [FFmpeg-devel] [PATCH]lavf/img2dec: Split img2 and img2pipe options

2019-02-10 Thread Michael Niedermayer
On Sat, Feb 09, 2019 at 01:58:06PM +0100, Carl Eugen Hoyos wrote: > Hi! > > Currently if the "loop" option gets specified for -f image2pipe, there is > no indication for the user that the option will not work, patch attached. > > Please comment, Carl Eugen > img2dec.c | 33 +++

Re: [FFmpeg-devel] [PATCH]lavf/img2dec: Split img2 and img2pipe options

2019-02-10 Thread Carl Eugen Hoyos
2019-02-10 1:55 GMT+01:00, Jan Ekström : > On Sat, Feb 9, 2019 at 2:58 PM Carl Eugen Hoyos wrote: >> >> Hi! >> >> Currently if the "loop" option gets specified for -f image2pipe, there is >> no indication for the user that the option will not work, patch attached. >> >> Please comment, Carl Eugen

[FFmpeg-devel] [PATCH] doc/faq: update macOS and URLs

2019-02-10 Thread Reto Kromer
Best regards, Reto 0001-doc-faq-update-macOS-and-URLs.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 2/2] libavcodec/zmbvenc: motion estimation improvements/bug fixes:

2019-02-10 Thread Tomas Härdin
lör 2019-02-09 klockan 13:10 + skrev Matthew Fearnley: > - Clamp ME range to -64..63 (prevents corruption when me_range is too high) > - Allow MV's up to *and including* the positive range limit > - Allow out-of-edge ME by padding the prev buffer with a border of 0's > - Try previous MV before

Re: [FFmpeg-devel] doc/snow: fix typos

2019-02-10 Thread Carl Eugen Hoyos
2019-02-10 13:32 GMT+01:00, Reto Kromer : > Best regards, Reto Patch applied. Thank you, Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] doc/filters: fix typos

2019-02-10 Thread Gyan
On 10-02-2019 04:41 PM, Moritz Barsnick wrote: On Sun, Feb 10, 2019 at 12:20:38 +0530, Gyan wrote: On 10-02-2019 11:37 AM, Reto Kromer wrote: Should fix a few nits in man. Best regards, Reto Removed trailing whitespace from patch and pushed as d20902fd2399ae04cbd5c02e83fbd90c68592555 with a

Re: [FFmpeg-devel] [PATCH 1/2] libavcodec/zmbvenc: block scoring improvements/bug fixes

2019-02-10 Thread Tomas Härdin
lör 2019-02-09 klockan 13:10 + skrev Matthew Fearnley: > - Improve block choices by counting 0-bytes in the entropy score > - Make histogram use uint16_t type, to allow byte counts from 16*16 > (current block size) up to 255*255 (maximum allowed 8bpp block size) > - Make sure score table is big

[FFmpeg-devel] doc/snow: fix typos

2019-02-10 Thread Reto Kromer
Best regards, Reto 0001-doc-snow-fix-typos.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] lavc/libvpxenc: Deprecate lossless option

2019-02-10 Thread Kieran O Leary
On Sat, 9 Feb 2019, 06:49 Gyan > > On 09-02-2019 02:26 AM, Carl Eugen Hoyos wrote: > > 2019-02-08 6:08 GMT+01:00, Gyan : > >> > >> On 08-02-2019 03:31 AM, Carl Eugen Hoyos wrote: > >>> . > >>> No strong opinion here, I hadn't realized that -crf 0 only works with > >>> newer versions. > >>> > >>> C

Re: [FFmpeg-devel] avcodec/proresenc_aw : add interlace encoding support

2019-02-10 Thread Kieran O Leary
On Sun, 10 Feb 2019, 11:57 Martin Vignali Hello, > > > > > > Use +ildct flag to switch between progressive and interlace encoding > > > > > > Use AVFrame flag to switch between tff and bff frame organization. > > > > > > > Is this what you mean by altering the -setparams filter? > > > > In order t

Re: [FFmpeg-devel] avcodec/proresenc_aw : add interlace encoding support

2019-02-10 Thread Martin Vignali
Hello, > > > Use +ildct flag to switch between progressive and interlace encoding > > > > Use AVFrame flag to switch between tff and bff frame organization. > > > > Is this what you mean by altering the -setparams filter? > > In order to choose between top field first and bottom field first, i use

Re: [FFmpeg-devel] [PATCH] doc/filters: fix typos

2019-02-10 Thread Moritz Barsnick
On Sun, Feb 10, 2019 at 12:20:38 +0530, Gyan wrote: > On 10-02-2019 11:37 AM, Reto Kromer wrote: > > Should fix a few nits in man. Best regards, Reto > > Removed trailing whitespace from patch and pushed as > d20902fd2399ae04cbd5c02e83fbd90c68592555 with a couple of corrections added. Hmm, these

[FFmpeg-devel] [PATCH] doc: fix various typos

2019-02-10 Thread Moritz Barsnick
Found with the help of codespell-1.14.0. Signed-off-by: Moritz Barsnick --- doc/bitstream_filters.texi | 2 +- doc/codecs.texi| 2 +- doc/filters.texi | 16 doc/formats.texi | 2 +- doc/general.texi | 8 doc/muxers.texi

Re: [FFmpeg-devel] avcodec/proresenc_aw : add interlace encoding support

2019-02-10 Thread Kieran O Leary
Hi, On Sat, Feb 9, 2019 at 6:10 PM Martin Vignali wrote: > Hello, > > Patchs in attach add interlace encoding support to prores aw encoding > Thanks so much for adding this. I can really only judge by the metadata for now, but this all looks good to me (ffmpeg encode and mediainfo check): $ ./