mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
warble: Fix build in light of ci.strip_filesize
Change-Id: I8fb7b04c71f588258496cf353fb01df3b38da227
This commit is contained in:
parent
38105860dc
commit
57f3f290c9
1 changed files with 6 additions and 1 deletions
|
@ -614,6 +614,11 @@ static long ci_get_command(intptr_t *param)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ci_strip_filesize(off_t size)
|
||||||
|
{
|
||||||
|
ci.filesize = size;
|
||||||
|
}
|
||||||
|
|
||||||
static bool ci_should_loop(void)
|
static bool ci_should_loop(void)
|
||||||
{
|
{
|
||||||
return enable_loop;
|
return enable_loop;
|
||||||
|
@ -664,7 +669,7 @@ static struct codec_api ci = {
|
||||||
ci_configure,
|
ci_configure,
|
||||||
ci_get_command,
|
ci_get_command,
|
||||||
ci_should_loop,
|
ci_should_loop,
|
||||||
|
ci_strip_filesize,
|
||||||
ci_sleep,
|
ci_sleep,
|
||||||
stub_void_void, /* yield */
|
stub_void_void, /* yield */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue