From a4db1c760ba53fa719b581ffa73f2bcdd7fee99c Mon Sep 17 00:00:00 2001 From: tytan652 Date: Tue, 6 Feb 2024 14:20:14 +0100 Subject: [PATCH] docs: Fix title underline of obs_encoder_roi Also remove unecessary whitespaces --- docs/sphinx/reference-encoders.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sphinx/reference-encoders.rst b/docs/sphinx/reference-encoders.rst index c907aeca5..3f4e44f03 100644 --- a/docs/sphinx/reference-encoders.rst +++ b/docs/sphinx/reference-encoders.rst @@ -267,7 +267,7 @@ Raw Frame Data Structure (encoder_frame) Encoder Region of Interest Structure (obs_encoder_roi) ------------------------------------------ +------------------------------------------------------ .. struct:: obs_encoder_roi @@ -277,7 +277,7 @@ Encoder Region of Interest Structure (obs_encoder_roi) uint32_t bottom uint32_t left uint32_t right - + The rectangle edges of the region are specified as number of pixels from the input video's top and left edges (i.e. row/column 0). .. member:: float priority @@ -562,7 +562,7 @@ General Encoder Functions .. function:: void obs_encoder_enum_roi(obs_encoder_t *encoder, void (*enum_proc)(void *, struct obs_encoder_roi *), void *param) Enumerate currently configured ROIs by invoking callback for each entry, in reverse order of addition (i.e. most recent to oldest). - + **Note:** If the encoder has scaling enabled the struct passed to the callback will be scaled accordingly. --------------------- @@ -570,7 +570,7 @@ General Encoder Functions .. function:: uint32_t obs_encoder_get_roi_increment(const obs_encoder_t *encoder) Encoders shall refresh their ROI configuration if the increment value changes. - + :return: Increment/revision of ROI list ---------------------