Displaying 11 results from an estimated 11 matches for "peterpall".
2015 Jun 14
2
Sound glitch when using libvorbisfile and libao
...em surfaces more
reliably after watching a bunch of YouTube videos, but not consistently
enough to use it as a test case.
I'll keep poking at it, and will give an update if I figure it out.
Thanks for your responses.
Marshall
On Sun, Jun 14, 2015 at 12:51 AM, Gunter K?nigsmann <gunter at peterpall.de>
wrote:
> Dear Marshall,
>
> I spent most of yesterday finding out that wxWidget's wxStringArray
> sometimes drops whitespace in a new entry depending on the character the
> last entry ended with - so I know what you mean. But your code looks clean
> and after listening...
2015 Jun 14
2
Sound glitch when using libvorbisfile and libao
...and then read it in again and feed it to ao_play, the
problem goes away.
I have a simple Ogg Vorbis file I am using for testing, which I sent to you
in a private email. I have no server space on which to store it.
Thanks,
Marshall
On Sat, Jun 13, 2015 at 10:14 PM, Gunter K?nigsmann <gunter at peterpall.de>
wrote:
> How can this problem be reproduced? If you have an specific .ogg file that
> gives problems it would be helpful to have them so we can try to reproduce
> them.
>
> Kind regards,
>
> Gunter.
>
> On So, Jun 14, 2015 at 7:10 , Marshall Mason <marshall...
2011 Jul 19
0
ov_read error on macosx - SOLVED
...defined. When I'm debugging line by line the
> program runs into ov_read. But I'll try to memset 0 pDecodeBuffer before the
> call.
>
> Gunter, I'm using (signed) char * for pDecodeBuffer, is it right???
>
> El 17 de julio de 2011 09:52, Gunter K?nigsmann <gunter at peterpall.de>escribi?:
>
> The only other thing that might have gone wrong is that instead of
>> "unsigned" "signed" is to be used for the audio data.
>>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pi...
2015 Jun 27
0
Sound glitch when using libvorbisfile and libao
...a bunch of YouTube videos, but not consistently
> enough to use it as a test case.
>
> I'll keep poking at it, and will give an update if I figure it out.
>
> Thanks for your responses.
>
> Marshall
>
> On Sun, Jun 14, 2015 at 12:51 AM, Gunter K?nigsmann <gunter at peterpall.de>
> wrote:
>
>> Dear Marshall,
>>
>> I spent most of yesterday finding out that wxWidget's wxStringArray
>> sometimes drops whitespace in a new entry depending on the character the
>> last entry ended with - so I know what you mean. But your code looks c...
2011 Jul 15
3
ov_read error on macosx
Hi, I have this code to decode ogg data:
unsigned long PSS_OggStream::DecodeOggVorbis(OggVorbis_File
*psOggVorbisFile, char *pDecodeBuffer, unsigned long ulBufferSize, unsigned
long ulChannels)
{
int current_section;
long lDecodeSize;
unsigned long ulSamples;
short *pSamples;
unsigned long ulBytesDone = 0;
while (true)
{
#ifdef WIN32
lDecodeSize = ov_read(psOggVorbisFile,
2015 Jun 14
2
Sound glitch when using libvorbisfile and libao
Hi there,
I've been grappling with this for some time, so I'm finally breaking down
and trying this list.
I'm trying to integrate libvorbisfile and libao to create a simple sound
file player, a la ogg123. To do this, I borrowed heavily from ao_example.c
and vorbisfile_example.c. I feed the buffer from ov_read into ao_play in a
simple loop. It usually works, but occasionally all it
2012 Feb 28
2
Need for help about using vorbis in embedded system
Hi All,
?? I am a new member to the vorbis-dev mailing list. i hope that u receive the help that i've been searching for.
I need to compress audio samples captured by wireless sensor node (16-bit PCM at 8Khz). can i use vorbis i such an embedded system environment that has the following HW/SW specifications:
-416 MHz Microprocessor(ARM architecture, Intel Xscale family)
-32 MB RAM
Beside
2012 Jan 06
4
Enhanced Podcasts with Ogg Vorbis (Chapter Marks)
Hello list!
Since it is more and more common these days to create enhanced podcasts
(= audio files with additional chapter markers [1]), I am searching for
an alternative to the currently used MP4 format.
ID3 also puplished an official standard for chapters [2], but nobody
seems to use and support it.
Now I am trying to get something similar with vorbis audio (and maybe an
additional
2015 Jun 14
0
Sound glitch when using libvorbisfile and libao
How can this problem be reproduced? If you have an specific .ogg file
that gives problems it would be helpful to have them so we can try to
reproduce them.
Kind regards,
Gunter.
On So, Jun 14, 2015 at 7:10 , Marshall Mason <marshallmason2 at gmail.com>
wrote:
> Hi there,
> I've been grappling with this for some time, so I'm finally breaking
> down and trying this
2015 Jun 14
0
Sound glitch when using libvorbisfile and libao
Dear Marshall,
I spent most of yesterday finding out that wxWidget's wxStringArray
sometimes drops whitespace in a new entry depending on the character
the last entry ended with - so I know what you mean. But your code
looks clean and after listening to the bell for what felt too long I
started using your program as a regular audio player.
I too assume the problem lies in the audio driver
2018 Nov 05
0
Decode ogg file while downloading: what are the good practices?
Can you get a backtrace that tells in which line of the code of the library it crashes?
Not that you did Fuzzing using incomplete files and found a bug.
Am 5. November 2018 20:46:21 MEZ schrieb Matthieu Regnauld <mregnauld at gmail.com>:
>Hello,
>
>After more tests, I discovered a new problem in my code (
>https://gist.github.com/mregnauld/3f7cdc43b02ec3bbd91641b9333ba072)