diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-04-05 11:33:58 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-04-05 11:33:58 +0000 |
| commit | d34865a5307e7bf91d986036797423975ac828b4 (patch) | |
| tree | 41dcc1775f6cdc1d655f1eddadaabdf90c7ac22f /apps/plugins/video.c | |
| parent | 6cf9d51b3374cdc436c45f165a10f607832126ee (diff) | |
| download | rockbox-d34865a5307e7bf91d986036797423975ac828b4.zip rockbox-d34865a5307e7bf91d986036797423975ac828b4.tar.gz rockbox-d34865a5307e7bf91d986036797423975ac828b4.tar.bz2 rockbox-d34865a5307e7bf91d986036797423975ac828b4.tar.xz | |
mp3buf renamed to audiobuf
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6252 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/video.c')
| -rw-r--r-- | apps/plugins/video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/video.c b/apps/plugins/video.c index 0257ad2..db37139 100644 --- a/apps/plugins/video.c +++ b/apps/plugins/video.c @@ -864,7 +864,7 @@ int main(char* filename) // init buffer rb->memset(&gBuf, 0, sizeof(gBuf)); gBuf.pOSD = rb->lcd_framebuffer + LCD_WIDTH*7; // last screen line - gBuf.pBufStart = rb->plugin_get_mp3_buffer(&gBuf.bufsize); + gBuf.pBufStart = rb->plugin_get_audio_buffer(&gBuf.bufsize); //gBuf.bufsize = 1700*1024; // test, like 2MB version!!!! gBuf.pBufFill = gBuf.pBufStart; // all empty |