ivtv.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. Public ivtv API header
  3. Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com>
  4. Copyright (C) 2004-2007 Hans Verkuil <hverkuil@xs4all.nl>
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. */
  17. #ifndef __LINUX_IVTV_H__
  18. #define __LINUX_IVTV_H__
  19. #include <linux/compiler.h>
  20. #include <linux/types.h>
  21. #include <linux/videodev2.h>
  22. /* ivtv knows several distinct output modes: MPEG streaming,
  23. YUV streaming, YUV updates through user DMA and the passthrough
  24. mode.
  25. In order to clearly tell the driver that we are in user DMA
  26. YUV mode you need to call IVTV_IOC_DMA_FRAME with y_source == NULL
  27. first (althrough if you don't then the first time
  28. DMA_FRAME is called the mode switch is done automatically).
  29. When you close the file handle the user DMA mode is exited again.
  30. While in one mode, you cannot use another mode (EBUSY is returned).
  31. All this means that if you want to change the YUV interlacing
  32. for the user DMA YUV mode you first need to do call IVTV_IOC_DMA_FRAME
  33. with y_source == NULL before you can set the correct format using
  34. VIDIOC_S_FMT.
  35. Eventually all this should be replaced with a proper V4L2 API,
  36. but for now we have to do it this way. */
  37. struct ivtv_dma_frame {
  38. enum v4l2_buf_type type; /* V4L2_BUF_TYPE_VIDEO_OUTPUT */
  39. __u32 pixelformat; /* 0 == same as destination */
  40. void __user *y_source; /* if NULL and type == V4L2_BUF_TYPE_VIDEO_OUTPUT,
  41. then just switch to user DMA YUV output mode */
  42. void __user *uv_source; /* Unused for RGB pixelformats */
  43. struct v4l2_rect src;
  44. struct v4l2_rect dst;
  45. __u32 src_width;
  46. __u32 src_height;
  47. };
  48. #define IVTV_IOC_DMA_FRAME _IOW ('V', BASE_VIDIOC_PRIVATE+0, struct ivtv_dma_frame)
  49. /* Select the passthrough mode (if the argument is non-zero). In the passthrough
  50. mode the output of the encoder is passed immediately into the decoder. */
  51. #define IVTV_IOC_PASSTHROUGH_MODE _IOW ('V', BASE_VIDIOC_PRIVATE+1, int)
  52. /* Deprecated defines: applications should use the defines from videodev2.h */
  53. #define IVTV_SLICED_TYPE_TELETEXT_B V4L2_MPEG_VBI_IVTV_TELETEXT_B
  54. #define IVTV_SLICED_TYPE_CAPTION_525 V4L2_MPEG_VBI_IVTV_CAPTION_525
  55. #define IVTV_SLICED_TYPE_WSS_625 V4L2_MPEG_VBI_IVTV_WSS_625
  56. #define IVTV_SLICED_TYPE_VPS V4L2_MPEG_VBI_IVTV_VPS
  57. #endif /* _LINUX_IVTV_H */