1
0
Fork 0
forked from len0rd/rockbox

removed the use of the 2nd argument to codec_start() since no codec used

it anymore


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6814 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-06-22 19:55:09 +00:00
parent 1f3d08d600
commit 31efab4909
9 changed files with 12 additions and 11 deletions

View file

@ -297,7 +297,7 @@ const struct codec_api ci = {
int codec_load_ram(char* codecptr, size_t size, void* ptr2, size_t bufwrap)
{
enum codec_status (*codec_start)(const struct codec_api* api, void* param);
enum codec_status (*codec_start)(const struct codec_api* api);
int copy_n;
int status;
@ -316,7 +316,7 @@ int codec_load_ram(char* codecptr, size_t size, void* ptr2, size_t bufwrap)
codec_start = (void*)&codecbuf;
invalidate_icache();
status = codec_start(&ci, NULL);
status = codec_start(&ci);
return status;
}