From 601774386c642a175b1fcad3e494572ab43568f9 Mon Sep 17 00:00:00 2001 From: Stefan Sauer Date: Fri, 28 Feb 2014 20:53:38 +0100 Subject: [PATCH] docs: use the new markdown for ordered list. This was plain text that had all list items one after the other (including a repeated number). Now it will atleast look good when processed with gtk-doc 1.20. --- gst/gstcontext.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gst/gstcontext.c b/gst/gstcontext.c index 0bf7c5ff4c..1cc3f3f964 100644 --- a/gst/gstcontext.c +++ b/gst/gstcontext.c @@ -37,12 +37,12 @@ * * When an element needs a context it will do the following actions in this * order until one step succeeds: - * 1) Check if the element already has a context - * 2) Query downstream with GST_QUERY_CONTEXT for the context - * 2) Query upstream with GST_QUERY_CONTEXT for the context - * 3) Post a GST_MESSAGE_NEED_CONTEXT message on the bus with the required + * 1. Check if the element already has a context + * 2. Query downstream with GST_QUERY_CONTEXT for the context + * 3. Query upstream with GST_QUERY_CONTEXT for the context + * 4. Post a GST_MESSAGE_NEED_CONTEXT message on the bus with the required * context types and afterwards check if a usable context was set now - * 4) Create a context by itself and post a GST_MESSAGE_HAVE_CONTEXT message + * 5. Create a context by itself and post a GST_MESSAGE_HAVE_CONTEXT message * on the bus. * * Bins will catch GST_MESSAGE_NEED_CONTEXT messages and will set any previously