#include <linux/module.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/types.h>
#include <linux/videodev2.h>
#include <media/tuner.h>
#include <media/cx2341x.h>
#include <media/v4l2-common.h>
Go to the source code of this file.
|
| | MODULE_DESCRIPTION ("cx23415/6/8 driver") |
| |
| | MODULE_AUTHOR ("Hans Verkuil") |
| |
| | MODULE_LICENSE ("GPL") |
| |
| | module_param (debug, int, 0644) |
| |
| | MODULE_PARM_DESC (debug,"Debug level (0-1)") |
| |
| | EXPORT_SYMBOL (cx2341x_mpeg_ctrls) |
| |
| int | cx2341x_ctrl_query (const struct cx2341x_mpeg_params *params, struct v4l2_queryctrl *qctrl) |
| |
| | EXPORT_SYMBOL (cx2341x_ctrl_query) |
| |
| const char *const * | cx2341x_ctrl_get_menu (const struct cx2341x_mpeg_params *p, u32 id) |
| |
| | EXPORT_SYMBOL (cx2341x_ctrl_get_menu) |
| |
| int | cx2341x_ext_ctrls (struct cx2341x_mpeg_params *params, int busy, struct v4l2_ext_controls *ctrls, unsigned int cmd) |
| |
| | EXPORT_SYMBOL (cx2341x_ext_ctrls) |
| |
| void | cx2341x_fill_defaults (struct cx2341x_mpeg_params *p) |
| |
| | EXPORT_SYMBOL (cx2341x_fill_defaults) |
| |
| int | cx2341x_update (void *priv, cx2341x_mbox_func func, const struct cx2341x_mpeg_params *old, const struct cx2341x_mpeg_params *new) |
| |
| | EXPORT_SYMBOL (cx2341x_update) |
| |
| void | cx2341x_log_status (const struct cx2341x_mpeg_params *p, const char *prefix) |
| |
| | EXPORT_SYMBOL (cx2341x_log_status) |
| |
| int | cx2341x_handler_init (struct cx2341x_handler *cxhdl, unsigned nr_of_controls_hint) |
| |
| | EXPORT_SYMBOL (cx2341x_handler_init) |
| |
| void | cx2341x_handler_set_50hz (struct cx2341x_handler *cxhdl, int is_50hz) |
| |
| | EXPORT_SYMBOL (cx2341x_handler_set_50hz) |
| |
| int | cx2341x_handler_setup (struct cx2341x_handler *cxhdl) |
| |
| | EXPORT_SYMBOL (cx2341x_handler_setup) |
| |
| void | cx2341x_handler_set_busy (struct cx2341x_handler *cxhdl, int busy) |
| |
| | EXPORT_SYMBOL (cx2341x_handler_set_busy) |
| |
| #define CX2341X_AUDIO_ENCODING_METHOD_AC3 1 |
| #define CX2341X_AUDIO_ENCODING_METHOD_LPCM 2 |
| #define CX2341X_AUDIO_ENCODING_METHOD_MPEG 0 |
| MODULE_AUTHOR |
( |
"Hans Verkuil" |
| ) |
|
| MODULE_DESCRIPTION |
( |
"cx23415/6/8 driver" |
| ) |
|