rcar-fdp1.rst 1.7 KB

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