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
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
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
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
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
> > >
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
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
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
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
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
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
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
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
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.)
>
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
>> 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
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.
___
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
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.
---
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
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
___
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.
>
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
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
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
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
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
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
28 matches
Mail list logo