fix red.
[kugel-rb.git] / apps / plugins / mpegplayer / stream_mgr.c
blob2eed3d355d68f7a66a0949399c30e16892cb6398
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(stream_mgr.strl, str);
152 list_add_item(stream_mgr.strl, str);
154 actl_unlock();
157 /* Callback for various list-moving operations */
158 static bool strl_enum_callback(struct stream *str, intptr_t data)
160 actl_lock();
162 list_remove_item(stream_mgr.strl, str);
164 if (data == 1)
165 list_add_item(stream_mgr.actl, str);
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,
176 (list_enum_callback_t)strl_enum_callback, 0);
179 /* Move the playback pool to the active list */
180 void move_strl_to_actl(void)
182 list_enum_items(stream_mgr.strl,
183 (list_enum_callback_t)strl_enum_callback, 1);
186 /* Remove a stream from the active list and return it to the pool */
187 static bool actl_stream_remove(struct stream *str)
189 bool retval;
191 actl_lock();
193 retval = list_remove_item(stream_mgr.actl, str);
195 if (retval)
196 list_add_item(stream_mgr.strl, str);
198 actl_unlock();
200 return retval;
203 /* Broadcast a message to all active streams */
204 static bool actl_stream_broadcast_callback(struct stream *str,
205 struct str_broadcast_data *sbd)
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(stream_mgr.actl, str);
219 list_add_item(stream_mgr.strl, str);
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 stream *str,
824 struct stream_window *sw)
826 off_t swl = str->hdr.win_left;
827 off_t swr = str->hdr.win_right;
829 if (swl < sw->left)
830 sw->left = swl;
832 if (swr > sw->right)
833 sw->right = swr;
835 return true;
838 bool stream_get_window(struct stream_window *sw)
840 if (sw == NULL)
841 return false;
843 sw->left = LONG_MAX;
844 sw->right = LONG_MIN;
846 actl_lock();
847 list_enum_items(stream_mgr.actl,
848 (list_enum_callback_t)stream_get_window_callback,
849 (intptr_t)sw);
850 actl_unlock();
852 return sw->left <= sw->right;
855 /* Playback control thread */
856 static void stream_mgr_thread(void)
858 struct queue_event ev;
860 while (1)
862 rb->queue_wait(stream_mgr.q, &ev);
864 switch (ev.id)
866 case STREAM_OPEN:
867 stream_on_open((const char *)ev.data);
868 break;
870 case STREAM_CLOSE:
871 stream_on_close();
872 break;
874 case STREAM_PLAY:
875 stream_on_play();
876 break;
878 case STREAM_PAUSE:
879 if (ev.data)
880 stream_on_resume();
881 else
882 stream_on_pause();
883 break;
885 case STREAM_STOP:
886 stream_on_stop(true);
887 break;
889 case STREAM_SEEK:
890 stream_on_seek((struct stream_seek_data *)ev.data);
891 break;
893 case STREAM_EV_COMPLETE:
894 stream_on_ev_complete((struct stream *)ev.data);
895 break;
897 case STREAM_QUIT:
898 if (stream_mgr.status != STREAM_STOPPED)
899 stream_on_stop(false);
900 return;
905 /* Stream command interface APIs */
907 /* Opens a new file */
908 int stream_open(const char *filename)
910 if (stream_mgr.thread != 0)
911 return stream_mgr_send_msg(STREAM_OPEN, (intptr_t)filename);
912 return STREAM_ERROR;
915 /* Plays the current file starting at time 'start' */
916 int stream_play(void)
918 if (stream_mgr.thread != 0)
919 return stream_mgr_send_msg(STREAM_PLAY, 0);
920 return STREAM_ERROR;
923 /* Pauses playback if playing */
924 int stream_pause(void)
926 if (stream_mgr.thread != 0)
927 return stream_mgr_send_msg(STREAM_PAUSE, false);
928 return STREAM_ERROR;
931 /* Resumes playback if paused */
932 int stream_resume(void)
934 if (stream_mgr.thread != 0)
935 return stream_mgr_send_msg(STREAM_PAUSE, true);
936 return STREAM_ERROR;
939 /* Stops playback if not stopped */
940 int stream_stop(void)
942 if (stream_mgr.thread != 0)
943 return stream_mgr_send_msg(STREAM_STOP, 0);
944 return STREAM_ERROR;
947 /* Seeks playback time to/by the specified time */
948 int stream_seek(uint32_t time, int whence)
950 int ret;
952 if (stream_mgr.thread == 0)
953 return STREAM_ERROR;
955 stream_mgr_lock();
957 stream_mgr.parms.skd.time = time;
958 stream_mgr.parms.skd.whence = whence;
960 ret = stream_mgr_send_msg(STREAM_SEEK, (intptr_t)&stream_mgr.parms.skd);
962 stream_mgr_unlock();
964 return ret;
967 /* Closes the current file */
968 int stream_close(void)
970 if (stream_mgr.thread != 0)
971 return stream_mgr_send_msg(STREAM_CLOSE, 0);
972 return STREAM_ERROR;
975 /* Initializes the playback engine */
976 int stream_init(void)
978 void *mem;
979 size_t memsize;
981 stream_mgr.status = STREAM_STOPPED;
982 stream_mgr_init_state();
984 /* Initialize our window to the outside world first */
985 rb->mutex_init(&stream_mgr.str_mtx);
986 rb->mutex_init(&stream_mgr.actl_mtx);
988 stream_mgr.q = &stream_mgr_queue;
989 rb->queue_init(stream_mgr.q, false);
991 /* sets audiosize and returns buffer pointer */
992 mem = rb->plugin_get_audio_buffer(&memsize);
994 /* Initialize non-allocator blocks first */
995 #ifndef HAVE_LCD_COLOR
996 long greysize;
998 /* Greylib init handles all necessary cache alignment */
999 if (!grey_init(mem, memsize, GREY_BUFFERED|GREY_ON_COP,
1000 LCD_WIDTH, LCD_HEIGHT, &greysize))
1002 rb->splash(HZ, "greylib init failed!");
1003 return STREAM_ERROR;
1006 mem += greysize;
1007 memsize -= greysize;
1009 grey_clear_display();
1010 #endif /* !HAVE_LCD_COLOR */
1012 stream_mgr.thread = rb->create_thread(stream_mgr_thread,
1013 stream_mgr_thread_stack, sizeof(stream_mgr_thread_stack),
1014 0, "mpgstream_mgr" IF_PRIO(, PRIORITY_SYSTEM) IF_COP(, CPU));
1016 rb->queue_enable_queue_send(stream_mgr.q, &stream_mgr_queue_send,
1017 stream_mgr.thread);
1019 if (stream_mgr.thread == 0)
1021 rb->splash(HZ, "Could not create stream manager thread!");
1022 return STREAM_ERROR;
1025 /* Wait for thread to initialize */
1026 stream_mgr_send_msg(STREAM_NULL, 0);
1028 /* Initialise our malloc buffer */
1029 if (!mpeg_alloc_init(mem, memsize))
1031 rb->splash(HZ, "Out of memory in stream_init");
1033 /* These inits use the allocator */
1034 else if (!pcm_output_init())
1036 rb->splash(HZ, "Could not initialize PCM!");
1038 else if (!audio_thread_init())
1040 rb->splash(HZ, "Cannot create audio thread!");
1042 else if (!video_thread_init())
1044 rb->splash(HZ, "Cannot create video thread!");
1046 /* Disk buffer takes max allotment of what's left so it must be last */
1047 else if (!disk_buf_init())
1049 rb->splash(HZ, "Cannot create buffering thread!");
1051 else if (!parser_init())
1053 rb->splash(HZ, "Parser init failed!");
1055 else
1057 return STREAM_OK;
1060 return STREAM_ERROR;
1063 /* Cleans everything up */
1064 void stream_exit(void)
1066 stream_close();
1068 /* Stop the threads and wait for them to terminate */
1069 video_thread_exit();
1070 audio_thread_exit();
1071 disk_buf_exit();
1072 pcm_output_exit();
1074 if (stream_mgr.thread != 0)
1076 stream_mgr_post_msg(STREAM_QUIT, 0);
1077 rb->thread_wait(stream_mgr.thread);
1078 stream_mgr.thread = 0;
1081 #ifndef HAVE_LCD_COLOR
1082 grey_release();
1083 #endif