~ubuntu-branches/debian/sid/v4l-utils/sid

« back to all changes in this revision

Viewing changes to utils/qv4l2/v4l2-api.h

  • Committer: Bazaar Package Importer
  • Author(s): Gregor Jasny
  • Date: 2010-10-03 16:26:40 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20101003162640-88djisgfegdp020e
Tags: 0.8.1-1
* New upstream version (Closes: #598969)
* Bumped standards to version 3.9.1 (no changes needed)
* Updated copyright file 

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
        bool s_audout(int output);
66
66
        bool s_std(v4l2_std_id std);
67
67
        bool g_std(v4l2_std_id &std);
 
68
        bool s_dv_preset(__u32 preset);
 
69
        bool g_dv_preset(__u32 &preset);
68
70
        bool g_frequency(v4l2_frequency &freq);
69
71
        bool s_frequency(v4l2_frequency &freq);
70
72
        bool s_frequency(int freq);
72
74
        bool g_fmt_out(v4l2_format &fmt);
73
75
        bool try_fmt(v4l2_format &fmt);
74
76
        bool s_fmt(v4l2_format &fmt);
75
 
        bool enum_input(v4l2_input &in, bool init = false);
76
 
        bool enum_output(v4l2_output &out, bool init = false);
 
77
        bool enum_input(v4l2_input &in, bool init = false, int index = 0);
 
78
        bool enum_output(v4l2_output &out, bool init = false, int index = 0);
77
79
        bool enum_audio(v4l2_audio &audio, bool init = false);
78
80
        bool enum_audout(v4l2_audioout &audout, bool init = false);
79
81
        bool enum_std(v4l2_standard &std, bool init = false, int index = 0);
 
82
        bool enum_dv_preset(v4l2_dv_enum_preset &preset, bool init = false, int index = 0);
80
83
        bool enum_fmt_cap(v4l2_fmtdesc &std, bool init = false, int index = 0);
81
84
        bool enum_fmt_out(v4l2_fmtdesc &std, bool init = false, int index = 0);
82
85
        bool enum_framesizes(v4l2_frmsizeenum &frm, __u32 init_pixfmt = 0, int index = 0);