diff --git a/ChangeLog b/ChangeLog index 762109cbe7..a48e02c530 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-11-22 Edward Hervey + + * 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 * codegen/override.py: diff --git a/examples/audio-controller.py b/examples/audio-controller.py index 549d487f76..d6769100ec 100644 --- a/examples/audio-controller.py +++ b/examples/audio-controller.py @@ -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)