app-pri.rst 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
  2. .. c:namespace:: V4L
  3. .. _app-pri:
  4. ********************
  5. Application Priority
  6. ********************
  7. When multiple applications share a device it may be desirable to assign
  8. them different priorities. Contrary to the traditional "rm -rf /" school
  9. of thought, a video recording application could for example block other
  10. applications from changing video controls or switching the current TV
  11. channel. Another objective is to permit low priority applications
  12. working in background, which can be preempted by user controlled
  13. applications and automatically regain control of the device at a later
  14. time.
  15. Since these features cannot be implemented entirely in user space V4L2
  16. defines the :ref:`VIDIOC_G_PRIORITY <VIDIOC_G_PRIORITY>` and
  17. :ref:`VIDIOC_S_PRIORITY <VIDIOC_G_PRIORITY>` ioctls to request and
  18. query the access priority associate with a file descriptor. Opening a
  19. device assigns a medium priority, compatible with earlier versions of
  20. V4L2 and drivers not supporting these ioctls. Applications requiring a
  21. different priority will usually call :ref:`VIDIOC_S_PRIORITY
  22. <VIDIOC_G_PRIORITY>` after verifying the device with the
  23. :ref:`VIDIOC_QUERYCAP` ioctl.
  24. Ioctls changing driver properties, such as
  25. :ref:`VIDIOC_S_INPUT <VIDIOC_G_INPUT>`, return an ``EBUSY`` error code
  26. after another application obtained higher priority.