Displaying 2 results from an estimated 2 matches for "fish_sound_delete".
2013 May 20
2
libfishsound: Bug in fish_sound_flush
...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.
However, the call to fish_sound_delete() actually generates th...
2013 May 21
0
libfishsound: Bug in fish_sound_flush
...t; 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.
>
> However, the call to fish...