Displaying 3 results from an estimated 3 matches for "fsound".
Did you mean:
found
2013 May 20
2
libfishsound: Bug in fish_sound_flush
I apologize if this is the wrong list for this, but after searching the
available lists at xiph.org, this is the closest I could find.
I ran into a bug in the example fishsound-encode.c program where it gets
OGGZ_ERR_BAD_SERIALNO errors from oggz:
fish_sound_flush (fsound);
oggz_run (oggz);
oggz_close (oggz);
fish_sound_delete (fsound);
After debugging, it appears that fish_sound_flush() doesn't actually flush
anything from the codec, so the succeeding oggz_run() doesn't write the
final packets to the oggz queue.
Then, the oggz_close() is executed....
2013 May 21
0
libfishsound: Bug in fish_sound_flush
...; I apologize if this is the wrong list for this, but after searching the
> available lists at xiph.org, this is the closest I could find.
>
> I ran into a bug in the example fishsound-encode.c program where it gets
> OGGZ_ERR_BAD_SERIALNO errors from oggz:
>
> fish_sound_flush (fsound);
> oggz_run (oggz);
>
> oggz_close (oggz);
>
> fish_sound_delete (fsound);
>
> After debugging, it appears that fish_sound_flush() doesn't actually flush
> anything from the codec, so the succeeding oggz_run() doesn't write the
> final packets to the oggz q...
2009 Feb 13
1
Decoding from memory using libfishsound
...rly decoding it. Problem starts, when I want
to decode from memory, for example: receive few packages, decode them
and send to sound card.
This is code for decoding, which cast callback function read_packet.
oggz = oggz_open_stdio(newfile,OGGZ_READ);
oggz_set_read_callback (oggz, -1, read_packet, fsound);
while ((n = oggz_read (oggz, 1024)) > 0);
I've tried to create object using oggz_new, a write from memory data
using oggz_read, but it doesn't worked.
Data from package is stored in QByteArray which can return char*.
Please help me, because I'm stucked at least
a month and can'...