linux/Documentation/media/uapi/v4l
Mauro Carvalho Chehab 5bd4bb7817 [media] docs-rst: add tabularcolumns to all tables
LaTeX doesn't handle too well auto-width on tables, and ReST
markup requires an special tag to give it the needed hints.

As we're using A4 paper, we have 17cm of useful spaces. As
most media tables have widths, let's use it to generate the
needed via the following perl script:

my ($line_size, $table_header, $has_cols) = (17.5, 0, 0);
my $out;
my $header = "";
my @widths = ();
sub round { $_[0] > 0 ? int($_[0] + .5) : -int(-$_[0] + .5) }
while (<>) {
	if (!$table_header) {
		$has_cols = 1 if (m/..\s+tabularcolumns::/);
		if (m/..\s+flat-table::/) {
			$table_header = 1;
			$header = $_;
			next;
		}
		$out .= $_;
		next;
	}
	$header .= $_;
	@widths = split(/ /, $1) if (m/:widths:\s+(.*)/);
	if (m/^\n$/) {
		if (!$has_cols && @widths) {
			my ($tot, $t, $i) = (0, 0, 0);
			foreach my $v(@widths) { $tot += $v; };
			$out .= ".. tabularcolumns:: |";
			for ($i = 0; $i < scalar @widths - 1; $i++) {
				my $v = $widths[$i];
				my $w = round(10 * ($v * $line_size) / $tot) / 10;
				$out .= sprintf "p{%.1fcm}|", $w;
				$t += $w;
			}
			my $w = $line_size - $t;
			$out .= sprintf "p{%.1fcm}|\n\n", $w;
		}
		$out .= $header;
		$table_header = 0;
		$has_cols = 0;
		$header = "";
		@widths = ();
	}
}
print $out;

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-08-22 10:07:12 -03:00
..
crop_files doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
dev-raw-vbi_files Revert "[media] docs-rst: escape [] characters" 2016-07-13 08:43:30 -03:00
dev-subdev_files doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
field-order_files doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
pixfmt-nv12mt_files [media] pixfmt-nv12mt.rst: use PNG instead of GIF 2016-08-22 10:00:34 -03:00
selection-api-003_files doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
subdev-formats_files doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-g-selection_files doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
app-pri.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
async.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
audio.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
biblio.rst [media] doc-rst: linux_tv CEC part, DocBook to reST migration 2016-07-08 17:38:55 -03:00
buffer.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
capture-example.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
capture.c.rst Revert "[media] docs-rst: escape [] characters" 2016-07-13 08:43:30 -03:00
colorspaces.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
common-defs.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
common.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
compat.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
control.rst [media] doc-rst: use the right markup for footnotes 2016-07-12 15:15:23 -03:00
crop.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
depth-formats.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
dev-capture.rst [media] doc-rst: improve display of notes and warnings 2016-07-10 12:06:28 -03:00
dev-codec.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
dev-effect.rst [media] doc-rst: improve display of notes and warnings 2016-07-10 12:06:28 -03:00
dev-event.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
dev-osd.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
dev-output.rst [media] doc-rst: improve display of notes and warnings 2016-07-10 12:06:28 -03:00
dev-overlay.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
dev-radio.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
dev-raw-vbi.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
dev-rds.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
dev-sdr.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
dev-sliced-vbi.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
dev-subdev.rst [media] doc-rst: improve display of notes and warnings 2016-07-10 12:06:28 -03:00
dev-teletext.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
devices.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
diff-v4l.rst [media] doc-rst: use the right markup for footnotes 2016-07-12 15:15:23 -03:00
dmabuf.rst [media] doc-rst: improve display of notes and warnings 2016-07-10 12:06:28 -03:00
driver.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
dv-timings.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
extended-controls.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
field-order.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
format.rst [media] doc-rst: use the right markup for footnotes 2016-07-12 15:15:23 -03:00
func-close.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
func-ioctl.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
func-mmap.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
func-munmap.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
func-open.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
func-poll.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
func-read.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
func-select.rst [media] doc-rst: use the right markup for footnotes 2016-07-12 15:15:23 -03:00
func-write.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
hist-v4l2.rst Revert "[media] docs-rst: escape [] characters" 2016-07-13 08:43:30 -03:00
io.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
libv4l-introduction.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
libv4l.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
mmap.rst [media] doc-rst: use the right markup for footnotes 2016-07-12 15:15:23 -03:00
open.rst [media] doc-rst: use the right markup for footnotes 2016-07-12 15:15:23 -03:00
pixfmt-002.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-003.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-004.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
pixfmt-006.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
pixfmt-007.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-008.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
pixfmt-013.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-grey.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-indexed.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
pixfmt-m420.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-nv12.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-nv12m.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-nv12mt.rst [media] pixfmt-nv12mt.rst: use PNG instead of GIF 2016-08-22 10:00:34 -03:00
pixfmt-nv16.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-nv16m.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-nv24.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-packed-rgb.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-packed-yuv.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
pixfmt-reserved.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-rgb.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
pixfmt-sbggr8.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-sbggr16.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-sdr-cs08.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-sdr-cs14le.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-sdr-cu08.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-sdr-cu16le.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-sdr-ru12le.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-sgbrg8.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-sgrbg8.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-srggb8.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-srggb10.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-srggb10alaw8.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
pixfmt-srggb10dpcm8.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
pixfmt-srggb10p.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-srggb12.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-uv8.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-uyvy.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-vyuy.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-y8i.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-y10.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-y10b.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-y12.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-y12i.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-y16-be.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-y16.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-y41p.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-yuv410.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-yuv411p.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-yuv420.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-yuv420m.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-yuv422m.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-yuv422p.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-yuv444m.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-yuyv.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-yvyu.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt-z16.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
pixfmt.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
planar-apis.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
querycap.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
rw.rst [media] doc-rst: use the right markup for footnotes 2016-07-12 15:15:23 -03:00
sdr-formats.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
selection-api-002.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
selection-api-003.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
selection-api-004.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
selection-api-005.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
selection-api-006.rst [media] doc-rst: Don't use captions for examples 2016-07-10 08:31:24 -03:00
selection-api.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
selections-common.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
standard.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
streaming-par.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
subdev-formats.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
tuner.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
user-func.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
userp.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
v4l2-selection-flags.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
v4l2-selection-targets.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
v4l2.rst [media] doc-rst: better organize the media books 2016-07-23 08:03:24 -03:00
v4l2grab-example.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
v4l2grab.c.rst Revert "[media] docs-rst: escape [] characters" 2016-07-13 08:43:30 -03:00
video.rst [media] doc-rst: Don't use captions for examples 2016-07-10 08:31:24 -03:00
videodev.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-create-bufs.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-cropcap.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-dbg-g-chip-info.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-dbg-g-register.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-decoder-cmd.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-dqevent.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-dv-timings-cap.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-encoder-cmd.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-enum-dv-timings.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-enum-fmt.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-enum-frameintervals.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-enum-framesizes.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-enum-freq-bands.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-enumaudio.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-enumaudioout.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
vidioc-enuminput.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-enumoutput.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-enumstd.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-expbuf.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-audio.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-audioout.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-crop.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-ctrl.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-dv-timings.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-edid.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-enc-index.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-ext-ctrls.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-fbuf.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-fmt.rst Revert "[media] docs-rst: escape [] characters" 2016-07-13 08:43:30 -03:00
vidioc-g-frequency.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-input.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-g-jpegcomp.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-modulator.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-output.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-g-parm.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-priority.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-selection.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-sliced-vbi-cap.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-g-std.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-g-tuner.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-log-status.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-overlay.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-prepare-buf.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-qbuf.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
vidioc-query-dv-timings.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
vidioc-querybuf.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00
vidioc-querycap.rst [media] vidioc-querycap.rst: Better format tables on PDF output 2016-08-22 10:05:19 -03:00
vidioc-queryctrl.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-querystd.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
vidioc-reqbufs.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-s-hw-freq-seek.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-streamon.rst [media] docs-rst: better use the .. note:: tag 2016-08-22 10:02:29 -03:00
vidioc-subdev-enum-frame-interval.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-subdev-enum-frame-size.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-subdev-enum-mbus-code.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-subdev-g-crop.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-subdev-g-fmt.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-subdev-g-frame-interval.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-subdev-g-selection.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
vidioc-subscribe-event.rst [media] docs-rst: add tabularcolumns to all tables 2016-08-22 10:07:12 -03:00
yuv-formats.rst doc_rst: rename the media Sphinx suff to Documentation/media 2016-07-08 11:59:40 -03:00