diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2011-03-16 05:59:46 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2011-03-16 05:59:46 +0000 |
| commit | a4098e61748490f74e23db4aade98b421ebc74ee (patch) | |
| tree | 5751daf8537d553084373340a16314200fcae041 /apps/plugins | |
| parent | 56dd75d204f861785ca78ae1c6eb506d5f2ea7e9 (diff) | |
| download | rockbox-a4098e61748490f74e23db4aade98b421ebc74ee.zip rockbox-a4098e61748490f74e23db4aade98b421ebc74ee.tar.gz rockbox-a4098e61748490f74e23db4aade98b421ebc74ee.tar.bz2 rockbox-a4098e61748490f74e23db4aade98b421ebc74ee.tar.xz | |
Sync test_codec to r29595.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29596 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/test_codec.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index 3075738..855503a 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -485,13 +485,6 @@ static void advance_buffer(size_t amount) } -/* Advance file buffer to a pointer location inside file buffer. */ -static void advance_buffer_loc(void *ptr) -{ - ci.curpos = ptr - (audiobuf - offset); -} - - /* Seek file buffer to position <newpos> beginning of file. */ static bool seek_buffer(size_t newpos) { @@ -565,7 +558,6 @@ static void init_ci(void) ci.read_filebuf = read_filebuf; ci.request_buffer = request_buffer; ci.advance_buffer = advance_buffer; - ci.advance_buffer_loc = advance_buffer_loc; ci.seek_buffer = seek_buffer; ci.seek_complete = seek_complete; ci.request_next_track = request_next_track; |