Split out documentation into subfolders.
[platform/upstream/gstreamer.git] / markdown / pwg / advanced / dparams.md
similarity index 99%
rename from pwg-dparams.md
rename to markdown/pwg/advanced/dparams.md
index f3412d0..29bf7ea 100644 (file)
@@ -22,7 +22,7 @@ library. You need to include the header in your element's source file:
 #include <gst/gst.h>
 #include <gst/controller/gstcontroller.h>
 ...
-  
+
 ```
 
 Even though the `gstcontroller` library may be linked into the host
@@ -38,7 +38,7 @@ application, you should make sure it is initialized in your
     gst_controller_init (NULL, NULL);
     ...
   }
-  
+
 ```
 
 It makes no sense for all GObject parameter to be real-time controlled.
@@ -51,7 +51,7 @@ GObject params in the `_class_init` method.
       g_param_spec_double ("freq", "Frequency", "Frequency of test signal",
           0.0, 20000.0, 440.0,
           G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
-  
+
 ```
 
 ## The Data Processing Loop
@@ -64,7 +64,7 @@ one action:
 
 ``` c
     gst_object_sync_values(element,timestamp);
-  
+
 ```
 
 This call makes all parameter-changes for the given timestamp active by
@@ -90,4 +90,3 @@ makes the control-rate depend on the buffer size.
 
 Elements that need a specific control-rate need to break their data
 processing loop to synchronise every n-samples.
-