~vcs-imports/shtoom/main

« back to all changes in this revision

Viewing changes to shtoom/ui/demowiz.py

  • Committer: anthony
  • Date: 2005-03-31 14:37:57 UTC
  • Revision ID: Arch-1:shtoom@bazaar.ubuntu.com%shtoom--trunk--0--patch-981
* ALSA handles stereo-only devices now
* Microphone samples are asynchronously pushed up by the lower layers
rather than being polled by the upper layers. On Mac, the high-precision
realtime thread is used to push microphone samples. This fixes a bug
with short reads and a bug with inaccurate polling. On ALSA, there is a
LoopingCall in the ALSA driver that polls at an appropriate interval.
* The encoder base class has a buffer to store up the appropriate
bytes of microphone data to make up a media frame. This buffer gets
flushed when the audio device closes or reopens.
* The audio device gets closed and reopened during important state
transitions, namely call start and call end. This fixes the "That jerk!"
bug, in which you could say "I have to call that jerk!" immediately
before a call connected and then the jerk in question would hear you say
it when he answered.
* Remove some extremely detailed diags that measured the number of 
packets sent per second and the number of packets received per second.
Those diags have served well and are now retired.
* The Mac audio loopback test is rewritten, and a bug involving
closing the loopback test versus closing a phone call is fixed.
* The discovery/selection of the appropriate audio device is done
before the construction of the Phone object. This makes the other
platforms' initialization process parallel to the Mac initialization
process, and also I prefer this approach. (The other approach is that
you construct the Phone object and then it discovers/selects the audio
device itself.)
* Plays ringing sounds for inbound and outbound ringing sounds
* New audio_device option for selecting a different ALSA or OSS device
* New playout algorithm

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
        print "final values:", self.entry, self.entry2, self.pick, self.opt
16
16
 
17
17
    def start(self):
18
 
        page = wiz.Page('Demonstration - Page 1', [ 
19
 
                 wiz.Label('intro', 'This is the first page of a wizard, with some very very very very very very very very very very long introductory text'), 
 
18
        page = wiz.Page('Demonstration - Page 1', [
 
19
                 wiz.Label('intro', 'This is the first page of a wizard, with some very very very very very very very very very very long introductory text'),
20
20
                 wiz.Text('entry2', 'Some more text', default=self.entry2),
21
21
                 wiz.Password('entry', 'Enter a secret', default=self.entry),
22
 
                 wiz.Choice('pick', 'Choose a number', choices=['one', 'two', 'three'], 
 
22
                 wiz.Choice('pick', 'Choose a number', choices=['one', 'two', 'three'],
23
23
                                                     default=self.pick),
24
24
                 wiz.Boolean('onoff', 'Select on or off', default=self.onoff),
25
25
                 wiz.Label('outro', 'Make your choices and hit Next'),
33
33
        print "got", args
34
34
        self.__dict__.update(args)
35
35
 
36
 
        page = wiz.Page('Demonstration - Page 2', 
37
 
                        [wiz.Label('thanks', 'Thank You'),], 
 
36
        page = wiz.Page('Demonstration - Page 2',
 
37
                        [wiz.Label('thanks', 'Thank You'),],
38
38
                        (('Back', self.start), ('Finish', self.finished),))
39
39
        d = defer.Deferred()
40
40
        reactor.callLater(1, d.callback, page)
46
46
 
47
47
    def cancelled(self, **args):
48
48
        print "cancelled got", args
49