README
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. IMPORTANT:  Don't send me mails with images attached unless I ask you
  2. to do so.  Mails with images attached will go to /dev/null unseen.
  3. Release notes for bttv-0.7.x
  4. ============================
  5. This version is based on Ralphs 0.6.4 release.  There are alot of
  6. changes.  Bugfixes, merged patches from other people, merged fixes
  7. from the kernel version, port to the new i2c stack, removed support
  8. for 2.0.x, code cleanups, ...
  9. To compile this bttv version, you'll the new i2c stack.  Kernels
  10. newer than 2.3.34 have this already included.  If you have a older
  11. kernel, download it from:
  12. http://www2.lm-sensors.nu/~lm78/download.html
  13. You'll need at least these config options for bttv:
  14. CONFIG_I2C=m
  15. CONFIG_I2C_ALGOBIT=m
  16. CONFIG_VIDEO_DEV=m
  17. The latest bttv version is available from http://bytesex.org/bttv/
  18. You'll find Ralphs original (mostly outdated) documentation in the
  19. ralphs-doc subdirectory.
  20. Compile bttv
  21. ------------
  22. If you are compiling the kernel version, just say 'm' if you are asked
  23. for bttv.  I /strongly/ recommend to compile bttv as module, because
  24. there are some insmod options for configuring the driver.  Starting
  25. with 0.7.49 the most important ones are available as kernel args too.
  26. If you downloaded the separate bttv bundle:  You need configured kernel
  27. sources to compile the bttv driver.  The driver uses some Makefile
  28. magic to compile the modules with your kernel's configuration
  29. (wrt. module-versions, SMP, ...).  If you already have compiled the
  30. kernel at least once, you probably don't have do worry about this.  If
  31. not, go to /usr/src/linux and run at least "make config".  Even
  32. better, compile your own kernel, you'll never become a real hacker
  33. else ;-)
  34. Note that you have to turn on video4linux support (CONFIG_VIDEO_DEV)
  35. in the kernel to get the videodev.o module which is required by bttv.
  36. Make bttv work with your card
  37. -----------------------------
  38. Setup your /etc/modules.conf file and let kmod load the modules.
  39. See also:
  40. Modules.conf: some sample entries for /etc/modules.conf
  41. Insmod-options: list of all insmod options available for bttv and
  42. the helper modules.
  43. MAKEDEV: a script to create the special files for v4l
  44. CARDLIST: List of all supported cards
  45. Loading just the bttv modules isn't enouth for most cards.  The
  46. drivers for the i2c tuner/sound chips must also be loaded.  bttv tries
  47. to load them automagically by calling request_module() now, but this
  48. obviously works only with kmod enabled.
  49. If bttv takes very long to load (happens sometimes with the cheap
  50. cards which have no tuner), try adding this to your modules.conf:
  51. options i2c-algo-bit bit_test=1
  52. The most important insmod option for bttv is "card=n" to select the
  53. correct card type in case the autodetection does'nt work. If you get
  54. video but no sound you've very likely specified the wrong (or no)
  55. card type.  A list of supported cards is in CARDLIST.
  56. If your card isn't listed in CARDLIST or if you have trouble making
  57. audio work, you should read the Sound-FAQ.
  58. Autodetecting cards
  59. -------------------
  60. bttv uses the PCI Subsystem ID to autodetect the card type.  lspci lists
  61. the Subsystem ID in the second line, looks like this:
  62. 00:0a.0 Multimedia video controller: Brooktree Corporation Bt878 (rev 02)
  63.         Subsystem: Hauppauge computer works Inc. WinTV/GO
  64.         Flags: bus master, medium devsel, latency 32, IRQ 5
  65.         Memory at e2000000 (32-bit, prefetchable) [size=4K]
  66. only bt878-based cards can have a subsystem ID (which does not mean
  67. that every card really has one).  bt848 cards can't have a Subsystem
  68. ID and therefore can't be autodetected.  There is a list with the ID's
  69. in bttv-cards.c (in case you are intrested or want to mail patches
  70. with updates).
  71. Old driver versions used to have a heuristic which could identify some
  72. bt848-based cards.  It worked for Hauppauge and Miro cards in most
  73. cases (simply because these where the first cards available on the
  74. market), but misdetected other bt848 cards.  That code is gone now for
  75. exactly this reason, the misdetection confused lots of people.  If you
  76. have a old Hauppauge or Miro card, you'll have to load the driver with
  77. card=1 or card=2 these days.
  78. Still doesn't work?
  79. -------------------
  80. I do NOT have a lab with 30+ different grabber boards and a
  81. PAL/NTSC/SECAM test signal generator at home, so I often can't
  82. reproduce your problems.  This makes debugging very difficult for me.
  83. If you have some knowledge and spare time, please try to fix this
  84. yourself (patches very welcome of course...)  You know: The linux
  85. slogan is "Do it yourself".
  86. There is a mailing list: video4linux-list@redhat.com.
  87. https://listman.redhat.com/mailman/listinfo/video4linux-list
  88. If you have trouble with some specific TV card, try to ask there
  89. instead of mailing me directly.  The chance that someone with the
  90. same card listens there is much higher...
  91. For problems with sound:  There are alot of different systems used
  92. for TV sound all over the world.  And there are also different chips
  93. which decode the audio signal.  Reports about sound problems ("stereo
  94. does'nt work") are pretty useless unless you include some details
  95. about your hardware and the TV sound scheme used in your country (or
  96. at least the country you are living in).
  97. Finally: If you mail some patches for bttv around the world (to
  98. linux-kernel/Alan/Linus/...), please Cc: me.
  99. Have fun with bttv,
  100.   Gerd
  101. --
  102. Gerd Knorr <kraxel@goldbach.in-berlin.de>