vala: Some bugfixes for the vala bindings

1. PA uses Vala's "Posix" package (see line 23 of libpulse.vapi).
    These dependencies have to be declared in the *.deps file.

 2. Fix obvious copy/paste error.

 3. Rename the parameter to match the C function. This simplifies
    understanding what this parameter means.

 4. According to the official documentation the "dev" parameter
    for playback/capture streams on connection may be NULL and this
    is the default. Change the method definition accordingly.
This commit is contained in:
Alexander Kurtz 2011-03-24 21:35:17 +00:00 committed by Colin Guthrie
parent d47a33775b
commit 705cf4d316
3 changed files with 7 additions and 5 deletions

1
vala/libpulse.deps Normal file
View file

@ -0,0 +1 @@
posix

View file

@ -237,7 +237,7 @@ namespace PulseAudio {
[CCode (cname="PA_CHANNELS_MAX")]
public const int CHANNELS_MAX;
[CCode (cname="PA_CHANNELS_MAX")]
[CCode (cname="PA_RATE_MAX")]
public const int RATE_MAX;
[CCode (cname="pa_cvolume")]
@ -854,7 +854,7 @@ namespace PulseAudio {
public int iterate(bool block = true, out int retval = null);
public int run(out int retval = null);
public unowned MainLoopApi get_api();
public void quit(int r);
public void quit(int retval);
public void wakeup();
public void set_poll_func(PollFunc poll_func);
}
@ -1194,8 +1194,8 @@ namespace PulseAudio {
public int is_suspended();
public int is_corked();
public int connect_playback(string dev, BufferAttr? a = null, Flags flags = 0, CVolume? volume = null, Stream? sync_stream = null);
public int connect_record(string dev, BufferAttr? a = null, Flags flags = 0);
public int connect_playback(string? dev = null, BufferAttr? a = null, Flags flags = 0, CVolume? volume = null, Stream? sync_stream = null);
public int connect_record(string? dev = null, BufferAttr? a = null, Flags flags = 0);
public int connect_upload(size_t length);
public int disconnect();
public int finish_upload();