<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.audio.csound.devel">
    <title>gmane.comp.audio.csound.devel</title>
    <link>http://blog.gmane.org/gmane.comp.audio.csound.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22433"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22432"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22431"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22430"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22429"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22428"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22427"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22426"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22425"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22424"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22423"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22422"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22421"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22420"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22419"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22418"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22417"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22416"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22415"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22414"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22433">
    <title>[Cs-dev] Regression in loscil recognizing looping info in wavheaders</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22433</link>
    <description>&lt;pre&gt;Hello --

I think something happened in the code that caused csound to stop
finding looping info stored in WAV format headers.

I generated my own wav sample with looping info using libsndfile, and
it worked on 2012-04-07 with the debian unstable packaged of the time,
which was built from 5.15.

There have been two debian packages since then, both of 5.17, and I'm
not sure which one broke this.

I'd be happy to do more testing, but I'm not sure what info to
provide.  Right now, I'm kind of hoping someone will have an "a-ha"
moment based on this report and know how to fix it.

Forrest

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Forrest Cahoon</dc:creator>
    <dc:date>2012-05-24T02:22:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22432">
    <title>[Cs-dev] New Parser bug (csound 5) ( was Re: ksmps=1 conditional issue).</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22432</link>
    <description>&lt;pre&gt;It is a new parser bug (possibly optimisation).  The assignment never occurs with i-vars, but it does with constants and k-vars,
as demonstrated by the CSD below:

&amp;lt;CsoundSynthesizer&amp;gt;
&amp;lt;CsOptions&amp;gt;
&amp;lt;/CsOptions&amp;gt;
&amp;lt;CsInstruments&amp;gt;
instr 1
iClip = 0.9
k1 oscili 2,440,1
if k1 &amp;gt; iClip then
k1 = iClip
elseif k1 &amp;lt; -iClip then
k1 = -iClip
endif
printk 0.01, k1
endin
instr 2
iClip = 0.9
k1 oscili 2,440,1
if k1 &amp;gt; iClip then
k1 = iClip
elseif k1 &amp;lt; -iClip then
k1 = -0.9
endif
printk 0.01, k1
endin
instr 3
kClip = 0.9
k1 oscili 2,440,1
if k1 &amp;gt; kClip then
k1 = kClip
elseif k1 &amp;lt; -kClip then
k1 = -kClip
endif
printk 0.01, k1
endin
&amp;lt;/CsInstruments&amp;gt;
&amp;lt;CsScore&amp;gt;
f1 0 1024 10 1
i1 0 1
i2 1 1
i3 2 1
&amp;lt;/CsScore&amp;gt;
&amp;lt;/CsoundSynthesizer&amp;gt;

Victor


On 22 May 2012, at 07:31, Oeyvind Brandtsegg wrote:


Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Victor Lazzarini</dc:creator>
    <dc:date>2012-05-22T09:14:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22431">
    <title>[Cs-dev] ksmps=1 conditional issue</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22431</link>
    <description>&lt;pre&gt;Hi,
I'm not sure what to make out of this.

For pedagogical purposes, I tried to implement an explicit coding of
hard clip (like the limit opcode).
Using ksmps = 1, I did this:

k1downsampa1
if k1 &amp;gt; iClip then
k1= iClip
elseif k1 &amp;lt; -iClip then
k1= -iClip
endif
a1upsamp k1

I can't seem to find anything wrong with the code, but it only limits
the positive part of the waveform,
the negative part remains untouched.
If I replace
k1= -iClip
with
k1= -0.5
it will limit, but obviously not the way I wanted.

Could look like a bug ?

best
Oeyvind

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Oeyvind Brandtsegg</dc:creator>
    <dc:date>2012-05-22T06:31:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22430">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22430</link>
    <description>&lt;pre&gt;Thanks!

On 5/21/12, Sigurd Saue &amp;lt;sigurd.saue&amp;lt; at &amp;gt;ntnu.no&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Adam Puckett</dc:creator>
    <dc:date>2012-05-21T17:30:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22429">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22429</link>
    <description>&lt;pre&gt;Hi Adam,

I had to leave for home, but I now I've taken a closer look at your problem.

The attached file is a modification of your original file that plays stereo 44100 with the sound playing in one channel only. Btw: I had to remove the DSBCAPS_LOCHARDWARE option here, but it might still work on your computer.

Sigurd
________________________________________
Fra: Adam Puckett [adotsdothmusic&amp;lt; at &amp;gt;gmail.com]
Sendt: 21. mai 2012 18:38
Til: richarddobson&amp;lt; at &amp;gt;blueyonder.co.uk; Developer discussions
Emne: Re: [Cs-dev] C bytebeat experiment

Finally! It works! But it was quiet at 44.1kHz, so I made it an 8kHz,
8-bit static buffer with which to create bytebeat songs. Wonderful!

Now, how do I make the sound play in one channel and not in the other,
or make the sound pan?

On 5/21/12, Adam Puckett &amp;lt;adotsdothmusic&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel
#include &amp;lt;windows.h&amp;gt;
#include &amp;lt;dsound.h&amp;gt;
int main(void)
{
  LPDIRECTSOUND ds;
  DSBUFFERDESC bd;
  WAVEFORMATEX wf;
  LPDIRECTSOUNDBUFFER bf;
  DirectSoundCreate(NULL, &amp;amp;ds, NULL);
  IDirectSound_SetCooperativeLevel(ds, GetDesktopWindow(), DSSCL_PRIORITY);
  ZeroMemory(&amp;amp;wf, sizeof(WAVEFORMATEX));
  wf.wFormatTag = WAVE_FORMAT_PCM;
  wf.nChannels = 2;
  wf.wBitsPerSample = 16;
  wf.nSamplesPerSec = 44100;
  wf.nBlockAlign = wf.wBitsPerSample * wf.nChannels / 8;
  wf.nAvgBytesPerSec = wf.nSamplesPerSec * wf.nBlockAlign;
  ZeroMemory(&amp;amp;bd, sizeof(DSBUFFERDESC));
  bd.dwSize = sizeof(DSBUFFERDESC);
  bd.dwFlags = DSBCAPS_GLOBALFOCUS;
  bd.dwBufferBytes = wf.nAvgBytesPerSec*5;
  bd.lpwfxFormat = &amp;amp;wf;
  HRESULT res = IDirectSound_CreateSoundBuffer(ds, &amp;amp;bd, &amp;amp;bf, NULL);
  LPVOID ap1, ap2;
  DWORD bt1, bt2;
  res = IDirectSoundBuffer_Lock(bf, 0, 0, &amp;amp;ap1, &amp;amp;bt1, &amp;amp;ap2, &amp;amp;bt2, DSBLOCK_ENTIREBUFFER);
  short *buf = (short*) malloc(bd.dwBufferBytes);
  short *q = buf;
  int t;
  for (t = 0; t &amp;lt; 44100*5; t++)
  {
    *q++ = 0;
    *q++ = (t&amp;amp;t&amp;gt;&amp;gt;8);
  }
  CopyMemory(ap1, buf, 44100*4*5);
  res = IDirectSoundBuffer_Unlock(bf, ap1, bt1, ap2, bt2);
  res = IDirectSoundBuffer_Play(bf, 0, 0, DSBPLAY_LOOPING);
  Sleep(15000);
  res = IDirectSoundBuffer_Stop(bf);
  return 0;
}------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel
&lt;/pre&gt;</description>
    <dc:creator>Sigurd Saue</dc:creator>
    <dc:date>2012-05-21T17:04:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22428">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22428</link>
    <description>&lt;pre&gt;Finally! It works! But it was quiet at 44.1kHz, so I made it an 8kHz,
8-bit static buffer with which to create bytebeat songs. Wonderful!

Now, how do I make the sound play in one channel and not in the other,
or make the sound pan?

On 5/21/12, Adam Puckett &amp;lt;adotsdothmusic&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Adam Puckett</dc:creator>
    <dc:date>2012-05-21T16:38:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22427">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22427</link>
    <description>&lt;pre&gt;Thanks Richard! This just came to mind while I was having lunch.

On 5/21/12, Richard Dobson &amp;lt;richarddobson&amp;lt; at &amp;gt;blueyonder.co.uk&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Adam Puckett</dc:creator>
    <dc:date>2012-05-21T16:23:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22426">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22426</link>
    <description>&lt;pre&gt;

int t;
for (t = 0; t&amp;lt;  44100*5; t++)
      *q++ = &amp;gt; (t&amp;amp;t&amp;gt;&amp;gt;8);
CopyMemory(ap1, q, bt1);


At this point, q is at the end of the allocated block, so points to 
memory you don't own, rather than the allocated buffer with the intended 
contents. Preserve q from the call to malloc, and either use array 
indexing, or a second pointer initialized to q, and increment that. Then 
CopyMemory will copy the correct block - and you will be also able to 
call free on it afterwards.

May not be the only problem of course - too many years passed since I 
had to write any DirectSound code!

Richard Dobson



------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Richard Dobson</dc:creator>
    <dc:date>2012-05-21T16:11:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22425">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22425</link>
    <description>&lt;pre&gt;Changed to this:

#include &amp;lt;windows.h&amp;gt;
#include &amp;lt;dsound.h&amp;gt;
int main(void)
{
  LPDIRECTSOUND ds;
  DSBUFFERDESC bd;
  WAVEFORMATEX wf;
  LPDIRECTSOUNDBUFFER bf;
  DirectSoundCreate(NULL, &amp;amp;ds, NULL);
  IDirectSound_SetCooperativeLevel(ds, GetDesktopWindow(), DSSCL_PRIORITY);
  ZeroMemory(&amp;amp;wf, sizeof(WAVEFORMATEX));
  wf.wFormatTag = WAVE_FORMAT_PCM;
  wf.wBitsPerSample = 16;
  wf.nChannels = 1;
  wf.nSamplesPerSec = 44100;
  wf.nBlockAlign = wf.wBitsPerSample * wf.nChannels / 8;
  wf.nAvgBytesPerSec = wf.nSamplesPerSec * wf.nBlockAlign;
  ZeroMemory(&amp;amp;bd, sizeof(DSBUFFERDESC));
  bd.dwSize = sizeof(DSBUFFERDESC);
  bd.dwFlags = DSBCAPS_GLOBALFOCUS | DSBCAPS_LOCHARDWARE;
  bd.dwBufferBytes = 44100*2*5;
  bd.lpwfxFormat = &amp;amp;wf;
  IDirectSound_CreateSoundBuffer(ds, &amp;amp;bd, &amp;amp;bf, NULL);
  LPVOID ap1, ap2;
  DWORD bt1, bt2;
  IDirectSoundBuffer_Lock(bf, 0, 0, &amp;amp;ap1, &amp;amp;bt1, &amp;amp;ap2, &amp;amp;bt2,
DSBLOCK_ENTIREBUFFER);
  int *q;
  q = malloc(44100*5);
  int t;
  for (t = 0; t &amp;lt; 44100*5; t++)
    *q++ = (t&amp;amp;t&amp;gt;&amp;gt;8);
  CopyMemory(ap1, q, bt1);
  IDirectSoundBuffer_Unlock(bf, ap1, bt1, ap2, bt2);
  IDirectSoundBuffer_Play(bf, 0, 0, DSBPLAY_LOOPING);
  Sleep(15000);
  IDirectSoundBuffer_Stop(bf);
  return 0;
}

Error reports vanish, but no sound. It's not even sleeping. :/

On 5/21/12, Adam Puckett &amp;lt;adotsdothmusic&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Adam Puckett</dc:creator>
    <dc:date>2012-05-21T15:29:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22424">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22424</link>
    <description>&lt;pre&gt;Just tried changing the loop and getting the same thing.

What I'm trying to do is fill the left channel of a 5-second buffer
with silence and the right channel with an arbitrary bytebeat "song".
I used (t&amp;amp;t&amp;gt;&amp;gt;8) as an example to see if I could get it to work.

On 5/21/12, Sigurd Saue &amp;lt;sigurd.saue&amp;lt; at &amp;gt;ntnu.no&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Adam Puckett</dc:creator>
    <dc:date>2012-05-21T14:24:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22423">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22423</link>
    <description>&lt;pre&gt;I'm not 100 % sure what you want to achieve, but what if you change the loop counter to:

for (t = 0; t &amp;lt; 44100*5; t++)// Removed *4

Sigurd

-----Original Message-----
From: Adam Puckett [mailto:adotsdothmusic&amp;lt; at &amp;gt;gmail.com] 
Sent: Monday, May 21, 2012 4:11 PM
To: Developer discussions
Subject: Re: [Cs-dev] C bytebeat experiment

What do I need to change?

On 5/21/12, Sigurd Saue &amp;lt;sigurd.saue&amp;lt; at &amp;gt;ntnu.no&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Sigurd Saue</dc:creator>
    <dc:date>2012-05-21T14:14:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22422">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22422</link>
    <description>&lt;pre&gt;What do I need to change?

On 5/21/12, Sigurd Saue &amp;lt;sigurd.saue&amp;lt; at &amp;gt;ntnu.no&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Adam Puckett</dc:creator>
    <dc:date>2012-05-21T14:11:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22421">
    <title>Re: [Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22421</link>
    <description>&lt;pre&gt;It looks to me like you're reading way beyond your buffer. You've allocated (44100*4*5) bytes, but in your loop you're accessing elements four times that size: q++ is a short pointer and moves two bytes for each increment and you do that twice for each step of the for loop.

Sigurd

-----Original Message-----
From: Adam Puckett [mailto:adotsdothmusic&amp;lt; at &amp;gt;gmail.com] 
Sent: Monday, May 21, 2012 3:44 PM
To: csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
Subject: [Cs-dev] C bytebeat experiment

The attached file compiles but the resulting exe crashes. What am I doing wrong? (OS: XP SP3, using DirectSound)

Thanks.

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Sigurd Saue</dc:creator>
    <dc:date>2012-05-21T14:04:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22420">
    <title>[Cs-dev] C bytebeat experiment</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22420</link>
    <description>&lt;pre&gt;The attached file compiles but the resulting exe crashes. What am I
doing wrong? (OS: XP SP3, using DirectSound)

Thanks.
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel
&lt;/pre&gt;</description>
    <dc:creator>Adam Puckett</dc:creator>
    <dc:date>2012-05-21T13:43:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22419">
    <title>[Cs-dev] CS6: Headers and install</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22419</link>
    <description>&lt;pre&gt;Hi all,

Just FYI, I've just committed some CMake changes so that PUBLIC_HEADER
is used when building OSX Framework.  I had to move the inclusion of
H/CMakeLists.txt higher up in the main Cmake file, so that I could
grab the list of headers and add them to the src list as well as use
as the PUBLIC_HEADER argument.  (Note: It took a while to figure out,
but the headers must be part of the src list for PUBLIC_HEADER to
work).

Now, I think there is a possible way to use just PUBLIC_HEADER and not
use the install command for installing these headers. I think if you
use PUBLIC_HEADER on non-OSX, those headers get installed into
/usr/local/include/csound, but I have not tried it.  It's a possible
place to improve this, I think.  Has anyone experience with this or
thoughts on it?

Thanks!
steven

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Steven Yi</dc:creator>
    <dc:date>2012-05-16T15:38:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22418">
    <title>Re: [Cs-dev] CS6: PO/MO files - where to install</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22418</link>
    <description>&lt;pre&gt;Ah, okay. I've made the change to Top/getstring.c and
po/CMakeLists.txt and pushed it.

Thanks!
steven

On Tue, May 15, 2012 at 3:57 PM, Felipe Sateler &amp;lt;fsateler&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Steven Yi</dc:creator>
    <dc:date>2012-05-15T20:05:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22417">
    <title>Re: [Cs-dev] CS6: Installed Header Locations</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22417</link>
    <description>&lt;pre&gt;Okay.  Compiler search path and &amp;lt;csound.h&amp;gt; sounds good too.

On Tue, May 15, 2012 at 3:54 PM, Felipe Sateler &amp;lt;fsateler&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Steven Yi</dc:creator>
    <dc:date>2012-05-15T20:01:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22416">
    <title>Re: [Cs-dev] CS6: Installed Header Locations</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22416</link>
    <description>&lt;pre&gt;I have seen the following pattern which seems to simplify things to me:

In /usr/local/include there is a csound dir.
In the csound dir there is a versioned csound dir.
I.e. we have /usr/local/incude/csound/csound6 and
/usr/local/include/csound/csound6
Then to include headers, we can have "#include
&amp;lt;csound/csound6/csound.h&amp;gt;" and it just works off /usr/local/include,
or we can have "#include &amp;lt;csound.h&amp;gt;" but the build has to be
configured to look in /usr/local/csound/csound6.

Regards,
Mike

On Tue, May 15, 2012 at 3:54 PM, Felipe Sateler &amp;lt;fsateler&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:



&lt;/pre&gt;</description>
    <dc:creator>Michael Gogins</dc:creator>
    <dc:date>2012-05-15T20:00:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22415">
    <title>Re: [Cs-dev] CS6: PO/MO files - where to install</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22415</link>
    <description>&lt;pre&gt;Line 76 uses dgettext("csound5", s). That csound5 should be changed to
csound6 (and the cmakelists updated). I'm not on my own computer now,
that's why I don't change it myself.

On Tue, May 15, 2012 at 3:49 PM, Steven Yi &amp;lt;stevenyi&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:



&lt;/pre&gt;</description>
    <dc:creator>Felipe Sateler</dc:creator>
    <dc:date>2012-05-15T19:57:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22414">
    <title>Re: [Cs-dev] CS6: Installed Header Locations</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22414</link>
    <description>&lt;pre&gt;Yes, it makes sense to install by default to csound6 to avoid
conflicts with csound5. But I think apps should still just #include
&amp;lt;csound.h&amp;gt; and manipulate the compiler search path.


On Tue, May 15, 2012 at 3:46 PM, Steven Yi &amp;lt;stevenyi&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:



&lt;/pre&gt;</description>
    <dc:creator>Felipe Sateler</dc:creator>
    <dc:date>2012-05-15T19:54:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.audio.csound.devel/22413">
    <title>Re: [Cs-dev] CS6: PO/MO files - where to install</title>
    <link>http://permalink.gmane.org/gmane.comp.audio.csound.devel/22413</link>
    <description>&lt;pre&gt;I'm not too familiar with all the gettext stuff in Csound.  I did see
this in Top/getstring.c:

/*    textdomain("csound5"); */  /* This is not needed when using dgettext */

So, maybe it's not an issue?

On Tue, May 15, 2012 at 2:02 PM, Felipe Sateler &amp;lt;fsateler&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Csound-devel mailing list
Csound-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

&lt;/pre&gt;</description>
    <dc:creator>Steven Yi</dc:creator>
    <dc:date>2012-05-15T19:49:34</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.audio.csound.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.audio.csound.devel</link>
  </textinput>
</rdf:RDF>

