Re: [FFmpeg-devel] [PATCH 2/2] lavfi/vf_zoompan: fix PTS logic.

2014-12-23 Thread Nicolas George
Le duodi 2 nivôse, an CCXXIII, Michael Niedermayer a écrit : > with these 2 patches and the zoompan example from the docs > ./ffmpeg -f lavfi -i testsrc -vf > "zoompan=z='min(zoom+0.0015,1.5)':d=700:x='if(gte(zoom,1.5),x,x+1/a)':y='if(gte(zoom,1.5),y,y+1)':s=640x360" > -qscale 1 test.avi > > i

Re: [FFmpeg-devel] [PATCH 2/2] lavfi/vf_zoompan: fix PTS logic.

2014-12-21 Thread Michael Niedermayer
On Mon, Dec 01, 2014 at 04:43:17PM +0100, Nicolas George wrote: > Fix non-monotonic output PTS when input PTS and duration > are set with compatible values. > > Signed-off-by: Nicolas George > --- > libavfilter/vf_zoompan.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) with these 2

[FFmpeg-devel] [PATCH 2/2] lavfi/vf_zoompan: fix PTS logic.

2014-12-01 Thread Nicolas George
Fix non-monotonic output PTS when input PTS and duration are set with compatible values. Signed-off-by: Nicolas George --- libavfilter/vf_zoompan.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavfilter/vf_zoompan.c b/libavfilter/vf_zoompan.c index 1c97eb6..0713741 10