Split out documentation into subfolders.
[platform/upstream/gstreamer.git] / markdown / pwg / advanced / negotiation.md
similarity index 99%
rename from pwg-negotiation.md
rename to markdown/pwg/advanced/negotiation.md
index dc3ae33..b4e55cd 100644 (file)
@@ -99,7 +99,7 @@ are the relevant code snippets for fixed caps source pads.
   gst_pad_use_fixed_caps (pad);
 [..]
 
-      
+
 ```
 
 The fixed caps can then be set on the pad by calling `gst_pad_set_caps
@@ -119,7 +119,7 @@ The fixed caps can then be set on the pad by calling `gst_pad_set_caps
     }
 [..]
 
-      
+
 ```
 
 These types of elements also don't have a relation between the input
@@ -217,7 +217,7 @@ gst_my_filter_sink_event (GstPad    *pad,
 
   [...]
 
-      
+
 ```
 
 ### Dynamic negotiation
@@ -345,7 +345,7 @@ gst_my_filter_chain (GstPad    *pad,
   return gst_pad_push (filter->srcpad, out);
 }
 
-      
+
 ```
 
 ## Upstream caps (re)negotiation
@@ -458,7 +458,7 @@ gst_my_filter_query (GstPad *pad, GstObject * parent, GstQuery * query)
   return ret;
 }
 
-    
+
 ```
 
 ## Pull-mode Caps negotiation
@@ -470,4 +470,3 @@ Using all the knowledge you've acquired by reading this chapter, you
 should be able to write an element that does correct caps negotiation.
 If in doubt, look at other elements of the same type in our git
 repository to get an idea of how they do what you want to do.
-