Skip to content
Snippets Groups Projects
Commit 181f9956 authored by Petter Reinholdtsen's avatar Petter Reinholdtsen
Browse files

Merge branch 'fix-oggz-examples' into 'master'

Use correct oggz argument type in examples.

Closes #13

See merge request !4
parents a60090c4 e1ee9862
No related branches found
No related tags found
1 merge request!4Use correct oggz argument type in examples.
Pipeline #5856 failed
......@@ -129,9 +129,10 @@ decoded (FishSound * fsound, float ** pcm, long frames, void * user_data)
}
static int
read_packet (OGGZ * oggz, ogg_packet * op, long serialno, void * user_data)
read_packet (OGGZ * oggz, oggz_packet * ozp, long serialno, void * user_data)
{
FS_DecEnc * ed = (FS_DecEnc *) user_data;
ogg_packet *op = &ozp->op;
fish_sound_prepare_truncation (ed->decoder, op->granulepos, op->e_o_s);
fish_sound_decode (ed->decoder, op->packet, op->bytes);
......
......@@ -82,9 +82,10 @@ decoded_float (FishSound * fsound, float ** pcm, long frames, void * user_data)
}
static int
read_packet (OGGZ * oggz, ogg_packet * op, long serialno, void * user_data)
read_packet (OGGZ * oggz, oggz_packet * ozp, long serialno, void * user_data)
{
FishSound * fsound = (FishSound *)user_data;
ogg_packet *op = &ozp->op;
/* If we have not yet selected an audio track to decode, then try
* to identify this one. If it is a known audio codec, then remember its
......
......@@ -60,9 +60,9 @@ dump_identity (unsigned char * buf, long bytes)
}
static int
read_packet (OGGZ * oggz, ogg_packet * op, long serialno, void * user_data)
read_packet (OGGZ * oggz, oggz_packet * ozp, long serialno, void * user_data)
{
ogg_packet *op = &ozp->op;
if (op->bytes < 8) {
printf ("too short\n");
} else {
......
......@@ -76,8 +76,9 @@ decoded (FishSound * fsound, float ** pcm, long frames, void * user_data)
}
static int
read_packet (OGGZ * oggz, ogg_packet * op, long serialno, void * user_data)
read_packet (OGGZ * oggz, oggz_packet * ozp, long serialno, void * user_data)
{
ogg_packet *op = &ozp->op;
FishSound * fsound = (FishSound *)user_data;
if (op->e_o_s) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment