diff --git a/docs/changelog.rst b/docs/changelog.rst index b8d0ee02..df8405f7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -137,6 +137,25 @@ Audio Because of this change, we can now return years without months or days, which matches the semantics of the date fields in our data models. +- **Breaking:** :meth:`mopidy.audio.Audio.set_appsrc`'s ``caps`` argument has + changed format due to the upgrade from GStreamer 0.10 to GStreamer 1. As + far as we know, this is only used by Mopidy-Spotify. As an example, with + GStreamer 0.10 the Mopidy-Spotify caps was:: + + audio/x-raw-int, endianness=(int)1234, channels=(int)2, width=(int)16, + depth=(int)16, signed=(boolean)true, rate=(int)44100 + + With GStreamer 1 this changes to:: + + audio/x-raw,format=S16LE,rate=44100,channels=2,layout=interleaved + + If you Mopidy backend uses ``set_appsrc()``, please refer to GStreamer + documentation for details on the new caps string format. + +- **Deprecated:** :func:`mopidy.audio.utils.create_buffer`'s ``capabilities`` + argument is no longer in use and will be removed in the future. As far as we + know, this is only used by Mopidy-Spotify. + Gapless -------