rcar-fdp1.rst 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. .. SPDX-License-Identifier: GPL-2.0
  2. Renesas R-Car Fine Display Processor (FDP1) Driver
  3. ==================================================
  4. The R-Car FDP1 driver implements driver-specific controls as follows.
  5. ``V4L2_CID_DEINTERLACING_MODE (menu)``
  6. The video deinterlacing mode (such as Bob, Weave, ...). The R-Car FDP1
  7. driver implements the following modes.
  8. .. flat-table::
  9. :header-rows: 0
  10. :stub-columns: 0
  11. :widths: 1 4
  12. * - ``"Progressive" (0)``
  13. - The input image video stream is progressive (not interlaced). No
  14. deinterlacing is performed. Apart from (optional) format and encoding
  15. conversion output frames are identical to the input frames.
  16. * - ``"Adaptive 2D/3D" (1)``
  17. - Motion adaptive version of 2D and 3D deinterlacing. Use 3D deinterlacing
  18. in the presence of fast motion and 2D deinterlacing with diagonal
  19. interpolation otherwise.
  20. * - ``"Fixed 2D" (2)``
  21. - The current field is scaled vertically by averaging adjacent lines to
  22. recover missing lines. This method is also known as blending or Line
  23. Averaging (LAV).
  24. * - ``"Fixed 3D" (3)``
  25. - The previous and next fields are averaged to recover lines missing from
  26. the current field. This method is also known as Field Averaging (FAV).
  27. * - ``"Previous field" (4)``
  28. - The current field is weaved with the previous field, i.e. the previous
  29. field is used to fill missing lines from the current field. This method
  30. is also known as weave deinterlacing.
  31. * - ``"Next field" (5)``
  32. - The current field is weaved with the next field, i.e. the next field is
  33. used to fill missing lines from the current field. This method is also
  34. known as weave deinterlacing.