summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/disk_buf.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/disk_buf.c')
-rw-r--r--apps/plugins/mpegplayer/disk_buf.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/plugins/mpegplayer/disk_buf.c b/apps/plugins/mpegplayer/disk_buf.c
index 4328606a1e..defd8ef81d 100644
--- a/apps/plugins/mpegplayer/disk_buf.c
+++ b/apps/plugins/mpegplayer/disk_buf.c
@@ -172,9 +172,7 @@ static inline void disk_buf_buffer(void)
172 if (!stream_get_window(&sw)) 172 if (!stream_get_window(&sw))
173 { 173 {
174 disk_buf.state = TSTATE_DATA; 174 disk_buf.state = TSTATE_DATA;
175#ifdef HAVE_DISK_STORAGE
176 rb->storage_sleep(); 175 rb->storage_sleep();
177#endif
178 break; 176 break;
179 } 177 }
180 178
@@ -189,9 +187,7 @@ static inline void disk_buf_buffer(void)
189 /* Free space is less than one page */ 187 /* Free space is less than one page */
190 disk_buf.state = TSTATE_DATA; 188 disk_buf.state = TSTATE_DATA;
191 disk_buf.low_wm = DISK_BUF_LOW_WATERMARK; 189 disk_buf.low_wm = DISK_BUF_LOW_WATERMARK;
192#ifdef HAVE_DISK_STORAGE
193 rb->storage_sleep(); 190 rb->storage_sleep();
194#endif
195 break; 191 break;
196 } 192 }
197 193
@@ -213,9 +209,7 @@ static inline void disk_buf_buffer(void)
213 { 209 {
214 /* Error or end of stream */ 210 /* Error or end of stream */
215 disk_buf.state = TSTATE_EOS; 211 disk_buf.state = TSTATE_EOS;
216#ifdef HAVE_DISK_STORAGE
217 rb->storage_sleep(); 212 rb->storage_sleep();
218#endif
219 break; 213 break;
220 } 214 }
221 215