Re: [FFmpeg-devel] Filters

2014-07-18 Thread JULIAN GARDNER
- Original Message - From: Clément Bœsch u...@pkh.me To: FFmpeg development discussions and patches ffmpeg-devel@ffmpeg.org Cc: Sent: Friday, 18 July 2014, 14:01 Subject: Re: [FFmpeg-devel] Filters On Fri, Jul 18, 2014 at 12:56:17PM +0100, JULIAN GARDNER wrote

[FFmpeg-devel] Small patch for someone to push please

2014-08-15 Thread JULIAN GARDNER
In libavfilter/lavfutils.c around line 77 the code is     if (ret 0 || !frame_decoded) {     av_log(log_ctx, AV_LOG_ERROR, Failed to decode image from file\n);     goto end;     }     ret = 0; Now this causes a problem if ret=0 and frame_decoded==0 as you get dropped out of the routine

Re: [FFmpeg-devel] Small patch for someone to push please

2014-08-16 Thread JULIAN GARDNER
+0100, JULIAN GARDNER wrote: In libavfilter/lavfutils.c around line 77 the code is     if (ret 0 || !frame_decoded) {     av_log(log_ctx, AV_LOG_ERROR, Failed to decode image from file\n);     goto end;     }     ret = 0; Now this causes a problem if ret=0 and frame_decoded==0

Re: [FFmpeg-devel] Filters

2014-08-23 Thread JULIAN GARDNER
From: JULIAN GARDNER joo...@btinternet.com To: FFmpeg development discussions and patches ffmpeg-devel@ffmpeg.org Sent: Monday, 18 August 2014, 19:51 Subject: Re: [FFmpeg-devel] Filters From: Clément Bœsch u...@pkh.me

Re: [FFmpeg-devel] Regression problem

2014-09-24 Thread JULIAN GARDNER
From: JULIAN GARDNER joo...@btinternet.com To: FFmpeg development discussions and patches ffmpeg-devel@ffmpeg.org Sent: Tuesday, 23 September 2014, 13:37 Subject: Re: [FFmpeg-devel] Regression problem - Original Message - From: Michael Niedermayer michae...@gmx.at To: FFmpeg

Re: [FFmpeg-devel] Regression problem

2014-10-08 Thread JULIAN GARDNER
From: JULIAN GARDNER joo...@btinternet.com To: FFmpeg development discussions and patches ffmpeg-devel@ffmpeg.org Sent: Wednesday, 24 September 2014, 14:48 Subject: Re: [FFmpeg-devel] Regression problem From: JULIAN GARDNER joo...@btinternet.com

Re: [FFmpeg-devel] doc/examples/muxing.c

2014-11-05 Thread JULIAN GARDNER
From: Stefano Sabatini stefa...@gmail.com To: FFmpeg development discussions and patches ffmpeg-devel@ffmpeg.org Sent: Wednesday, 5 November 2014, 12:23 Subject: Re: [FFmpeg-devel] doc/examples/muxing.c On date Tuesday 2014-11-04 17:39:22 +, JULIAN GARDNER

[FFmpeg-devel] A little copy/paste type for you to fix

2014-11-09 Thread JULIAN GARDNER
libavformat:166     if (ctx-pageurl) {         av_strlcat(filename, pageUrl=, len);         av_strlcat(filename, ctx-pageurl, len);     }     if (ctx-swfurl) {         av_strlcat(filename, swfUrl=, len);         av_strlcat(filename, ctx-pageurl, len);     } Do you see it? The

Re: [FFmpeg-devel] filter vf_findandcover

2015-04-30 Thread JULIAN GARDNER
Can you post the png fix please so i can backport this On Thursday, 30 April 2015, 4:03, Michael Niedermayer michae...@gmx.at wrote: On Wed, Apr 29, 2015 at 10:43:18PM +, JULIAN GARDNER wrote: I converted to 8bit greyscale, i did check the code to see what format it wants

[FFmpeg-devel] filter vf_findandcover

2015-04-29 Thread JULIAN GARDNER
Just thought i would give this a test and took a video i had, cropped a static bit from the picture, using gimp, and tried to run this. but I have the same problem as one of my own filters, png decode does not work, well not with a png generated with gimp. anybody know how to export a VALID png

Re: [FFmpeg-devel] [PATCH] avfilter: add findandcover filter

2015-05-02 Thread JULIAN GARDNER
I like the idea of passing the found coordinates on so you can use delogo etc On Saturday, 2 May 2015, 13:07, Michael Niedermayer michae...@gmx.at wrote: On Fri, May 01, 2015 at 11:38:52AM +0200, Clément Bœsch wrote: On Thu, Apr 30, 2015 at 02:45:12PM +0200, Michael Niedermayer

Re: [FFmpeg-devel] filter vf_findandcover

2015-04-29 Thread JULIAN GARDNER
: On Wed, Apr 29, 2015 at 09:58:55PM +, JULIAN GARDNER wrote: Just thought i would give this a test and took a video i had, cropped a static bit from the picture, using gimp, and tried to run this. but I have the same problem as one of my own filters, png decode does not work, well

Re: [FFmpeg-devel] Regression maybe

2016-03-03 Thread JULIAN GARDNER
On Thu, Mar 03, 2016 at 18:43:11 +, JULIAN GARDNER wrote: > I was going to bisect it and see if i can find a commit which breaks the > mpegts output?, but what commit do I start on for 63057 [...] > ffmpeg version N-78734-g666e2ed Copyright (c) 2000-2

[FFmpeg-devel] Regression maybe

2016-03-03 Thread JULIAN GARDNER
OK I upgraded a server today from 63057 to 78734 as we had a problem with dvbsubtitles not working. Now the machines, 2 of them one on 63057 and the new one, dont transcode and they have the same command lines like this. ffmpeg -i http://1.1.1.1:1/Stream1.ts -c:v copy -c:a copy -f mpegts

Re: [FFmpeg-devel] Regression maybe

2016-03-05 Thread JULIAN GARDNER
, Hendrik Leppkes <h.lepp...@gmail.com> wrote: On Thu, Mar 3, 2016 at 11:23 PM, JULIAN GARDNER <joo...@btinternet.com> wrote: > But regressions are development problems, things like "how do i scale a > video" is for users. > Im going tobe bisecting and f