Blame view

include/linux/ivtvfb.h 1.15 KB
32db77545   Hans Verkuil   V4L/DVB (5902): A...
1
2
  /*
      On Screen Display cx23415 Framebuffer driver
0f45b8c57   Hans Verkuil   V4L/DVB (6119): i...
3
      Copyright (C) 2006, 2007  Ian Armstrong <ian@iarmst.demon.co.uk>
32db77545   Hans Verkuil   V4L/DVB (5902): A...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  
      This program is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published by
      the Free Software Foundation; either version 2 of the License, or
      (at your option) any later version.
  
      This program is distributed in the hope that it will be useful,
      but WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      GNU General Public License for more details.
  
      You should have received a copy of the GNU General Public License
      along with this program; if not, write to the Free Software
      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   */
0f45b8c57   Hans Verkuil   V4L/DVB (6119): i...
19
20
  #ifndef __LINUX_IVTVFB_H__
  #define __LINUX_IVTVFB_H__
5e6b83ed8   David Woodhouse   Fix header export...
21
  #include <linux/compiler.h>
0f45b8c57   Hans Verkuil   V4L/DVB (6119): i...
22
  #include <linux/types.h>
32db77545   Hans Verkuil   V4L/DVB (5902): A...
23
24
  
  /* Framebuffer external API */
d715e766d   Hans Verkuil   V4L/DVB (5905): i...
25
  struct ivtvfb_dma_frame {
32db77545   Hans Verkuil   V4L/DVB (5902): A...
26
27
28
29
  	void __user *source;
  	unsigned long dest_offset;
  	int count;
  };
0f45b8c57   Hans Verkuil   V4L/DVB (6119): i...
30
  #define IVTVFB_IOC_DMA_FRAME 	_IOW('V', BASE_VIDIOC_PRIVATE+0, struct ivtvfb_dma_frame)
32db77545   Hans Verkuil   V4L/DVB (5902): A...
31
32
  
  #endif