SYNOPSIS
struct analog_parameters {
unsigned int frequency;
unsigned int mode;
unsigned int audmode;
u64 std;
};
MEMBERS
frequency
- Frequency used by analog TV tuner (either in 62.5 kHz step, for TV, or 62.5 Hz for radio)
mode
- Tuner mode, as defined on enum v4l2_tuner_type
audmode
- Audio mode as defined for the rxsubchans field at videodev2.h, e. g. V4L2_TUNER_MODE_*
std
- TV standard bitmap as defined at videodev2.h, e. g. V4L2_STD_*
DESCRIPTION
Hybrid tuners should be supported by both V4L2 and DVB APIs. This struct contains the data that are used by the V4L2 side. To avoid dependencies from V4L2 headers, all enums here are declared as integers.
COPYRIGHT