* i.MX6 Video combiner
@ 2015-02-25 10:57 Jean-Michel Hautbois
2015-02-25 17:37 ` Steve Longerbeam
0 siblings, 1 reply; 6+ messages in thread
From: Jean-Michel Hautbois @ 2015-02-25 10:57 UTC (permalink / raw)
To: Steve Longerbeam, Linux Media Mailing List
Cc: Philipp Zabel, Robert Schwebel, Fabio Estevam
Hi all,
I read in the i.MX6 TRM that it can do combining or deinterlacing with VDIC.
Has it been tested by anyone ?
Could it be a driver, which would allow to do some simple compositing
of souces ?
Thanks,
JM
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: i.MX6 Video combiner
2015-02-25 10:57 i.MX6 Video combiner Jean-Michel Hautbois
@ 2015-02-25 17:37 ` Steve Longerbeam
2015-02-25 17:54 ` Steve Longerbeam
0 siblings, 1 reply; 6+ messages in thread
From: Steve Longerbeam @ 2015-02-25 17:37 UTC (permalink / raw)
To: Jean-Michel Hautbois, Linux Media Mailing List
Cc: Philipp Zabel, Robert Schwebel, Fabio Estevam
On 02/25/2015 02:57 AM, Jean-Michel Hautbois wrote:
> Hi all,
>
> I read in the i.MX6 TRM that it can do combining or deinterlacing with VDIC.
> Has it been tested by anyone ?
> Could it be a driver, which would allow to do some simple compositing
> of souces ?
>
> Thanks,
> JM
I've added VDIC support (deinterlace with motion compensation) to the
capture driver, it's in the my media tree clone:
git@github.com:slongerbeam/mediatree.git, mx6-media-staging
Steve
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: i.MX6 Video combiner
2015-02-25 17:37 ` Steve Longerbeam
@ 2015-02-25 17:54 ` Steve Longerbeam
2015-02-25 19:40 ` Jean-Michel Hautbois
0 siblings, 1 reply; 6+ messages in thread
From: Steve Longerbeam @ 2015-02-25 17:54 UTC (permalink / raw)
To: Jean-Michel Hautbois, Linux Media Mailing List
Cc: Philipp Zabel, Robert Schwebel, Fabio Estevam
On 02/25/2015 09:37 AM, Steve Longerbeam wrote:
> On 02/25/2015 02:57 AM, Jean-Michel Hautbois wrote:
>> Hi all,
>>
>> I read in the i.MX6 TRM that it can do combining or deinterlacing with VDIC.
>> Has it been tested by anyone ?
>> Could it be a driver, which would allow to do some simple compositing
>> of souces ?
>>
>> Thanks,
>> JM
> I've added VDIC support (deinterlace with motion compensation) to the
> capture driver, it's in the my media tree clone:
>
> git@github.com:slongerbeam/mediatree.git, mx6-media-staging
it is activated if user sets the motion compensation control to
1 (low motion), 2 (medium motion), or 3 (high motion), for
example:
# v4l2-ctl --set-ctrl=motion_compensation=2
Steve
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: i.MX6 Video combiner
2015-02-25 17:54 ` Steve Longerbeam
@ 2015-02-25 19:40 ` Jean-Michel Hautbois
2015-02-25 21:44 ` Steve Longerbeam
0 siblings, 1 reply; 6+ messages in thread
From: Jean-Michel Hautbois @ 2015-02-25 19:40 UTC (permalink / raw)
To: Steve Longerbeam
Cc: Linux Media Mailing List, Philipp Zabel, Robert Schwebel,
Fabio Estevam
Hi Steve,
2015-02-25 18:54 GMT+01:00 Steve Longerbeam <slongerbeam@gmail.com>:
> On 02/25/2015 09:37 AM, Steve Longerbeam wrote:
>> On 02/25/2015 02:57 AM, Jean-Michel Hautbois wrote:
>>> Hi all,
>>>
>>> I read in the i.MX6 TRM that it can do combining or deinterlacing with VDIC.
>>> Has it been tested by anyone ?
>>> Could it be a driver, which would allow to do some simple compositing
>>> of souces ?
>>>
>>> Thanks,
>>> JM
>> I've added VDIC support (deinterlace with motion compensation) to the
>> capture driver, it's in the my media tree clone:
>>
>> git@github.com:slongerbeam/mediatree.git, mx6-media-staging
>
> it is activated if user sets the motion compensation control to
> 1 (low motion), 2 (medium motion), or 3 (high motion), for
> example:
>
> # v4l2-ctl --set-ctrl=motion_compensation=2
Thx for the tip :).
And in fact, it is "only" deinterlacing, not combining two planes with
background as specified in the TRM (or did I miss something ?).
JM
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: i.MX6 Video combiner
2015-02-25 19:40 ` Jean-Michel Hautbois
@ 2015-02-25 21:44 ` Steve Longerbeam
2015-02-25 21:48 ` Jean-Michel Hautbois
0 siblings, 1 reply; 6+ messages in thread
From: Steve Longerbeam @ 2015-02-25 21:44 UTC (permalink / raw)
To: Jean-Michel Hautbois
Cc: Linux Media Mailing List, Philipp Zabel, Robert Schwebel,
Fabio Estevam
On 02/25/2015 11:40 AM, Jean-Michel Hautbois wrote:
> Hi Steve,
>
> 2015-02-25 18:54 GMT+01:00 Steve Longerbeam <slongerbeam@gmail.com>:
>> On 02/25/2015 09:37 AM, Steve Longerbeam wrote:
>>> On 02/25/2015 02:57 AM, Jean-Michel Hautbois wrote:
>>>> Hi all,
>>>>
>>>> I read in the i.MX6 TRM that it can do combining or deinterlacing with VDIC.
>>>> Has it been tested by anyone ?
>>>> Could it be a driver, which would allow to do some simple compositing
>>>> of souces ?
>>>>
>>>> Thanks,
>>>> JM
>>> I've added VDIC support (deinterlace with motion compensation) to the
>>> capture driver, it's in the my media tree clone:
>>>
>>> git@github.com:slongerbeam/mediatree.git, mx6-media-staging
>> it is activated if user sets the motion compensation control to
>> 1 (low motion), 2 (medium motion), or 3 (high motion), for
>> example:
>>
>> # v4l2-ctl --set-ctrl=motion_compensation=2
> Thx for the tip :).
> And in fact, it is "only" deinterlacing, not combining two planes with
> background as specified in the TRM (or did I miss something ?).
Hi JM, yes it is deinterlace only, the combiner in the VDIC is not
being used.
Steve
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: i.MX6 Video combiner
2015-02-25 21:44 ` Steve Longerbeam
@ 2015-02-25 21:48 ` Jean-Michel Hautbois
0 siblings, 0 replies; 6+ messages in thread
From: Jean-Michel Hautbois @ 2015-02-25 21:48 UTC (permalink / raw)
To: Steve Longerbeam
Cc: Linux Media Mailing List, Philipp Zabel, Robert Schwebel,
Fabio Estevam
2015-02-25 22:44 GMT+01:00 Steve Longerbeam <slongerbeam@gmail.com>:
> On 02/25/2015 11:40 AM, Jean-Michel Hautbois wrote:
>> Hi Steve,
>>
>> 2015-02-25 18:54 GMT+01:00 Steve Longerbeam <slongerbeam@gmail.com>:
>>> On 02/25/2015 09:37 AM, Steve Longerbeam wrote:
>>>> On 02/25/2015 02:57 AM, Jean-Michel Hautbois wrote:
>>>>> Hi all,
>>>>>
>>>>> I read in the i.MX6 TRM that it can do combining or deinterlacing with VDIC.
>>>>> Has it been tested by anyone ?
>>>>> Could it be a driver, which would allow to do some simple compositing
>>>>> of souces ?
>>>>>
>>>>> Thanks,
>>>>> JM
>>>> I've added VDIC support (deinterlace with motion compensation) to the
>>>> capture driver, it's in the my media tree clone:
>>>>
>>>> git@github.com:slongerbeam/mediatree.git, mx6-media-staging
>>> it is activated if user sets the motion compensation control to
>>> 1 (low motion), 2 (medium motion), or 3 (high motion), for
>>> example:
>>>
>>> # v4l2-ctl --set-ctrl=motion_compensation=2
>> Thx for the tip :).
>> And in fact, it is "only" deinterlacing, not combining two planes with
>> background as specified in the TRM (or did I miss something ?).
>
> Hi JM, yes it is deinterlace only, the combiner in the VDIC is not
> being used.
Well, I don't really know if it would be possible to have it too, and
how difficult it is. Maybe as a m2m device, as it could be driven by
gstreamer for instance and would replace pure software composition
element...
I may need to take some time and look further into this, but if anyone
has tested it, or can give me advices on how it should be done, it can
help (a lot)... :).
Thanks,
JM
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-02-25 21:49 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-25 10:57 i.MX6 Video combiner Jean-Michel Hautbois
2015-02-25 17:37 ` Steve Longerbeam
2015-02-25 17:54 ` Steve Longerbeam
2015-02-25 19:40 ` Jean-Michel Hautbois
2015-02-25 21:44 ` Steve Longerbeam
2015-02-25 21:48 ` Jean-Michel Hautbois
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.