OSDN Git Service

media: docs: split meye.rst into admin and uAPI docs
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Wed, 4 Mar 2020 15:24:52 +0000 (16:24 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 14 Apr 2020 08:29:06 +0000 (10:29 +0200)
Instead of placing both info from admin PoV and uAPI at the
same place, split into two separate documents.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Documentation/media/v4l-drivers/index.rst
Documentation/media/v4l-drivers/meye-uapi.rst [new file with mode: 0644]
Documentation/media/v4l-drivers/meye.rst

index 72fbb39..5a87bd1 100644 (file)
@@ -67,3 +67,4 @@ For more details see the file COPYING in the source distribution of Linux.
        zr364xx
 
        cpia2_devel
+       meye-uapi
diff --git a/Documentation/media/v4l-drivers/meye-uapi.rst b/Documentation/media/v4l-drivers/meye-uapi.rst
new file mode 100644 (file)
index 0000000..66b1c14
--- /dev/null
@@ -0,0 +1,53 @@
+.. SPDX-License-Identifier: GPL-2.0
+
+.. include:: <isonum.txt>
+
+Vaio Picturebook Motion Eye Camera Driver
+=========================================
+
+Copyright |copy| 2001-2004 Stelian Pop <stelian@popies.net>
+
+Copyright |copy| 2001-2002 AlcĂ´ve <www.alcove.com>
+
+Copyright |copy| 2000 Andrew Tridgell <tridge@samba.org>
+
+Private API
+-----------
+
+The driver supports frame grabbing with the video4linux API,
+so all video4linux tools (like xawtv) should work with this driver.
+
+Besides the video4linux interface, the driver has a private interface
+for accessing the Motion Eye extended parameters (camera sharpness,
+agc, video framerate), the snapshot and the MJPEG capture facilities.
+
+This interface consists of several ioctls (prototypes and structures
+can be found in include/linux/meye.h):
+
+MEYEIOC_G_PARAMS and MEYEIOC_S_PARAMS
+       Get and set the extended parameters of the motion eye camera.
+       The user should always query the current parameters with
+       MEYEIOC_G_PARAMS, change what he likes and then issue the
+       MEYEIOC_S_PARAMS call (checking for -EINVAL). The extended
+       parameters are described by the meye_params structure.
+
+
+MEYEIOC_QBUF_CAPT
+       Queue a buffer for capture (the buffers must have been
+       obtained with a VIDIOCGMBUF call and mmap'ed by the
+       application). The argument to MEYEIOC_QBUF_CAPT is the
+       buffer number to queue (or -1 to end capture). The first
+       call to MEYEIOC_QBUF_CAPT starts the streaming capture.
+
+MEYEIOC_SYNC
+       Takes as an argument the buffer number you want to sync.
+       This ioctl blocks until the buffer is filled and ready
+       for the application to use. It returns the buffer size.
+
+MEYEIOC_STILLCAPT and MEYEIOC_STILLJCAPT
+       Takes a snapshot in an uncompressed or compressed jpeg format.
+       This ioctl blocks until the snapshot is done and returns (for
+       jpeg snapshot) the size of the image. The image data is
+       available from the first mmap'ed buffer.
+
+Look at the 'motioneye' application code for an actual example.
index dc57a6a..9098a1e 100644 (file)
@@ -87,47 +87,6 @@ Usage:
        motioneye (<http://popies.net/meye/>)
                for getting ppm or jpg snapshots, mjpeg video
 
-Private API
------------
-
-The driver supports frame grabbing with the video4linux API,
-so all video4linux tools (like xawtv) should work with this driver.
-
-Besides the video4linux interface, the driver has a private interface
-for accessing the Motion Eye extended parameters (camera sharpness,
-agc, video framerate), the snapshot and the MJPEG capture facilities.
-
-This interface consists of several ioctls (prototypes and structures
-can be found in include/linux/meye.h):
-
-MEYEIOC_G_PARAMS and MEYEIOC_S_PARAMS
-       Get and set the extended parameters of the motion eye camera.
-       The user should always query the current parameters with
-       MEYEIOC_G_PARAMS, change what he likes and then issue the
-       MEYEIOC_S_PARAMS call (checking for -EINVAL). The extended
-       parameters are described by the meye_params structure.
-
-
-MEYEIOC_QBUF_CAPT
-       Queue a buffer for capture (the buffers must have been
-       obtained with a VIDIOCGMBUF call and mmap'ed by the
-       application). The argument to MEYEIOC_QBUF_CAPT is the
-       buffer number to queue (or -1 to end capture). The first
-       call to MEYEIOC_QBUF_CAPT starts the streaming capture.
-
-MEYEIOC_SYNC
-       Takes as an argument the buffer number you want to sync.
-       This ioctl blocks until the buffer is filled and ready
-       for the application to use. It returns the buffer size.
-
-MEYEIOC_STILLCAPT and MEYEIOC_STILLJCAPT
-       Takes a snapshot in an uncompressed or compressed jpeg format.
-       This ioctl blocks until the snapshot is done and returns (for
-       jpeg snapshot) the size of the image. The image data is
-       available from the first mmap'ed buffer.
-
-Look at the 'motioneye' application code for an actual example.
-
 Bugs / Todo
 -----------