Re: [Mlt-devel] [PATCH] fix playlist items move

2014-06-22 Thread Dan Dennedy
On Sun, Jun 22, 2014 at 11:14 AM, Dan Dennedy wrote: > On Sun, Jun 22, 2014 at 6:19 AM, Maksym Veremeyenko wrote: >> Hi, >> >> attached patch fix playlist item movement and setting new indexes. >> > > If you want me to apply your patch with your authorship information > and git-am, then please us

[Mlt-devel] [mltframework/mlt] 9c6ae2: Fix current position adjustment when moving a play...

2014-06-22 Thread GitHub
Branch: refs/heads/master Home: https://github.com/mltframework/mlt Commit: 9c6ae2bd2979eba6d55424b195ec88ee8f376993 https://github.com/mltframework/mlt/commit/9c6ae2bd2979eba6d55424b195ec88ee8f376993 Author: Maksym Veremeyenko Date: 2014-06-22 (Sun, 22 Jun 2014) Changed pa

Re: [Mlt-devel] [PATCH] convert yuv422 image rgb24 only if left position is odd

2014-06-22 Thread Dan Dennedy
On Sun, Jun 22, 2014 at 11:48 AM, Dan Dennedy wrote: > On Sun, Jun 22, 2014 at 6:27 AM, Maksym Veremeyenko wrote: >> Hi, >> >> crop filter seems always want to convert to rgb24 >> but IMHO it is required only of left offset is odd, am i correct? > > Since we coerce the output to an even width, ye

[Mlt-devel] [mltframework/mlt] a523e1: convert yuv422 image rgb24 only if left position i...

2014-06-22 Thread GitHub
Branch: refs/heads/master Home: https://github.com/mltframework/mlt Commit: a523e1bbf69d61ffa4b9957dd3f6ea8a1b962d8c https://github.com/mltframework/mlt/commit/a523e1bbf69d61ffa4b9957dd3f6ea8a1b962d8c Author: Maksym Veremeyenko Date: 2014-06-22 (Sun, 22 Jun 2014) Changed pa

Re: [Mlt-devel] [PATCH] Set timecode and userbits to output frame

2014-06-22 Thread Dan Dennedy
On Sun, Jun 22, 2014 at 6:28 AM, Maksym Veremeyenko wrote: > Hi, > > attached patch implement setting VITC timecode and userbits to output frame. Thanks, I applied this. -- +-DRD-+ -- HPCC Systems Open Source Big Data P

[Mlt-devel] [mltframework/mlt] 5b05e1: Set timecode and userbits to output frame

2014-06-22 Thread GitHub
Branch: refs/heads/master Home: https://github.com/mltframework/mlt Commit: 5b05e1954f607e3f4f02d07435eba592c105d6be https://github.com/mltframework/mlt/commit/5b05e1954f607e3f4f02d07435eba592c105d6be Author: Maksym Veremeyenko Date: 2014-06-22 (Sun, 22 Jun 2014) Changed pa

Re: [Mlt-devel] [PATCH] convert yuv422 image rgb24 only if left position is odd

2014-06-22 Thread Dan Dennedy
On Sun, Jun 22, 2014 at 6:27 AM, Maksym Veremeyenko wrote: > Hi, > > crop filter seems always want to convert to rgb24 > but IMHO it is required only of left offset is odd, am i correct? Since we coerce the output to an even width, yes, it is correct. However, your change should include parenthes

[Mlt-devel] [mltframework/mlt] 2f247c: cleanup backslahs

2014-06-22 Thread GitHub
Branch: refs/heads/master Home: https://github.com/mltframework/mlt Commit: 2f247c2a60720884733a5ba6c3a8b9c6b29ebb13 https://github.com/mltframework/mlt/commit/2f247c2a60720884733a5ba6c3a8b9c6b29ebb13 Author: Maksym Veremeyenko Date: 2014-06-22 (Sun, 22 Jun 2014) Changed pa

Re: [Mlt-devel] [PATCH] implement timecode barrier - skip all frames with VITC

2014-06-22 Thread Dan Dennedy
On Sun, Jun 22, 2014 at 6:24 AM, Maksym Veremeyenko wrote: > Hi, > > attached patch implement kind of timecode barrier i.e. skip frames if their > timecode less then specified. this patch makes possible a frame-accurate > capturing from VTR sources. I like it, but you need to document the new pro

Re: [Mlt-devel] [PATCH] reorder frame initialization call, cleanup useless parts

2014-06-22 Thread Dan Dennedy
On Sun, Jun 22, 2014 at 6:21 AM, Maksym Veremeyenko wrote: > Hi, > > attached patch reorder mlt frame initialization to avoid additional > mlt_frame_close for some cases. What problem does it solve? I do not like changing the message from "no signal" to "frame is invalid." The existing message is

Re: [Mlt-devel] [PATCH] fix playlist items move

2014-06-22 Thread Dan Dennedy
On Sun, Jun 22, 2014 at 6:19 AM, Maksym Veremeyenko wrote: > Hi, > > attached patch fix playlist item movement and setting new indexes. > If you want me to apply your patch with your authorship information and git-am, then please use a better commit message. "fix" is not good enough. -- +-DRD-+

[Mlt-devel] [PATCH] cleanup backslash

2014-06-22 Thread Maksym Veremeyenko
Hi, i notices single backslash on a line, IMHO it is a typo, so cleanup it. -- Maksym Veremeyenko >From 621420a5c8ae777bc123fbf9058960bdb817c6fc Mon Sep 17 00:00:00 2001 From: Maksym Veremeyenko Date: Sun, 22 Jun 2014 17:44:34 +0300 Subject: [PATCH 4/6]

[Mlt-devel] [PATCH] fix playlist items move

2014-06-22 Thread Maksym Veremeyenko
Hi, attached patch fix playlist item movement and setting new indexes. -- Maksym Veremeyenko >From eff949aeec2ffbe5299ebd21b0163dbd1d1f1ab5 Mon Sep 17 00:00:00 2001 From: Maksym Veremeyenko Date: Sun, 22 Jun 2014 17:13:10 +0300 Subject: [PATCH 1/6] fix p

[Mlt-devel] [PATCH] convert yuv422 image rgb24 only if left position is odd

2014-06-22 Thread Maksym Veremeyenko
Hi, crop filter seems always want to convert to rgb24 but IMHO it is required only of left offset is odd, am i correct? -- Maksym Veremeyenko >From ce486de8abfca429f4bb9c7c7586a76e2d10ad19 Mon Sep 17 00:00:00 2001 From: Maksym Veremeyenko Date: Sun, 22

[Mlt-devel] [PATCH] reorder frame initialization call, cleanup useless parts

2014-06-22 Thread Maksym Veremeyenko
Hi, attached patch reorder mlt frame initialization to avoid additional mlt_frame_close for some cases. -- Maksym Veremeyenko >From 85c892311c19099189147b616ff50177988a0c97 Mon Sep 17 00:00:00 2001 From: Maksym Veremeyenko Date: Sun, 22 Jun 2014 17:29

[Mlt-devel] [PATCH] implement timecode barrier - skip all frames with VITC

2014-06-22 Thread Maksym Veremeyenko
Hi, attached patch implement kind of timecode barrier i.e. skip frames if their timecode less then specified. this patch makes possible a frame-accurate capturing from VTR sources. -- Maksym Veremeyenko >From d6cf2b875e6bfe1ef5802942408076e87c18196c Mo

[Mlt-devel] [PATCH] Set timecode and userbits to output frame

2014-06-22 Thread Maksym Veremeyenko
Hi, attached patch implement setting VITC timecode and userbits to output frame. -- Maksym Veremeyenko >From 1a4e143f7d67b04cccd60dc74f2c0fa343d2179b Mon Sep 17 00:00:00 2001 From: Maksym Veremeyenko Date: Sun, 22 Jun 2014 18:07:12 +0300 Subject: [PATCH