gstreamer/gst/audiomixmatrix
Nicolas Dufresne 18917de956 audiomixmatrix: Remove property matrix-value-array
This duplicated property is no longer needed as there is now API to
allow bindings access GST_TYPE_ARRAY (see gst_util_get/set/object_array).
Additionnally, Python has proper overrides which will make this looks
like Python. A 2x2 matrix would be set this way:

  element = matrix = Gst.ValueArray(Gst.ValueArray([1.0, -1.0]),
      Gst.ValueArray([1.0, -1.0))

Notice that you need to "cast" each arrays to Gst.ValueArray, otherwise
there is an ambiguity between Gst.ValueArray and Gst.ValueList list type.
Fortunatly, Gst.ValueArray implements the Sequence interface, so it can
be indexed like normal python matrix.
2017-03-27 13:58:24 -04:00
..
gstaudiomixmatrix.c audiomixmatrix: Remove property matrix-value-array 2017-03-27 13:58:24 -04:00
gstaudiomixmatrix.h audiomixmatrix: New element that mixes audio channels 2017-02-23 21:02:44 +02:00
Makefile.am audiomixmatrix: New element that mixes audio channels 2017-02-23 21:02:44 +02:00
meson.build audiomixmatric: Add missing libm deps for meson 2017-02-27 21:22:30 -05:00