public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* Query: Implementation of overlay on linux
@ 2011-05-02 11:04 vipul kumar samar
  2011-05-02 13:20 ` Hans Verkuil
  0 siblings, 1 reply; 4+ messages in thread
From: vipul kumar samar @ 2011-05-02 11:04 UTC (permalink / raw)
  To: linux-media, linux-fbdev

Hello,

I am working on LCD module and I want to implement two overlay windows
on frame buffer. I have some queries related to this:

1. Can any body suggest me how to proceed towards it??
2. Is their any standard way to use frame buffer ioctl calls??
3. If i have to define my own ioctls then how application manage it??


Thanks and Regards
Vipul Samar

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Query: Implementation of overlay on linux
  2011-05-02 11:04 Query: Implementation of overlay on linux vipul kumar samar
@ 2011-05-02 13:20 ` Hans Verkuil
  2011-05-03 12:02   ` vipul kumar samar
  0 siblings, 1 reply; 4+ messages in thread
From: Hans Verkuil @ 2011-05-02 13:20 UTC (permalink / raw)
  To: vipul kumar samar; +Cc: linux-media, linux-fbdev

On Monday, May 02, 2011 13:04:59 vipul kumar samar wrote:
> Hello,
> 
> I am working on LCD module and I want to implement two overlay windows
> on frame buffer. I have some queries related to this:

You mean capture overlay windows? E.g. you want to capture from a video input 
and have the video directly rendered in the framebuffer?

The "Video Overlay Interface" section in the V4L2 specification describes how 
to do that, but it also depends on whether the V4L2 driver in question 
supports that feature.

It might be that you mean something else, though.

Regards,

	Hans

> 1. Can any body suggest me how to proceed towards it??
> 2. Is their any standard way to use frame buffer ioctl calls??
> 3. If i have to define my own ioctls then how application manage it??
> 
> 
> Thanks and Regards
> Vipul Samar
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Query: Implementation of overlay on linux
  2011-05-02 13:20 ` Hans Verkuil
@ 2011-05-03 12:02   ` vipul kumar samar
  2011-05-03 13:20     ` Hans Verkuil
  0 siblings, 1 reply; 4+ messages in thread
From: vipul kumar samar @ 2011-05-03 12:02 UTC (permalink / raw)
  To: Hans Verkuil; +Cc: linux-media@vger.kernel.org, laurent.pinchart, m.szyprowski

Hello,
On 05/02/2011 06:50 PM, Hans Verkuil wrote:
> On Monday, May 02, 2011 13:04:59 vipul kumar samar wrote:
>> Hello,
>>
>> I am working on LCD module and I want to implement two overlay windows
>> on frame buffer. I have some queries related to this:
>
> You mean capture overlay windows? E.g. you want to capture from a video input
> and have the video directly rendered in the framebuffer?
>

Our LCD driver is developed on frame buffer interface.Now i want to 
implement 2 overlay window support on the same driver.I saw the solution 
of frame buffer emulator provided on mailing list. But i am little bit 
confused.

My understanding is Frame buffer emulator provides a wrapper over V4L2 
framework based driver and provide a single buffer solution.But my 
condition is reverse i want to use V4L2 over frame buffer.

Is it fruit full to rearrange frame buffer based driver in v4l2 
framework and then implement overlay support over it??
Is there any simple way to use V4L2 frame work over frame buffer??

Thanks and Regards
Vipul Samar


> The "Video Overlay Interface" section in the V4L2 specification describes how
> to do that, but it also depends on whether the V4L2 driver in question
> supports that feature.
>
> It might be that you mean something else, though.
>
> Regards,
>
> 	Hans
>
>> 1. Can any body suggest me how to proceed towards it??
>> 2. Is their any standard way to use frame buffer ioctl calls??
>> 3. If i have to define my own ioctls then how application manage it??
>>
>>
>> Thanks and Regards
>> Vipul Samar
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-media" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>>
> .
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Query: Implementation of overlay on linux
  2011-05-03 12:02   ` vipul kumar samar
@ 2011-05-03 13:20     ` Hans Verkuil
  0 siblings, 0 replies; 4+ messages in thread
From: Hans Verkuil @ 2011-05-03 13:20 UTC (permalink / raw)
  To: vipul kumar samar
  Cc: linux-media@vger.kernel.org, laurent.pinchart, m.szyprowski

On Tuesday, May 03, 2011 14:02:02 vipul kumar samar wrote:
> Hello,
> On 05/02/2011 06:50 PM, Hans Verkuil wrote:
> > On Monday, May 02, 2011 13:04:59 vipul kumar samar wrote:
> >> Hello,
> >>
> >> I am working on LCD module and I want to implement two overlay windows
> >> on frame buffer. I have some queries related to this:
> >
> > You mean capture overlay windows? E.g. you want to capture from a video 
input
> > and have the video directly rendered in the framebuffer?
> >
> 
> Our LCD driver is developed on frame buffer interface.Now i want to 
> implement 2 overlay window support on the same driver.I saw the solution 
> of frame buffer emulator provided on mailing list. But i am little bit 
> confused.

So am I :-)

> My understanding is Frame buffer emulator provides a wrapper over V4L2 
> framework based driver and provide a single buffer solution.

Right.

> But my 
> condition is reverse i want to use V4L2 over frame buffer.
> 
> Is it fruit full to rearrange frame buffer based driver in v4l2 
> framework and then implement overlay support over it??
> Is there any simple way to use V4L2 frame work over frame buffer??

I still don't really understand what you want to do. You have a framebuffer,
and you want to display video in the framebuffer? Or do you want to mix a
framebuffer and a video output stream?

A block diagram of your hardware may help.

Regards,

          Hans

> 
> Thanks and Regards
> Vipul Samar
> 
> 
> > The "Video Overlay Interface" section in the V4L2 specification describes 
how
> > to do that, but it also depends on whether the V4L2 driver in question
> > supports that feature.
> >
> > It might be that you mean something else, though.
> >
> > Regards,
> >
> > 	Hans
> >
> >> 1. Can any body suggest me how to proceed towards it??
> >> 2. Is their any standard way to use frame buffer ioctl calls??
> >> 3. If i have to define my own ioctls then how application manage it??
> >>
> >>
> >> Thanks and Regards
> >> Vipul Samar
> >> --
> >> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> >> the body of a message to majordomo@vger.kernel.org
> >> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >>
> >>
> > .
> >
> 
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-05-03 13:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-02 11:04 Query: Implementation of overlay on linux vipul kumar samar
2011-05-02 13:20 ` Hans Verkuil
2011-05-03 12:02   ` vipul kumar samar
2011-05-03 13:20     ` Hans Verkuil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox