summaryrefslogtreecommitdiff
path: root/apps/plugins/pdbox/pdbox.c
diff options
context:
space:
mode:
authorPeter D'Hoye <peter.dhoye@gmail.com>2009-05-26 21:07:40 +0000
committerPeter D'Hoye <peter.dhoye@gmail.com>2009-05-26 21:07:40 +0000
commit3ca0614de9a3c4dc633e4c9f9ba459d89e44dd92 (patch)
tree167e53fa944537c46c61fbe1aa35e3b387f19921 /apps/plugins/pdbox/pdbox.c
parent84ea60781319324521d4b5e85a13b0a9e964f7b8 (diff)
downloadrockbox-3ca0614de9a3c4dc633e4c9f9ba459d89e44dd92.tar.gz
rockbox-3ca0614de9a3c4dc633e4c9f9ba459d89e44dd92.zip
Next round of pdbox patches from Wincent Balin: adapt dbestfit to rockbox, ifdef some printfs, and more
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21095 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pdbox/pdbox.c')
-rw-r--r--apps/plugins/pdbox/pdbox.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugins/pdbox/pdbox.c b/apps/plugins/pdbox/pdbox.c
index c3fb4499e1..d6e25ca3fa 100644
--- a/apps/plugins/pdbox/pdbox.c
+++ b/apps/plugins/pdbox/pdbox.c
@@ -105,7 +105,6 @@ enum plugin_status plugin_start(const void* parameter)
105 /* Get the file name. */ 105 /* Get the file name. */
106 const char* filename = (const char*) parameter; 106 const char* filename = (const char*) parameter;
107 107
108#if 0
109 /* Allocate memory; check it's size; add to the pool. */ 108 /* Allocate memory; check it's size; add to the pool. */
110 mem_pool = rb->plugin_get_audio_buffer(&mem_size); 109 mem_pool = rb->plugin_get_audio_buffer(&mem_size);
111 if(mem_size < MIN_MEM_SIZE) 110 if(mem_size < MIN_MEM_SIZE)
@@ -114,9 +113,8 @@ enum plugin_status plugin_start(const void* parameter)
114 return PLUGIN_ERROR; 113 return PLUGIN_ERROR;
115 } 114 }
116 add_pool(mem_pool, mem_size); 115 add_pool(mem_pool, mem_size);
117#endif
118 116
119 /* Initialze net. */ 117 /* Initialize net. */
120 net_init(); 118 net_init();
121 119
122 /* Start threads. */ 120 /* Start threads. */