HDTV Support

Support for HDTV on FreeBSD is just starting out. JohnMarkGurney has added support an ATSC based card with work underway for a second. There is no known support for the DVB family. (Actually that's no longer true, there is now support for several USB devices via the multimedia/webcamd port using Linux v4l/dvb drivers, see HTPC)

Supported Devices

Support in Progress

Future Work

The following are comments/thoughts of JohnMarkGurney:

I have been advocating keeping most of capture card drivers support code in userland. The kernel should support data moving and protecting hardware (i.e. not letting users program arbitrary memory addresses like bktr currently does in METEORSVIDEO). Putting non-time critical and little used code in the kernel only bloats the kernel. In the days gone by, there was some value to keeping the code closer to the hardware and provide simpler kernel interfaces as it reduced userland code size, but today, userland code size is not a big issue. Supporting a library which does the control work of tuning is feasible, easier to debug and can reduce memory size by only loading the code for the card that you have.

Though it would seem that doing tuning and initalization in userland would prevent supporting the V4L API, that isn't the case. We could create a device that passes it's kernel calls to a userland program. That program then would be linked against the userland API, doing the necessary work. The userland daemon would not even have to do extra copies, as it could either obtain mappings to the original processes pages like w/ shared memory.


CategoryInactiveProject

JohnMarkGurney/HDTV (last edited 2021-03-28T07:53:07+0000 by KubilayKocak)