summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/libasf/asf.c2
-rw-r--r--apps/codecs/libasf/asf.h2
-rw-r--r--apps/codecs/wma.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libasf/asf.c b/apps/codecs/libasf/asf.c
index 65d3fd8deb..6297cf664a 100644
--- a/apps/codecs/libasf/asf.c
+++ b/apps/codecs/libasf/asf.c
@@ -378,7 +378,7 @@ int asf_get_timestamp(int *duration)
378} 378}
379 379
380/*entry point for seeks*/ 380/*entry point for seeks*/
381int seek(int ms, asf_waveformatex_t* wfx) 381int asf_seek(int ms, asf_waveformatex_t* wfx)
382{ 382{
383 int time, duration, delta, temp, count=0; 383 int time, duration, delta, temp, count=0;
384 384
diff --git a/apps/codecs/libasf/asf.h b/apps/codecs/libasf/asf.h
index 9592618997..b0adb7dfc7 100644
--- a/apps/codecs/libasf/asf.h
+++ b/apps/codecs/libasf/asf.h
@@ -42,7 +42,7 @@ int asf_read_packet(uint8_t** audiobuf, int* audiobufsize, int* packetlength,
42 42
43int asf_get_timestamp(int *duration); 43int asf_get_timestamp(int *duration);
44 44
45int seek(int ms, asf_waveformatex_t* wfx); 45int asf_seek(int ms, asf_waveformatex_t* wfx);
46 46
47 47
48#endif /* _ASF_H */ 48#endif /* _ASF_H */
diff --git a/apps/codecs/wma.c b/apps/codecs/wma.c
index 17d2af2e98..ed413e8c32 100644
--- a/apps/codecs/wma.c
+++ b/apps/codecs/wma.c
@@ -121,7 +121,7 @@ restart_track:
121 goto restart_track; /* Pretend you never saw this... */ 121 goto restart_track; /* Pretend you never saw this... */
122 } 122 }
123 123
124 elapsedtime = seek(ci->seek_time, &wfx); 124 elapsedtime = asf_seek(ci->seek_time, &wfx);
125 if (elapsedtime < 1){ 125 if (elapsedtime < 1){
126 ci->seek_complete(); 126 ci->seek_complete();
127 goto next_track; 127 goto next_track;