Rearange menu of mpegplayer. Add new menu with "settings" and "quit", and remove...
[kugel-rb.git] / apps / plugins / mpegplayer / stream_mgr.c
blob065843a344fc63f5481571731bcf0a148323bb0c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * AV stream manager implementation
12 * Copyright (c) 2007 Michael Sevakis
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
22 ****************************************************************************/
23 #include "plugin.h"
24 #include "mpegplayer.h"
25 #include "lib/grey.h"
26 #include "mpeg_settings.h"
28 #ifndef HAVE_LCD_COLOR
29 GREY_INFO_STRUCT_IRAM
30 #endif
32 static struct event_queue stream_mgr_queue SHAREDBSS_ATTR;
33 static struct queue_sender_list stream_mgr_queue_send SHAREDBSS_ATTR;
34 static uint32_t stream_mgr_thread_stack[DEFAULT_STACK_SIZE*2/sizeof(uint32_t)];
36 struct stream_mgr stream_mgr SHAREDBSS_ATTR;
38 /* Forward decs */
39 static int stream_on_close(void);
41 struct str_broadcast_data
43 long cmd; /* Command to send to stream */
44 intptr_t data; /* Data to send with command */
47 static inline void stream_mgr_lock(void)
49 rb->mutex_lock(&stream_mgr.str_mtx);
52 static inline void stream_mgr_unlock(void)
54 rb->mutex_unlock(&stream_mgr.str_mtx);
57 static inline void actl_lock(void)
59 rb->mutex_lock(&stream_mgr.actl_mtx);
62 static inline void actl_unlock(void)
64 rb->mutex_unlock(&stream_mgr.actl_mtx);
67 static inline void stream_mgr_post_msg(long id, intptr_t data)
69 rb->queue_post(stream_mgr.q, id, data);
72 static inline intptr_t stream_mgr_send_msg(long id, intptr_t data)
74 return rb->queue_send(stream_mgr.q, id, data);
77 static inline void stream_mgr_reply_msg(intptr_t retval)
79 rb->queue_reply(stream_mgr.q, retval);
82 int str_next_data_not_ready(struct stream *str)
84 /* Save the current window since it actually might be ready by the time
85 * the registration is received by buffering. */
86 off_t win_right = str->hdr.win_right;
88 if (str->hdr.win_right < disk_buf.filesize - MIN_BUFAHEAD &&
89 disk_buf.filesize > MIN_BUFAHEAD)
91 /* Set right edge to where probing left off + the minimum margin */
92 str->hdr.win_right += MIN_BUFAHEAD;
94 else
96 /* Request would be passed the end of the file */
97 str->hdr.win_right = disk_buf.filesize;
100 switch (disk_buf_send_msg(DISK_BUF_DATA_NOTIFY, (intptr_t)str))
102 case DISK_BUF_NOTIFY_OK:
103 /* Was ready - restore window and process */
104 str->hdr.win_right = win_right;
105 return STREAM_OK;
107 case DISK_BUF_NOTIFY_ERROR:
108 /* Error - quit parsing */
109 str_end_of_stream(str);
110 return STREAM_DATA_END;
112 default:
113 /* Not ready - go wait for notification from buffering. */
114 str->pkt_flags = 0;
115 return STREAM_DATA_NOT_READY;
119 void str_data_notify_received(struct stream *str)
121 /* Normalize win_right back to the packet length */
122 if (str->state == SSTATE_END)
123 return;
125 if (str->curr_packet == NULL)
127 /* Nothing was yet parsed since init */
128 str->hdr.win_right = str->hdr.win_left;
130 else
132 /* Restore window based upon current packet */
133 str->hdr.win_right = str->hdr.win_left +
134 (str->curr_packet_end - str->curr_packet);
138 /* Set stream manager to a "no-file" state */
139 static void stream_mgr_init_state(void)
141 stream_mgr.filename = NULL;
142 stream_mgr.resume_time = INVALID_TIMESTAMP;
143 stream_mgr.seeked = false;
146 /* Add a stream to the playback pool */
147 void stream_add_stream(struct stream *str)
149 actl_lock();
151 list_remove_item(&str->l);
152 list_add_item(&stream_mgr.strl, &str->l);
154 actl_unlock();
157 /* Callback for various list-moving operations */
158 static bool strl_enum_callback(struct list_item *item, intptr_t data)
160 actl_lock();
162 list_remove_item(item);
164 if (data == 1)
165 list_add_item(&stream_mgr.actl, item);
167 actl_unlock();
169 return true;
172 /* Clear all streams from active and playback pools */
173 void stream_remove_streams(void)
175 list_enum_items(&stream_mgr.strl, strl_enum_callback, 0);
178 /* Move the playback pool to the active list */
179 void move_strl_to_actl(void)
181 list_enum_items(&stream_mgr.strl, strl_enum_callback, 1);
184 /* Remove a stream from the active list and return it to the pool */
185 static bool actl_stream_remove(struct stream *str)
187 if (list_is_member(&stream_mgr.actl, &str->l))
189 actl_lock();
191 list_remove_item(&str->l);
192 list_add_item(&stream_mgr.strl, &str->l);
194 actl_unlock();
195 return true;
198 return false;
201 /* Broadcast a message to all active streams */
202 static bool actl_stream_broadcast_callback(struct list_item *item,
203 struct str_broadcast_data *sbd)
205 struct stream *str = TYPE_FROM_MEMBER(struct stream, item, l);
207 switch (sbd->cmd)
209 case STREAM_PLAY:
210 case STREAM_PAUSE:
211 break;
213 case STREAM_STOP:
214 if (sbd->data != 0)
216 actl_lock();
218 list_remove_item(item);
219 list_add_item(&stream_mgr.strl, item);
221 actl_unlock();
222 sbd->data = 0;
224 break;
226 default:
227 return false;
230 str_send_msg(str, sbd->cmd, sbd->data);
231 return true;
234 static void actl_stream_broadcast(int cmd, intptr_t data)
236 struct str_broadcast_data sbd;
237 sbd.cmd = cmd;
238 sbd.data = data;
239 list_enum_items(&stream_mgr.actl,
240 (list_enum_callback_t)actl_stream_broadcast_callback,
241 (intptr_t)&sbd);
244 /* Set the current base clock */
245 static void set_stream_clock(uint32_t time)
247 /* Fudge: Start clock 100ms early to allow for some filling time */
248 if (time > 100*TS_SECOND/1000)
249 time -= 100*TS_SECOND/1000;
250 else
251 time = 0;
253 pcm_output_set_clock(TS_TO_TICKS(time));
256 static void stream_start_playback(uint32_t time, bool fill_buffer)
258 if (stream_mgr.seeked)
260 /* Clear any seeked status */
261 stream_mgr.seeked = false;
263 /* Flush old PCM data */
264 pcm_output_flush();
266 /* Set the master clock */
267 set_stream_clock(time);
269 /* Make sure streams are back in active pool */
270 move_strl_to_actl();
272 /* Prepare the parser and associated streams */
273 parser_prepare_streaming();
276 /* Start buffer which optional force fill */
277 disk_buf_send_msg(STREAM_PLAY, fill_buffer);
279 /* Tell each stream to start - may generate end of stream signals
280 * now - we'll handle this when finished */
281 actl_stream_broadcast(STREAM_PLAY, 0);
283 /* Actually start the clock */
284 pcm_output_play_pause(true);
287 /* Return the play time relative to the specified play time */
288 static uint32_t time_from_whence(uint32_t time, int whence)
290 int64_t currtime;
291 uint32_t start;
293 switch (whence)
295 case SEEK_SET:
296 /* Set the current time (time = unsigned offset from 0) */
297 if (time > str_parser.duration)
298 time = str_parser.duration;
299 break;
300 case SEEK_CUR:
301 /* Seek forward or backward from the current time
302 * (time = signed offset from current) */
303 currtime = stream_get_seek_time(&start);
304 currtime -= start;
305 currtime += (int32_t)time;
307 if (currtime < 0)
308 currtime = 0;
309 else if ((uint64_t)currtime > str_parser.duration)
310 currtime = str_parser.duration;
312 time = (uint32_t)currtime;
313 break;
314 case SEEK_END:
315 /* Seek from the end (time = unsigned offset from end) */
316 if (time > str_parser.duration)
317 time = str_parser.duration;
318 time = str_parser.duration - time;
319 break;
322 return time;
325 /* Handle seeking details if playing or paused */
326 static uint32_t stream_seek_intl(uint32_t time, int whence,
327 int status, bool *was_buffering)
329 if (status != STREAM_STOPPED)
331 bool wb;
333 /* Place streams in a non-running state - keep them on actl */
334 actl_stream_broadcast(STREAM_STOP, 0);
336 /* Stop all buffering or else risk clobbering random-access data */
337 wb = disk_buf_send_msg(STREAM_STOP, 0);
339 if (was_buffering != NULL)
340 *was_buffering = wb;
343 time = time_from_whence(time, whence);
345 stream_mgr.seeked = true;
347 return parser_seek_time(time);
350 /* Store the resume time at the last seek/current clock point */
351 static void stream_remember_resume_time(void)
353 /* Assume invalidity */
354 stream_mgr.resume_time = 0;
356 if (stream_can_seek())
358 /* Read the current stream time or the last seeked position */
359 uint32_t start;
360 uint32_t time = stream_get_seek_time(&start);
362 if (time >= str_parser.start_pts && time <= str_parser.end_pts)
364 /* Save the current stream time */
365 stream_mgr.resume_time = time - start;
370 /* Handle STREAM_OPEN */
371 void stream_on_open(const char *filename)
373 int err = STREAM_ERROR;
375 stream_mgr_lock();
377 trigger_cpu_boost();
379 /* Open the video file */
380 if (disk_buf_open(filename) >= 0)
382 /* Initialize the parser */
383 err = parser_init_stream();
385 if (err >= STREAM_OK)
387 /* File ok - save the opened filename */
388 stream_mgr.filename = filename;
392 /* If error - cleanup */
393 if (err < STREAM_OK)
394 stream_on_close();
396 cancel_cpu_boost();
398 stream_mgr_unlock();
400 stream_mgr_reply_msg(err);
403 /* Handler STREAM_PLAY */
404 static void stream_on_play(void)
406 int status = stream_mgr.status;
408 stream_mgr_lock();
410 if (status == STREAM_STOPPED)
412 uint32_t start;
414 /* We just say we're playing now */
415 stream_mgr.status = STREAM_PLAYING;
417 /* Reply with previous state */
418 stream_mgr_reply_msg(status);
420 trigger_cpu_boost();
422 /* Seek to initial position and set clock to that time */
424 /* Save the resume time */
425 stream_remember_resume_time();
427 /* Prepare seek to start point */
428 start = stream_seek_intl(stream_mgr.resume_time, SEEK_SET,
429 STREAM_STOPPED, NULL);
431 /* Sync and start - force buffer fill */
432 stream_start_playback(start, true);
434 else
436 /* Reply with previous state */
437 stream_mgr_reply_msg(status);
440 stream_mgr_unlock();
443 /* Handle STREAM_PAUSE */
444 static void stream_on_pause(void)
446 int status = stream_mgr.status;
448 stream_mgr_lock();
450 /* Reply with previous state */
451 stream_mgr_reply_msg(status);
453 if (status == STREAM_PLAYING)
455 /* Pause the clock */
456 pcm_output_play_pause(false);
458 /* Pause each active stream */
459 actl_stream_broadcast(STREAM_PAUSE, 0);
461 /* Pause the disk buffer - buffer may continue filling */
462 disk_buf_send_msg(STREAM_PAUSE, false);
464 /* Unboost the CPU */
465 cancel_cpu_boost();
467 /* Offically paused */
468 stream_mgr.status = STREAM_PAUSED;
471 stream_mgr_unlock();
474 /* Handle STREAM_RESUME */
475 static void stream_on_resume(void)
477 int status = stream_mgr.status;
479 stream_mgr_lock();
481 /* Reply with previous state */
482 stream_mgr_reply_msg(status);
484 if (status == STREAM_PAUSED)
486 /* Boost the CPU */
487 trigger_cpu_boost();
489 /* Sync and start - no force buffering */
490 stream_start_playback(str_parser.last_seek_time, false);
492 /* Officially playing */
493 stream_mgr.status = STREAM_PLAYING;
496 stream_mgr_unlock();
499 /* Handle STREAM_STOP */
500 static void stream_on_stop(bool reply)
502 int status = stream_mgr.status;
504 stream_mgr_lock();
506 if (reply)
507 stream_mgr_reply_msg(status);
509 if (status != STREAM_STOPPED)
511 /* Pause the clock */
512 pcm_output_play_pause(false);
514 /* Update the resume time info */
515 stream_remember_resume_time();
517 /* Not stopped = paused or playing */
518 stream_mgr.seeked = false;
520 /* Stop buffering */
521 disk_buf_send_msg(STREAM_STOP, 0);
523 /* Clear any still-active streams and remove from actl */
524 actl_stream_broadcast(STREAM_STOP, 1);
526 /* Stop PCM output (and clock) */
527 pcm_output_stop();
529 /* Cancel our processor boost */
530 cancel_cpu_boost();
532 stream_mgr.status = STREAM_STOPPED;
535 stream_mgr_unlock();
538 /* Handle STREAM_SEEK */
539 static void stream_on_seek(struct stream_seek_data *skd)
541 uint32_t time = skd->time;
542 int whence = skd->whence;
544 switch (whence)
546 case SEEK_SET:
547 case SEEK_CUR:
548 case SEEK_END:
549 if (stream_mgr.filename == NULL)
550 break;
552 /* Keep things spinning if already doing so */
553 stream_keep_disk_active();
555 /* Have data - reply in order to acquire lock */
556 stream_mgr_reply_msg(STREAM_OK);
558 stream_mgr_lock();
560 if (stream_can_seek())
562 bool buffer;
564 if (stream_mgr.status == STREAM_PLAYING)
566 /* Keep clock from advancing while seeking */
567 pcm_output_play_pause(false);
570 time = stream_seek_intl(time, whence, stream_mgr.status, &buffer);
571 stream_remember_resume_time();
573 if (stream_mgr.status == STREAM_PLAYING)
575 /* Sync and restart - no force buffering */
576 stream_start_playback(time, buffer);
580 stream_mgr_unlock();
581 return;
584 /* Invalid parameter or no file */
585 stream_mgr_reply_msg(STREAM_ERROR);
588 /* Handle STREAM_CLOSE */
589 static int stream_on_close(void)
591 int status = STREAM_STOPPED;
593 stream_mgr_lock();
595 /* Any open file? */
596 if (stream_mgr.filename != NULL)
598 /* Yes - hide video */
599 stream_show_vo(false);
600 /* Stop any playback */
601 status = stream_mgr.status;
602 stream_on_stop(false);
603 /* Tell parser file is finished */
604 parser_close_stream();
605 /* Close file */
606 disk_buf_close();
607 /* Reinitialize manager */
608 stream_mgr_init_state();
611 stream_mgr_unlock();
613 return status;
616 /* Handle STREAM_EV_COMPLETE */
617 static void stream_on_ev_complete(struct stream *str)
619 stream_mgr_lock();
621 /* Stream is active? */
622 if (actl_stream_remove(str))
624 /* No - remove this stream from the active list */
625 DEBUGF(" finished: 0x%02x\n", str->id);
626 if (list_is_empty(&stream_mgr.actl))
628 /* All streams have acked - stop playback */
629 stream_on_stop(false);
630 stream_mgr.resume_time = 0; /* Played to end - no resume */
632 else
634 /* Stream is done - stop it and place back in pool */
635 str_send_msg(str, STREAM_STOP, 1);
639 stream_mgr_unlock();
642 /* Callback for stream to notify about events internal to them */
643 void stream_generate_event(struct stream *str, long id, intptr_t data)
645 if (str == NULL)
646 return;
648 switch (id)
650 case STREAM_EV_COMPLETE:
651 /* The last stream has ended */
652 stream_mgr_post_msg(STREAM_EV_COMPLETE, (intptr_t)str);
653 break;
656 (void)data;
659 /* Clear any particular notification for which a stream registered */
660 void stream_clear_notify(struct stream *str, int for_msg)
662 switch (for_msg)
664 case DISK_BUF_DATA_NOTIFY:
665 disk_buf_send_msg(DISK_BUF_CLEAR_DATA_NOTIFY, (intptr_t)str);
666 break;
670 /* Show/hide the video output */
671 bool stream_show_vo(bool show)
673 bool vis;
674 stream_mgr_lock();
676 vis = parser_send_video_msg(VIDEO_DISPLAY_SHOW, show);
677 #ifndef HAVE_LCD_COLOR
678 grey_show(show);
679 #endif
680 stream_mgr_unlock();
682 return vis;
685 /* Query the visibility of video output */
686 bool stream_vo_is_visible(void)
688 bool vis;
689 stream_mgr_lock();
690 vis = parser_send_video_msg(VIDEO_DISPLAY_IS_VISIBLE, 0);
691 stream_mgr_unlock();
692 return vis;
695 /* Return the video dimensions */
696 bool stream_vo_get_size(struct vo_ext *sz)
698 bool retval = false;
700 stream_mgr_lock();
702 if (str_parser.dims.w > 0 && str_parser.dims.h > 0)
704 *sz = str_parser.dims;
705 retval = true;
708 stream_mgr_unlock();
710 return retval;
713 void stream_vo_set_clip(const struct vo_rect *rc)
715 stream_mgr_lock();
717 if (rc)
719 stream_mgr.parms.rc = *rc;
720 rc = &stream_mgr.parms.rc;
723 parser_send_video_msg(VIDEO_SET_CLIP_RECT, (intptr_t)rc);
725 stream_mgr_unlock();
728 #ifndef HAVE_LCD_COLOR
729 /* Show/hide the gray video overlay (independently of vo visibility). */
730 void stream_gray_show(bool show)
732 stream_mgr_lock();
734 grey_show(show);
736 stream_mgr_unlock();
739 #endif /* !HAVE_LCD_COLOR */
741 /* Display a thumbnail at the last seek point */
742 bool stream_display_thumb(const struct vo_rect *rc)
744 bool retval;
746 if (rc == NULL)
747 return false;
749 stream_mgr_lock();
751 stream_mgr.parms.rc = *rc;
752 retval = parser_send_video_msg(VIDEO_PRINT_THUMBNAIL,
753 (intptr_t)&stream_mgr.parms.rc);
755 stream_mgr_unlock();
757 return retval;
760 bool stream_draw_frame(bool no_prepare)
762 bool retval;
763 stream_mgr_lock();
765 retval = parser_send_video_msg(VIDEO_PRINT_FRAME, no_prepare);
767 stream_mgr_unlock();
769 return retval;
772 /* Return the time playback should resume if interrupted */
773 uint32_t stream_get_resume_time(void)
775 uint32_t resume_time;
777 /* A stop request is async and replies before setting this - must lock */
778 stream_mgr_lock();
780 resume_time = stream_mgr.resume_time;
782 stream_mgr_unlock();
784 return resume_time;
787 uint32_t stream_get_seek_time(uint32_t *start)
789 uint32_t time;
791 stream_mgr_lock();
793 if (stream_mgr.seeked)
795 time = str_parser.last_seek_time;
797 else
799 time = TICKS_TO_TS(pcm_output_get_clock());
801 /* Clock can be start early so keep in range */
802 if (time < str_parser.start_pts)
803 time = str_parser.start_pts;
806 if (start != NULL)
807 *start = str_parser.start_pts;
809 stream_mgr_unlock();
811 return time;
814 /* Wait for a state transistion to complete */
815 void stream_wait_status(void)
817 stream_mgr_lock();
818 stream_mgr_unlock();
821 /* Returns the smallest file window that includes all active streams'
822 * windows */
823 static bool stream_get_window_callback(struct list_item *item,
824 struct stream_window *sw)
826 struct stream *str = TYPE_FROM_MEMBER(struct stream, item, l);
827 off_t swl = str->hdr.win_left;
828 off_t swr = str->hdr.win_right;
830 if (swl < sw->left)
831 sw->left = swl;
833 if (swr > sw->right)
834 sw->right = swr;
836 return true;
839 bool stream_get_window(struct stream_window *sw)
841 if (sw == NULL)
842 return false;
844 sw->left = LONG_MAX;
845 sw->right = LONG_MIN;
847 actl_lock();
848 list_enum_items(&stream_mgr.actl,
849 (list_enum_callback_t)stream_get_window_callback,
850 (intptr_t)sw);
851 actl_unlock();
853 return sw->left <= sw->right;
856 /* Playback control thread */
857 static void stream_mgr_thread(void)
859 struct queue_event ev;
861 while (1)
863 rb->queue_wait(stream_mgr.q, &ev);
865 switch (ev.id)
867 case STREAM_OPEN:
868 stream_on_open((const char *)ev.data);
869 break;
871 case STREAM_CLOSE:
872 stream_on_close();
873 break;
875 case STREAM_PLAY:
876 stream_on_play();
877 break;
879 case STREAM_PAUSE:
880 if (ev.data)
881 stream_on_resume();
882 else
883 stream_on_pause();
884 break;
886 case STREAM_STOP:
887 stream_on_stop(true);
888 break;
890 case STREAM_SEEK:
891 stream_on_seek((struct stream_seek_data *)ev.data);
892 break;
894 case STREAM_EV_COMPLETE:
895 stream_on_ev_complete((struct stream *)ev.data);
896 break;
898 case STREAM_QUIT:
899 if (stream_mgr.status != STREAM_STOPPED)
900 stream_on_stop(false);
901 return;
906 /* Stream command interface APIs */
908 /* Opens a new file */
909 int stream_open(const char *filename)
911 if (stream_mgr.thread != 0)
912 return stream_mgr_send_msg(STREAM_OPEN, (intptr_t)filename);
913 return STREAM_ERROR;
916 /* Plays the current file starting at time 'start' */
917 int stream_play(void)
919 if (stream_mgr.thread != 0)
920 return stream_mgr_send_msg(STREAM_PLAY, 0);
921 return STREAM_ERROR;
924 /* Pauses playback if playing */
925 int stream_pause(void)
927 if (stream_mgr.thread != 0)
928 return stream_mgr_send_msg(STREAM_PAUSE, false);
929 return STREAM_ERROR;
932 /* Resumes playback if paused */
933 int stream_resume(void)
935 if (stream_mgr.thread != 0)
936 return stream_mgr_send_msg(STREAM_PAUSE, true);
937 return STREAM_ERROR;
940 /* Stops playback if not stopped */
941 int stream_stop(void)
943 if (stream_mgr.thread != 0)
944 return stream_mgr_send_msg(STREAM_STOP, 0);
945 return STREAM_ERROR;
948 /* Seeks playback time to/by the specified time */
949 int stream_seek(uint32_t time, int whence)
951 int ret;
953 if (stream_mgr.thread == 0)
954 return STREAM_ERROR;
956 stream_mgr_lock();
958 stream_mgr.parms.skd.time = time;
959 stream_mgr.parms.skd.whence = whence;
961 ret = stream_mgr_send_msg(STREAM_SEEK, (intptr_t)&stream_mgr.parms.skd);
963 stream_mgr_unlock();
965 return ret;
968 /* Closes the current file */
969 int stream_close(void)
971 if (stream_mgr.thread != 0)
972 return stream_mgr_send_msg(STREAM_CLOSE, 0);
973 return STREAM_ERROR;
976 /* Initializes the playback engine */
977 int stream_init(void)
979 void *mem;
980 size_t memsize;
982 stream_mgr.status = STREAM_STOPPED;
983 stream_mgr_init_state();
984 list_initialize(&stream_mgr.actl);
986 /* Initialize our window to the outside world first */
987 rb->mutex_init(&stream_mgr.str_mtx);
988 rb->mutex_init(&stream_mgr.actl_mtx);
990 stream_mgr.q = &stream_mgr_queue;
991 rb->queue_init(stream_mgr.q, false);
993 /* sets audiosize and returns buffer pointer */
994 mem = rb->plugin_get_audio_buffer(&memsize);
996 /* Initialize non-allocator blocks first */
997 #ifndef HAVE_LCD_COLOR
998 long greysize;
1000 /* Greylib init handles all necessary cache alignment */
1001 if (!grey_init(mem, memsize, GREY_BUFFERED|GREY_ON_COP,
1002 LCD_WIDTH, LCD_HEIGHT, &greysize))
1004 rb->splash(HZ, "greylib init failed!");
1005 return STREAM_ERROR;
1008 mem += greysize;
1009 memsize -= greysize;
1011 grey_clear_display();
1012 #endif /* !HAVE_LCD_COLOR */
1014 stream_mgr.thread = rb->create_thread(stream_mgr_thread,
1015 stream_mgr_thread_stack, sizeof(stream_mgr_thread_stack),
1016 0, "mpgstream_mgr" IF_PRIO(, PRIORITY_SYSTEM) IF_COP(, CPU));
1018 rb->queue_enable_queue_send(stream_mgr.q, &stream_mgr_queue_send,
1019 stream_mgr.thread);
1021 if (stream_mgr.thread == 0)
1023 rb->splash(HZ, "Could not create stream manager thread!");
1024 return STREAM_ERROR;
1027 /* Wait for thread to initialize */
1028 stream_mgr_send_msg(STREAM_NULL, 0);
1030 /* Initialise our malloc buffer */
1031 if (!mpeg_alloc_init(mem, memsize))
1033 rb->splash(HZ, "Out of memory in stream_init");
1035 /* These inits use the allocator */
1036 else if (!pcm_output_init())
1038 rb->splash(HZ, "Could not initialize PCM!");
1040 else if (!audio_thread_init())
1042 rb->splash(HZ, "Cannot create audio thread!");
1044 else if (!video_thread_init())
1046 rb->splash(HZ, "Cannot create video thread!");
1048 /* Disk buffer takes max allotment of what's left so it must be last */
1049 else if (!disk_buf_init())
1051 rb->splash(HZ, "Cannot create buffering thread!");
1053 else if (!parser_init())
1055 rb->splash(HZ, "Parser init failed!");
1057 else
1059 return STREAM_OK;
1062 return STREAM_ERROR;
1065 /* Cleans everything up */
1066 void stream_exit(void)
1068 stream_close();
1070 /* Stop the threads and wait for them to terminate */
1071 video_thread_exit();
1072 audio_thread_exit();
1073 disk_buf_exit();
1074 pcm_output_exit();
1076 if (stream_mgr.thread != 0)
1078 stream_mgr_post_msg(STREAM_QUIT, 0);
1079 rb->thread_wait(stream_mgr.thread);
1080 stream_mgr.thread = 0;
1083 #ifndef HAVE_LCD_COLOR
1084 grey_release();
1085 #endif