mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
Hopefully silence the warning in the warble codec build.
Change-Id: I63eef2c33bf3ea31a135cd6336882b600723f946
This commit is contained in:
parent
a71af1778d
commit
df1d386019
1 changed files with 4 additions and 4 deletions
|
|
@ -601,9 +601,9 @@ int rm_get_packet(uint8_t **src,RMContext *rmctx, RMPacket *pkt)
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
void dump_rm_context(RMContext *rmctx)
|
void dump_rm_context(RMContext *rmctx)
|
||||||
{
|
{
|
||||||
DEBUGF("block_align = %d\n", rmctx->block_align);
|
DEBUGF("block_align = %u\n", rmctx->block_align);
|
||||||
DEBUGF("nb_channels = %d\n", rmctx->nb_channels);
|
DEBUGF("nb_channels = %u\n", rmctx->nb_channels);
|
||||||
DEBUGF("sample_rate = %d\n", rmctx->sample_rate);
|
DEBUGF("sample_rate = %u\n", rmctx->sample_rate);
|
||||||
DEBUGF("bit_rate = %ld\n", rmctx->bit_rate );
|
DEBUGF("bit_rate = %lu\n", rmctx->bit_rate );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue