examples/audio-controller.py: Fix example, use proper property name. Doesn't change...
authorEdward Hervey <bilboed@bilboed.com>
Wed, 22 Nov 2006 17:31:02 +0000 (17:31 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 22 Nov 2006 17:31:02 +0000 (17:31 +0000)
Original commit message from CVS:
* examples/audio-controller.py:
Fix example, use proper property name. Doesn't change anything to the
way it used to work, but since it's an example it should be done
properly.

ChangeLog
examples/audio-controller.py

index 762109c..a48e02c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2006-11-22  Edward Hervey  <edward@fluendo.com>
 
+       * examples/audio-controller.py:
+       Fix example, use proper property name. Doesn't change anything to the
+       way it used to work, but since it's an example it should be done
+       properly.
+
+2006-11-22  Edward Hervey  <edward@fluendo.com>
+
        * codegen/override.py:
        Fix the lookup of override files in the specified search directories.
        * gst/Makefile.am:
index 549d487..d676910 100644 (file)
@@ -21,7 +21,7 @@ def main():
 
     control = gst.Controller(src, "freq", "volume")
     control.set_interpolation_mode("volume", gst.INTERPOLATE_LINEAR)
-    control.set_interpolation_mode("volume", gst.INTERPOLATE_LINEAR)
+    control.set_interpolation_mode("freq", gst.INTERPOLATE_LINEAR)
 
     control.set("volume", 0, 0.0)
     control.set("volume", 2 * gst.SECOND, 1.0)