forked from len0rd/rockbox
Remove an internal FLAC debug function that uses FILE*
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5985 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3c166be0a4
commit
23b3a45acd
2 changed files with 4 additions and 0 deletions
|
|
@ -2659,6 +2659,7 @@ FLAC__bool FLAC__bitbuffer_read_utf8_uint64(FLAC__BitBuffer *bb, FLAC__uint64 *v
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
void FLAC__bitbuffer_dump(const FLAC__BitBuffer *bb, FILE *out)
|
void FLAC__bitbuffer_dump(const FLAC__BitBuffer *bb, FILE *out)
|
||||||
{
|
{
|
||||||
unsigned i, j;
|
unsigned i, j;
|
||||||
|
|
@ -2688,3 +2689,4 @@ void FLAC__bitbuffer_dump(const FLAC__BitBuffer *bb, FILE *out)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -154,6 +154,8 @@ FLAC__bool FLAC__bitbuffer_read_golomb_unsigned(FLAC__BitBuffer *bb, unsigned *v
|
||||||
#endif
|
#endif
|
||||||
FLAC__bool FLAC__bitbuffer_read_utf8_uint32(FLAC__BitBuffer *bb, FLAC__uint32 *val, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data, FLAC__byte *raw, unsigned *rawlen);
|
FLAC__bool FLAC__bitbuffer_read_utf8_uint32(FLAC__BitBuffer *bb, FLAC__uint32 *val, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data, FLAC__byte *raw, unsigned *rawlen);
|
||||||
FLAC__bool FLAC__bitbuffer_read_utf8_uint64(FLAC__BitBuffer *bb, FLAC__uint64 *val, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data, FLAC__byte *raw, unsigned *rawlen);
|
FLAC__bool FLAC__bitbuffer_read_utf8_uint64(FLAC__BitBuffer *bb, FLAC__uint64 *val, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data, FLAC__byte *raw, unsigned *rawlen);
|
||||||
|
#if 0
|
||||||
void FLAC__bitbuffer_dump(const FLAC__BitBuffer *bb, FILE *out);
|
void FLAC__bitbuffer_dump(const FLAC__BitBuffer *bb, FILE *out);
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue