summaryrefslogtreecommitdiff
path: root/apps/plugins/video.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-04-05 11:33:58 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-04-05 11:33:58 +0000
commitd34865a5307e7bf91d986036797423975ac828b4 (patch)
tree41dcc1775f6cdc1d655f1eddadaabdf90c7ac22f /apps/plugins/video.c
parent6cf9d51b3374cdc436c45f165a10f607832126ee (diff)
downloadrockbox-d34865a5307e7bf91d986036797423975ac828b4.tar.gz
rockbox-d34865a5307e7bf91d986036797423975ac828b4.zip
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/video.c b/apps/plugins/video.c
index 0257ad26b7..db371392d5 100644
--- a/apps/plugins/video.c
+++ b/apps/plugins/video.c
@@ -864,7 +864,7 @@ int main(char* filename)
864 // init buffer 864 // init buffer
865 rb->memset(&gBuf, 0, sizeof(gBuf)); 865 rb->memset(&gBuf, 0, sizeof(gBuf));
866 gBuf.pOSD = rb->lcd_framebuffer + LCD_WIDTH*7; // last screen line 866 gBuf.pOSD = rb->lcd_framebuffer + LCD_WIDTH*7; // last screen line
867 gBuf.pBufStart = rb->plugin_get_mp3_buffer(&gBuf.bufsize); 867 gBuf.pBufStart = rb->plugin_get_audio_buffer(&gBuf.bufsize);
868 //gBuf.bufsize = 1700*1024; // test, like 2MB version!!!! 868 //gBuf.bufsize = 1700*1024; // test, like 2MB version!!!!
869 gBuf.pBufFill = gBuf.pBufStart; // all empty 869 gBuf.pBufFill = gBuf.pBufStart; // all empty
870 870