[pulseaudio-tickets] [Bug 40637] module-loopback: Kill off some module arguments and make more generic

2011-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40637

Colin Guthrie f...@colin.guthr.ie changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #3 from Colin Guthrie f...@colin.guthr.ie 2011-09-07 11:48:40 PDT 
---
In my tree now! Many thanks!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
pulseaudio-bugs mailing list
pulseaudio-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/pulseaudio-bugs


[pulseaudio-tickets] [Bug 40125] Using the ALSA plug-in client, the end of short sounds are cut-off.

2011-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40125

--- Comment #3 from Maarten Bosmans mkbosm...@gmail.com 2011-09-07 13:13:27 
PDT ---
Can you verify were the problem lies by playing a short audio clip (e.g. a .wav
file) through aplay (with the alsa pulse plugin) and paplay (direct pulse
client), and report what works and what doesn't?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
You are the assignee for the bug.
___
pulseaudio-bugs mailing list
pulseaudio-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/pulseaudio-bugs


[pulseaudio-tickets] [Bug 39664] Kinect USB Audio device and module-alsa-card.c: Failed to find a working profile.

2011-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39664

Antonio Ospite osp...@studenti.unina.it changed:

   What|Removed |Added

  Attachment #50964|application/octet-stream|application/txt
  mime type||

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
You are the assignee for the bug.
___
pulseaudio-bugs mailing list
pulseaudio-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/pulseaudio-bugs


[pulseaudio-tickets] [Bug 40698] New: cannot restart mainloop if this was stopped before

2011-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40698

   Summary: cannot restart mainloop if this was stopped before
   Product: PulseAudio
   Version: unspecified
  Platform: Other
OS/Version: All
Status: NEW
  Severity: normal
  Priority: medium
 Component: core
AssignedTo: pulseaudio-bugs@lists.freedesktop.org
ReportedBy: t...@mpi-inf.mpg.de
 QAContact: pulseaudio-bugs@lists.freedesktop.org
CC: lenn...@poettering.net


Hi,

following appears to me as a bug and might be a subject for solving/discussing.

The internal state of the mainloop is wrong, after one do restarts it.
Following example illustrates it:

// start and stop for the first time
pa_threaded_mainloop_start(m); 
pa_threaded_mainloop_stop(m);  // stop causes m-state = STATE_QUIT

// start and stop for the second time fails, because of an assertion
pa_threaded_mainloop_start(m);

this fails, since this assertion assert(m-state == STATE_PASSIVE) :
mainloop.c:827 fires. 

The problem here is that the internal state hasn't been changed back to
STATE_PASSIVE, as soon as it was restarted and remains STATE_QUIT, hence
assertion fails. A solution might be to change the state accordingly in
pa_mainloop_run, i.e.:

int pa_mainloop_run(pa_mainloop *m, int *retval) {
int r;

m-state = STATE_PASSIVE; // ADD THIS HERE
while ((r = pa_mainloop_iterate(m, 1, retval)) = 0);
...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
You are the assignee for the bug.
___
pulseaudio-bugs mailing list
pulseaudio-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/pulseaudio-bugs