jon wrote:
> On Tue, 2013-04-09 at 21:59 +0200, Clemens Ladisch wrote:
>> jon wrote:
>>> If I increase the bufchunks value I seem to get larger latency
>>> yet the latency values i'm reading always seem to be the same.
>>
>> Apparently, your program fills the buffer fast enough so that there
>> are
Andrew, list:
On Tue, Apr 9, 2013 at 4:31 PM, Andrew RT wrote:
>> On April 8, 2013 at 10:07 PM Andrew RT wrote:
>>
>>
>> Hi, guys
>>
>> I'm on Ubuntu Lucid, 2.6.32-45-generic, had audio working up until I pursued
>> new alsa driver a couple of days ago.
[...]
>>
>> By the way I tried to revert
> On April 8, 2013 at 10:07 PM Andrew RT wrote:
>
>
> Hi, guys
>
> I'm on Ubuntu Lucid, 2.6.32-45-generic, had audio working up until I pursued
> new alsa driver a couple of days ago.
>
> I compiled and installed 1.025, and now i have no sound.
>
> My audio hardware is: 82801I (ICH9 Family) HD Au
Torstein, list;
On Tue, Apr 9, 2013 at 12:34 AM, Torstein Hegge wrote:
> On Mon, Apr 08, 2013 at 18:28:30 -0700, chris hermansen wrote:
[..]
>> Hmm that was a bit of a slip of the brain. Anyway, I'm actually back
>> in the same general vicinity as the Bifrost and can do some more
>> testing.
>>
On Tue, 2013-04-09 at 21:59 +0200, Clemens Ladisch wrote:
> jon wrote:
> > I am reading the latency like this :
> >
> > int get_playback_latency_ms()
> > {
> > int framesleft;
> > int ms_in_buffer;
> > framesleft=snd_pcm_avail (playback_handle);
> >
jon wrote:
> I am reading the latency like this :
>
> int get_playback_latency_ms()
> {
> int framesleft;
> int ms_in_buffer;
> framesleft=snd_pcm_avail (playback_handle);
> // How many samples behind is the player
>
> return( (framesleft
I'm getting confused by ALSA API again, can anyone clarify.
I'm setting up ALSA with this :
int bufchunks = 10;
// bufchunks are the number of 512 sample buffers alsa is using
unsigned int buflen;
unsigned int
On Mon, Apr 08, 2013 at 18:28:30 -0700, chris hermansen wrote:
> Torstein and list;
>
> On Mon, Mar 18, 2013 at 12:56 PM, chris hermansen
> wrote:
> > Torstein and list;
> >
> > On Mar 18, 2013 12:52 PM, "Torstein Hegge" wrote:
> >>
> >> On Sun, Mar 17, 2013 at 07:36:01PM -0700, chris hermansen