videodecoder: fix documentation
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>
Sat, 21 Mar 2020 13:03:44 +0000 (14:03 +0100)
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>
Sat, 21 Mar 2020 13:15:51 +0000 (14:15 +0100)
Fix list indentation, othewise it is interpreted as verbatim.

gst-libs/gst/video/gstvideodecoder.c

index b40121f..ed74d48 100644 (file)
  *
  * ## Data processing
  *
- *     * The base class gathers input data, and optionally allows subclass
- *       to parse this into subsequently manageable chunks, typically
- *       corresponding to and referred to as 'frames'.
- *
- *     * Each input frame is provided in turn to the subclass' @handle_frame
- *       callback.
- *       The ownership of the frame is given to the @handle_frame callback.
- *
- *     * If codec processing results in decoded data, the subclass should call
- *       @gst_video_decoder_finish_frame to have decoded data pushed.
- *       downstream. Otherwise, the subclass must call
- *       @gst_video_decoder_drop_frame, to allow the base class to do timestamp
- *       and offset tracking, and possibly to requeue the frame for a later
- *       attempt in the case of reverse playback.
+ *   * The base class gathers input data, and optionally allows subclass
+ *     to parse this into subsequently manageable chunks, typically
+ *     corresponding to and referred to as 'frames'.
+ *
+ *   * Each input frame is provided in turn to the subclass' @handle_frame
+ *     callback.
+ *     The ownership of the frame is given to the @handle_frame callback.
+ *
+ *   * If codec processing results in decoded data, the subclass should call
+ *     @gst_video_decoder_finish_frame to have decoded data pushed.
+ *     downstream. Otherwise, the subclass must call
+ *     @gst_video_decoder_drop_frame, to allow the base class to do timestamp
+ *     and offset tracking, and possibly to requeue the frame for a later
+ *     attempt in the case of reverse playback.
  *
  * ## Shutdown phase
  *