#ifndef _LINUX_VIDEO_DECODER_H
#define _LINUX_VIDEO_DECODER_H
#define HAVE_VIDEO_DECODER 1
struct video_decoder_capability { /* this name is too long */
__u32 flags;
#define VIDEO_DECODER_PAL 1 /* can decode PAL signal */
#define VIDEO_DECODER_NTSC 2 /* can decode NTSC */
#define VIDEO_DECODER_SECAM 4 /* can decode SECAM */
#define VIDEO_DECODER_AUTO 8 /* can autosense norm */
#define VIDEO_DECODER_CCIR 16 /* CCIR-601 pixel rate (720 pixels per line) instead of square pixel rate */
int inputs; /* number of inputs */
int outputs; /* number of outputs */
};
/*
DECODER_GET_STATUS returns the following flags. The only one you need is
DECODER_STATUS_GOOD, the others are just nice things to know.
*/
#define DECODER_STATUS_GOOD 1 /* receiving acceptable input */
#define DECODER_STATUS_COLOR 2 /* receiving color information */
#define DECODER_STATUS_PAL 4 /* auto detected */
#define DECODER_STATUS_NTSC 8 /* auto detected */
#define DECODER_STATUS_SECAM 16 /* auto detected */
struct video_decoder_init {
unsigned char len;
const unsigned char *data;
};
#define DECODER_GET_CAPABILITIES _IOR('d', 1, struct video_decoder_capability)
#define DECODER_GET_STATUS _IOR('d', 2, int)
#define DECODER_SET_NORM _IOW('d', 3, int)
#define DECODER_SET_INPUT _IOW('d', 4, int) /* 0 <= input < #inputs */
#define DECODER_SET_OUTPUT _IOW('d', 5, int) /* 0 <= output < #outputs */
#define DECODER_ENABLE_OUTPUT _IOW('d', 6, int) /* boolean output enable control */
#define DECODER_SET_PICTURE _IOW('d', 7, struct video_picture)
#define DECODER_SET_GPIO _IOW('d', 8, int) /* switch general purpose pin */
#define DECODER_INIT _IOW('d', 9, struct video_decoder_init) /* init internal registers at once */
#define DECODER_SET_VBI_BYPASS _IOW('d', 10, int) /* switch vbi bypass */
#define DECODER_DUMP _IO('d', 192) /* debug hook */
#endif
27.y'>linux-2.6.27.y
| Hosts the 0x221E linux distro kernel. | Ubuntu |
| Age | Commit message (Expand) | Author |
| 2008-10-22 | ACPICA: Optimize buffer allocation procedure | Bob Moore |
| 2008-10-22 | ACPICA: Fix possible memory leak, error exit path | Lin Ming |
| 2008-10-22 | ACPICA: Remove unused ACPI register bit definition | Lin Ming |
| 2008-10-22 | ACPICA: Cleanup for internal Reference Object | Bob Moore |
| 2008-10-22 | ACPICA: Improve object conversion error messages | Bob Moore |
| 2008-10-22 | ACPICA: Add function to decode reference obj types to strings | Bob Moore |
| 2008-10-22 | ACPICA: Return status from global init function | Yi Yang |
| 2008-08-15 | ACPICA: Additional error checking for pathname utilities | Bob Moore |
| 2008-08-15 | ACPICA: Fix memory leak when deleting thermal/processor objects | Bob Moore |
| 2008-07-22 | acpi: fix crash in core ACPI code, triggered by CONFIG_ACPI_PCI_SLOT=y | Ingo Molnar |
| 2008-07-16 | ACPICA: Fix mutex debug code for wrong loop termination value | Bob Moore |
| 2008-07-16 | ACPICA: Add const qualifier for appropriate string constants | Bob Moore |
| 2008-07-16 | ACPICA: Eliminate acpi_native_uint type v2 | Bob Moore |
| 2008-07-16 | ACPICA: Fix possible negative array index in acpi_ut_validate_exception | Bob Moore |
| 2008-07-16 | ACPICA: Fix for hang on GPE method invocation | Bob Moore |
| 2008-06-11 | ACPICA: fix stray va_end() caused by mis-merge | Len Brown |
| 2008-04-30 | Merge branches 'release', 'acpica', 'bugzilla-10224', 'bugzilla-9772', 'bugzi... | Len Brown |
| 2008-04-24 | ACPI: GPE enabling should happen after EC installation | Alexey Starikovskiy |
| 2008-04-23 | ACPICA: update Intel copyright | Len Brown |
| 2008-04-22 | ACPICA: Update for new Notify values | Zhang Rui |
| 2008-04-22 | ACPICA: Fixes for external Reference Objects | Bob Moore |
| 2008-04-22 | ACPICA: Fix to handle NULL package elements correctly | Lin Ming |
| 2008-04-22 | ACPICA: Fix for possible error when packages/buffers are passed to methods ex... | Bob Moore |
| 2008-04-22 | ACPICA: Added new error messages | Bob Moore |
| 2008-04-22 | ACPICA: Add va_end statements as appropriate | Bob Moore |
| 2008-04-22 | ACPICA: Fixes for Unload and DDBHandles | Lin Ming |
| 2008-04-22 | ACPICA: Implemented full argument resolution support for the BankValue argume... | Lin Ming |
| 2008-04-22 | ACPICA: Fixed a problem with FromBCD and ToBCD with some compilers | Bob Moore |
| 2008-04-22 | ACPICA: Cosmetic changes only, no functional changes | Bob Moore |
| 2008-04-22 | ACPICA: Fixed a memory leak when Device or Thermal objects referenced in pack... | Bob Moore |
| 2008-04-22 | ACPICA: Fix for fault if Load() fails | Bob Moore |
| 2008-04-22 | ACPICA: New interfaces for table event handlers | Lin Ming |
| 2008-04-22 | ACPICA: Support for iASL - multiple files and wildcards | Bob Moore |
| 2008-04-22 | ACPICA: Update for mutiple global lock acquisitions by same thread | Bob Moore |
| 2008-03-13 | Merge branches 'release', 'button-sysfs', 'misc', 'mismatch', 'randconfig' an... | Len Brown |
| 2008-03-11 | ACPI: replace remaining __FUNCTION__ occurrences | Harvey Harrison |
| 2008-03-11 | ACPI: fix boot oops regression in thermal | Lin Ming |
| 2008-02-06 | ACPI: create /sys/firmware/acpi/interrupts | Len Brown |
| 2008-02-03 | drivers/acpi/: Spelling fixes | Joe Perches |
| 2007-08-25 | ACPI: add dump_stack() to trace acpi_format_exception programming errors | Andrew Morton |
| 2007-07-23 | ACPI: autoload modules - ACPICA modifications | Thomas Renninger |
| 2007-07-22 | Pull osi into release branch | Len Brown |
| 2007-07-03 | ACPICA: Update _OSI string list | Bob Moore |
| 2007-06-18 | ACPICA: fix error path in new external package objects as method arguments | Myron Stowe |
| 2007-06-02 | Pull osi-now into release branch | Len Brown |
| 2007-06-02 | ACPICA: Support for external package objects as method arguments | Bob Moore |
| 2007-05-30 | ACPI: add __init to acpi_initialize_subsystem() | Len Brown |
| 2007-05-30 | ACPI: Make _OSI(Linux) a special case | Len Brown |