meye.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. Vaio Picturebook Motion Eye Camera Driver Readme
  2. ------------------------------------------------
  3. Copyright (C) 2001 Stelian Pop <stelian.pop@fr.alcove.com>, Alc魐e
  4. Copyright (C) 2000 Andrew Tridgell <tridge@samba.org>
  5. This driver enable the use of video4linux compatible applications with the
  6. Motion Eye camera. This driver requires the "Sony Vaio Programmable I/O 
  7. Control Device" driver (which can be found in the "Character drivers" 
  8. section of the kernel configuration utility) to be compiled and installed
  9. (using its "camera=1" parameter).
  10. It can do at maximum 30 fps @ 320x240 or 15 fps @ 640x480.
  11. Grabbing is supported in packed YUV colorspace only.
  12. MJPEG hardware grabbing is supported via a private API (see below).
  13. Module options:
  14. ---------------
  15. gbuffers: number of capture buffers, default is 2 (32 max)
  16. gbufsize: size of each capture buffer, default is 614400
  17. video_nr: video device to register (0 = /dev/video0, etc)
  18. Module use:
  19. -----------
  20. In order to automatically load the meye module on use, you can put those lines
  21. in your /etc/modules.conf file:
  22. alias char-major-81 videodev
  23. alias char-major-81-0 meye
  24. options meye gbuffers=32
  25. Usage:
  26. ------
  27. xawtv >= 3.49 (<http://bytesex.org/xawtv/>)
  28. for display and uncompressed video capture:
  29. xawtv -c /dev/video0 -geometry 640x480
  30. or
  31. xawtv -c /dev/video0 -geometry 320x240
  32. motioneye (<http://www.alcove-labs.org/en/software/meye/>)
  33. for getting ppm or jpg snapshots, mjpeg video
  34. Private API:
  35. ------------
  36. The driver supports frame grabbing with the video4linux API, so
  37. all video4linux tools (like xawtv) should work with this driver.
  38. Besides the video4linux interface, the driver has a private interface
  39. for accessing the Motion Eye extended parameters (camera sharpness,
  40. agc, video framerate), the shapshot and the MJPEG capture facilities.
  41. This interface consists of several ioctls (prototypes and structures
  42. can be found in include/linux/meye.h):
  43. MEYEIOC_G_PARAMS
  44. MEYEIOC_S_PARAMS
  45. Get and set the extended parameters of the motion eye camera.
  46. The user should always query the current parameters with
  47. MEYEIOC_G_PARAMS, change what he likes and then issue the
  48. MEYEIOC_S_PARAMS call (checking for -EINVAL). The extended
  49. parameters are described by the meye_params structure.
  50. MEYEIOC_QBUF_CAPT
  51. Queue a buffer for capture (the buffers must have been
  52. obtained with a VIDIOCGMBUF call and mmap'ed by the
  53. application). The argument to MEYEIOC_QBUF_CAPT is the
  54. buffer number to queue (or -1 to end capture). The first
  55. call to MEYEIOC_QBUF_CAPT starts the streaming capture.
  56. MEYEIOC_SYNC
  57. Takes as an argument the buffer number you want to sync.
  58. This ioctl blocks untils the buffer is filled and ready
  59. for the application to use. It returns the buffer size.
  60. MEYEIOC_STILLCAPT
  61. MEYEIOC_STILLJCAPT
  62. Takes a snapshot in an uncompressed or compressed jpeg format.
  63. This ioctl blocks until the snapshot is done and returns (for
  64. jpeg snapshot) the size of the image. The image data is 
  65. available from the first mmap'ed buffer.
  66. Look at the 'motioneye' application code for an actual example.
  67. Bugs / Todo:
  68. ------------
  69. - overlay output is not supported (although the camera is capable of).
  70.    (it should not be too hard to to it, provided we found how...)
  71. - mjpeg hardware playback doesn't work (depends on overlay...)
  72. - rewrite the driver to use some commun video4linux API for snapshot
  73.   and mjpeg capture. Unfortunately, video4linux1 does not permit it,
  74.   the BUZ API seems to be targeted to TV cards only. The video4linux 2
  75.   API may be an option, if it goes into the kernel (maybe 2.5 
  76.   material ?).