Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Include nvEncodeAPI v7 SDK header

2016-08-27 Thread compn
On Sat, 27 Aug 2016 14:58:53 +0200 Timo Rothenpieler wrote: > As Nvidia has put the most recent Video Codec SDK behind a double > registration wall, of which one needs manual approval of a lenghty > application, bundling this header saves everyone trying to use NVENC > from that headache. > > Th

Re: [FFmpeg-devel] [PATCH] Nvidia NVENC 10-bit HEVC encoding and rate control lookahead support

2016-08-27 Thread compn
On Sat, 27 Aug 2016 13:49:25 +0200 Timo Rothenpieler wrote: >I'll push for another attempt of including the header in ffmpeg including nvidia header in linux kernel was a no-go ? -compn ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmp

Re: [FFmpeg-devel] [GSoC] [PATCH 2/2] mlpenc: Working MLP/TrueHD encoder

2016-08-27 Thread Michael Niedermayer
On Tue, Aug 23, 2016 at 02:33:00AM +0530, Jai Luthra wrote: > * Multichannel support for TrueHD is experimental > > There should be downmix substreams present for 2+ channel bitstreams, > but ffmpeg decoder doesn't need it. Will add support for this soon. > > * There might be lossless che

Re: [FFmpeg-devel] [PATCH] added expr evaluation to drawtext - fontsize

2016-08-27 Thread Brett Harrison
Fixed patch based on comments. This time attaching patch file. On Sat, Aug 27, 2016 at 6:21 AM, Moritz Barsnick wrote: > On Fri, Aug 26, 2016 at 14:37:42 -0700, Brett Harrison wrote: > > > +if (diff != 0) { > > + return diff > 0 ? 1 : diff < 0 ? -1 : 0; > > +} > > If diff != 0, it

Re: [FFmpeg-devel] [PATCH 4/4] lavf/mov: Add support for edit list parsing.

2016-08-27 Thread Sasi Inguva
On Fri, Aug 26, 2016 at 5:55 PM, Michael Niedermayer wrote: > On Fri, Aug 26, 2016 at 12:49:19PM -0700, Sasi Inguva wrote: > > I think there is some bug in mp3 decoder which is making skip > > samples -1431655766 for ~/tickets/5528/fire.mp3 . For now I have removed > > the assert from the 3rd com

Re: [FFmpeg-devel] Possible long(er?) term support

2016-08-27 Thread Dominik 'Rathann' Mierzejewski
On Saturday, 27 August 2016 at 12:48, Michael Niedermayer wrote: > On Fri, Aug 26, 2016 at 12:59:53PM -0600, Orion Poplawski wrote: > > On 08/25/2016 04:05 AM, Michael Niedermayer wrote: > > > On Wed, Aug 24, 2016 at 12:11:47PM -0600, Orion Poplawski wrote: > > >> On 08/24/2016 11:54 AM, Carl Eugen

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Include nvEncodeAPI v7 SDK header

2016-08-27 Thread Michael Niedermayer
On Sat, Aug 27, 2016 at 02:58:53PM +0200, Timo Rothenpieler wrote: > As Nvidia has put the most recent Video Codec SDK behind a double > registration wall, of which one needs manual approval of a lenghty > application, bundling this header saves everyone trying to use NVENC > from that headache. >

[FFmpeg-devel] [PATCH] avfilter nb_threads better control

2016-08-27 Thread Paul B Mahol
Hi, patches attached. 0001-avfilter-add-nb_threads-to-AVFilterContext.patch Description: Binary data 0002-avfilter-add-ff_filter_get_nb_threads.patch Description: Binary data 0003-avfilter-make-use-of-ff_filter_get_nb_threads.patch Description: Binary data ___

[FFmpeg-devel] [PATCH] examples/transcoding: convert to codecpar

2016-08-27 Thread James Almer
Signed-off-by: James Almer --- This example is kinda broken, before and after this patch. The files it creates are not always correct, at least with video using the most common containers. If i were to guess, it's probably why ffmpeg.c has so many container and codec specific workarounds beyond wh

[FFmpeg-devel] [PATCH]lavf/httpauth: Do case-insensitive http header checks.

2016-08-27 Thread Carl Eugen Hoyos
Hi! Attached patch fixes ticket #5786. Please comment, Carl Eugen From 3b9380e0a4e715dcbc3ff508235ccad14a01ad37 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 27 Aug 2016 17:27:48 +0200 Subject: [PATCH] lavf/httpauth: Do case-insensitive http header checks. Fixes ticket #5786. ---

Re: [FFmpeg-devel] [PATCH 1/2] add option hls_init_time to set init hls window segment

2016-08-27 Thread Steven Liu
2016-08-27 19:15 GMT+08:00 Steven Liu : > > > 2016-08-27 18:25 GMT+08:00 Michael Niedermayer : > >> On Sat, Aug 27, 2016 at 07:44:01AM +0800, Steven Liu wrote: >> > 2016-08-27 4:49 GMT+08:00 Michael Niedermayer : >> > >> > > On Fri, Aug 26, 2016 at 05:30:41PM +0800, Steven Liu wrote: >> > > > reco

Re: [FFmpeg-devel] [PATCH] avformat/utils: fix a codecpar non use

2016-08-27 Thread James Almer
On 8/27/2016 6:24 AM, Michael Niedermayer wrote: > On Fri, Aug 26, 2016 at 03:49:55PM -0300, James Almer wrote: >> Signed-off-by: James Almer >> --- >> libavformat/utils.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) > > LGTM > > thx Pushed. ___

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Include nvEncodeAPI v7 SDK header

2016-08-27 Thread Oliver Collyer
>> And I think there are some deprecated comments in nvenc.c: >> - references to only H.264 (HEVC was already added) >> - references to version 5 as "current SDK revision" > There are no references to version 5 of the SDK that I can see in nvenc.c following my patch. There was one next to where

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Include nvEncodeAPI v7 SDK header

2016-08-27 Thread Matt Oliver
On 27 August 2016 at 23:12, Timo Rothenpieler wrote: > On 8/27/2016 3:07 PM, Thomas Volkert wrote: > > Hi, > > > > On 27.08.2016 14:58, Timo Rothenpieler wrote: > >> As Nvidia has put the most recent Video Codec SDK behind a double > >> registration wall, of which one needs manual approval of a l

Re: [FFmpeg-devel] [PATCH] added expr evaluation to drawtext - fontsize

2016-08-27 Thread Moritz Barsnick
On Fri, Aug 26, 2016 at 14:37:42 -0700, Brett Harrison wrote: > +if (diff != 0) { > + return diff > 0 ? 1 : diff < 0 ? -1 : 0; > +} If diff != 0, it can only be >0 or <0, nothing else: if (diff != 0) return diff > 0 ? 1 : -1; (And you can drop the curly brackets.) >

Re: [FFmpeg-devel] [PATCH] avcodec/nvenc: Include nvEncodeAPI v7 SDK header

2016-08-27 Thread Timo Rothenpieler
On 8/27/2016 3:07 PM, Thomas Volkert wrote: > Hi, > > On 27.08.2016 14:58, Timo Rothenpieler wrote: >> As Nvidia has put the most recent Video Codec SDK behind a double >> registration wall, of which one needs manual approval of a lenghty >> application, bundling this header saves everyone trying

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-27 Thread Robert Krüger
On Thu, Aug 25, 2016 at 10:28 PM, Davinder Singh wrote: > On Thu, Aug 25, 2016 at 5:01 AM Andy Furniss wrote: > > > > > > > I am testing with a somewhat artificial sample in that it's a framerate > > de-interlace + scale down of a 1080i master, though it is "real" in the > > sense that I may wan

Re: [FFmpeg-devel] [PATCH] Nvidia NVENC 10-bit HEVC encoding and rate control lookahead support

2016-08-27 Thread Oliver Collyer
Hi Timo Well the copyright message at the top of nvEncodeAPI.h in the 7.0 SDK is identical to that for 6.0 so it looks ok in that respect. I agree it’s an inconvenience to have to register and wait for approval (although mine came immediately and automatically). Regards Oliver > On 27 Aug 20

Re: [FFmpeg-devel] [PATCH] Nvidia NVENC 10-bit HEVC encoding and rate control lookahead support

2016-08-27 Thread Timo Rothenpieler
On 8/25/2016 7:56 PM, Oliver Collyer wrote: > Hi Timo > > Thankyou for the clarification. > > Attached are what should be the final versions of these patches then, with > the support for YUV420P10 (and related conversion code) now dropped. While testing these patches, I noticed that you now hav

Re: [FFmpeg-devel] [PATCH 1/2] add option hls_init_time to set init hls window segment

2016-08-27 Thread Steven Liu
2016-08-27 18:25 GMT+08:00 Michael Niedermayer : > On Sat, Aug 27, 2016 at 07:44:01AM +0800, Steven Liu wrote: > > 2016-08-27 4:49 GMT+08:00 Michael Niedermayer : > > > > > On Fri, Aug 26, 2016 at 05:30:41PM +0800, Steven Liu wrote: > > > > recover segments duration time by hls_time after init hls

Re: [FFmpeg-devel] [PATCH 2/3] vf_colorspace: Add support for full range yuv

2016-08-27 Thread Michael Niedermayer
On Fri, Aug 26, 2016 at 01:01:09AM -0400, Ronald S. Bultje wrote: > Hi, > > On Thu, Aug 25, 2016 at 7:14 PM, Vittorio Giovara < > vittorio.giov...@gmail.com> wrote: > > > Whenever a full range video is input, since the YUVJ* formats are not > > listed as supported for this filter, a range reducti

Re: [FFmpeg-devel] [PATCH 1/3] vf_colorspace: Check av_frame_copy_props() return value

2016-08-27 Thread Michael Niedermayer
On Fri, Aug 26, 2016 at 12:59:34AM -0400, Ronald S. Bultje wrote: > Hi, > > On Thu, Aug 25, 2016 at 7:14 PM, Vittorio Giovara < > vittorio.giov...@gmail.com> wrote: > > > This function can potentially allocate memory. > > --- > > Please keep me in CC. > > Vittorio > > > > libavfilter/vf_colorspa

Re: [FFmpeg-devel] Possible long(er?) term support

2016-08-27 Thread Michael Niedermayer
On Fri, Aug 26, 2016 at 12:59:53PM -0600, Orion Poplawski wrote: > On 08/25/2016 04:05 AM, Michael Niedermayer wrote: > > On Wed, Aug 24, 2016 at 12:11:47PM -0600, Orion Poplawski wrote: > >> On 08/24/2016 11:54 AM, Carl Eugen Hoyos wrote: > >>> Hi! > >>> > >>> 2016-08-24 18:51 GMT+02:00 Orion Popl

Re: [FFmpeg-devel] [PATCH 1/2] add option hls_init_time to set init hls window segment

2016-08-27 Thread Michael Niedermayer
On Sat, Aug 27, 2016 at 07:44:01AM +0800, Steven Liu wrote: > 2016-08-27 4:49 GMT+08:00 Michael Niedermayer : > > > On Fri, Aug 26, 2016 at 05:30:41PM +0800, Steven Liu wrote: > > > recover segments duration time by hls_time after init hls window. > > > This is reuqested by Ibrahim Tachijian > > >

Re: [FFmpeg-devel] [PATCH] Add max value output option to psnr stats log.

2016-08-27 Thread Michael Niedermayer
On Fri, Aug 26, 2016 at 12:10:17PM -0700, Lucas Cooper wrote: > This allows retroactive calculation/aggregation of PSNR from the stats > log. > --- > libavfilter/vf_psnr.c | 15 +++ > 1 file changed, 15 insertions(+) > > diff --git a/libavfilter/vf_psnr.c b/libavfilter/vf_psnr.c > ind

Re: [FFmpeg-devel] [PATCH] added expr evaluation to drawtext - fontsize

2016-08-27 Thread Michael Niedermayer
On Fri, Aug 26, 2016 at 02:37:42PM -0700, Brett Harrison wrote: > Allows expr evaluation in the fontsize parameter for drawtext. > > examples (fontsize 1/3 of video height): > > ffmpeg -i http://i.giphy.com/kwAi4WrChkSfm.gif -vf > "drawtext=fontfile=/Library/Fonts/Verdana > Bold.ttf:text='HI':fo

Re: [FFmpeg-devel] [PATCH] avformat/utils: fix a codecpar non use

2016-08-27 Thread Michael Niedermayer
On Fri, Aug 26, 2016 at 03:49:55PM -0300, James Almer wrote: > Signed-off-by: James Almer > --- > libavformat/utils.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB If you fake or manipulate s

[FFmpeg-devel] [PATCH] avframe: add (a)copyprops filter

2016-08-27 Thread Paul B Mahol
Hi, patch attached. 0001-avfilter-add-a-copyprops-filter.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel