Change author of mixers to 'Mopidy'

This commit is contained in:
Stein Magnus Jodal 2012-10-16 14:01:17 +02:00
parent 666800ec57
commit 4341b7c2ef
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ class AutoAudioMixer(gst.Bin):
'AutoAudioMixer',
'Mixer',
'Element automatically selects a mixer.',
'Thomas Adamcik')
'Mopidy')
def __init__(self):
gst.Bin.__init__(self)

View File

@ -11,7 +11,7 @@ class FakeMixer(gst.Element, gst.ImplementsInterface, gst.interfaces.Mixer):
'FakeMixer',
'Mixer',
'Fake mixer for use in tests.',
'Thomas Adamcik')
'Mopidy')
track_label = gobject.property(type=str, default='Master')
track_initial_volume = gobject.property(type=int, default=0)

View File

@ -23,7 +23,7 @@ class NadMixer(gst.Element, gst.ImplementsInterface, gst.interfaces.Mixer):
'NadMixer',
'Mixer',
'Mixer to control NAD amplifiers using a serial link',
'Stein Magnus Jodal')
'Mopidy')
port = gobject.property(type=str, default='/dev/ttyUSB0')
source = gobject.property(type=str)