Rename seek() to asf_seek()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26237 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b5b5ecf20b
commit
76aeb6028e
3 changed files with 3 additions and 3 deletions
|
@ -378,7 +378,7 @@ int asf_get_timestamp(int *duration)
|
|||
}
|
||||
|
||||
/*entry point for seeks*/
|
||||
int seek(int ms, asf_waveformatex_t* wfx)
|
||||
int asf_seek(int ms, asf_waveformatex_t* wfx)
|
||||
{
|
||||
int time, duration, delta, temp, count=0;
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ int asf_read_packet(uint8_t** audiobuf, int* audiobufsize, int* packetlength,
|
|||
|
||||
int asf_get_timestamp(int *duration);
|
||||
|
||||
int seek(int ms, asf_waveformatex_t* wfx);
|
||||
int asf_seek(int ms, asf_waveformatex_t* wfx);
|
||||
|
||||
|
||||
#endif /* _ASF_H */
|
||||
|
|
|
@ -121,7 +121,7 @@ restart_track:
|
|||
goto restart_track; /* Pretend you never saw this... */
|
||||
}
|
||||
|
||||
elapsedtime = seek(ci->seek_time, &wfx);
|
||||
elapsedtime = asf_seek(ci->seek_time, &wfx);
|
||||
if (elapsedtime < 1){
|
||||
ci->seek_complete();
|
||||
goto next_track;
|
||||
|
|
Loading…
Reference in a new issue