1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 ****************************************************************************/
24 #include "mpegplayer.h"
26 #include "mpeg_settings.h"
28 #ifndef HAVE_LCD_COLOR
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
;
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
;
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
;
107 case DISK_BUF_NOTIFY_ERROR
:
108 /* Error - quit parsing */
109 str_end_of_stream(str
);
110 return STREAM_DATA_END
;
113 /* Not ready - go wait for notification from buffering. */
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
)
125 if (str
->curr_packet
== NULL
)
127 /* Nothing was yet parsed since init */
128 str
->hdr
.win_right
= str
->hdr
.win_left
;
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
)
151 list_remove_item(&str
->l
);
152 list_add_item(&stream_mgr
.strl
, &str
->l
);
157 /* Callback for various list-moving operations */
158 static bool strl_enum_callback(struct list_item
*item
, intptr_t data
)
162 list_remove_item(item
);
165 list_add_item(&stream_mgr
.actl
, item
);
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
))
191 list_remove_item(&str
->l
);
192 list_add_item(&stream_mgr
.strl
, &str
->l
);
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
);
218 list_remove_item(item
);
219 list_add_item(&stream_mgr
.strl
, item
);
230 str_send_msg(str
, sbd
->cmd
, sbd
->data
);
234 static void actl_stream_broadcast(int cmd
, intptr_t data
)
236 struct str_broadcast_data sbd
;
239 list_enum_items(&stream_mgr
.actl
,
240 (list_enum_callback_t
)actl_stream_broadcast_callback
,
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;
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 */
266 /* Set the master clock */
267 set_stream_clock(time
);
269 /* Make sure streams are back in active pool */
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
)
296 /* Set the current time (time = unsigned offset from 0) */
297 if (time
> str_parser
.duration
)
298 time
= str_parser
.duration
;
301 /* Seek forward or backward from the current time
302 * (time = signed offset from current) */
303 currtime
= stream_get_seek_time(&start
);
305 currtime
+= (int32_t)time
;
309 else if ((uint64_t)currtime
> str_parser
.duration
)
310 currtime
= str_parser
.duration
;
312 time
= (uint32_t)currtime
;
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
;
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
)
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
)
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 */
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
;
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 */
400 stream_mgr_reply_msg(err
);
403 /* Handler STREAM_PLAY */
404 static void stream_on_play(void)
406 int status
= stream_mgr
.status
;
410 if (status
== STREAM_STOPPED
)
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
);
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);
436 /* Reply with previous state */
437 stream_mgr_reply_msg(status
);
443 /* Handle STREAM_PAUSE */
444 static void stream_on_pause(void)
446 int status
= stream_mgr
.status
;
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 */
467 /* Offically paused */
468 stream_mgr
.status
= STREAM_PAUSED
;
474 /* Handle STREAM_RESUME */
475 static void stream_on_resume(void)
477 int status
= stream_mgr
.status
;
481 /* Reply with previous state */
482 stream_mgr_reply_msg(status
);
484 if (status
== STREAM_PAUSED
)
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
;
499 /* Handle STREAM_STOP */
500 static void stream_on_stop(bool reply
)
502 int status
= stream_mgr
.status
;
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;
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) */
529 /* Cancel our processor boost */
532 stream_mgr
.status
= STREAM_STOPPED
;
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
;
549 if (stream_mgr
.filename
== NULL
)
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
);
560 if (stream_can_seek())
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
);
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
;
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();
607 /* Reinitialize manager */
608 stream_mgr_init_state();
616 /* Handle STREAM_EV_COMPLETE */
617 static void stream_on_ev_complete(struct stream
*str
)
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 */
634 /* Stream is done - stop it and place back in pool */
635 str_send_msg(str
, STREAM_STOP
, 1);
642 /* Callback for stream to notify about events internal to them */
643 void stream_generate_event(struct stream
*str
, long id
, intptr_t data
)
650 case STREAM_EV_COMPLETE
:
651 /* The last stream has ended */
652 stream_mgr_post_msg(STREAM_EV_COMPLETE
, (intptr_t)str
);
659 /* Clear any particular notification for which a stream registered */
660 void stream_clear_notify(struct stream
*str
, int for_msg
)
664 case DISK_BUF_DATA_NOTIFY
:
665 disk_buf_send_msg(DISK_BUF_CLEAR_DATA_NOTIFY
, (intptr_t)str
);
670 /* Show/hide the video output */
671 bool stream_show_vo(bool show
)
676 vis
= parser_send_video_msg(VIDEO_DISPLAY_SHOW
, show
);
677 #ifndef HAVE_LCD_COLOR
685 /* Query the visibility of video output */
686 bool stream_vo_is_visible(void)
690 vis
= parser_send_video_msg(VIDEO_DISPLAY_IS_VISIBLE
, 0);
695 /* Return the video dimensions */
696 bool stream_vo_get_size(struct vo_ext
*sz
)
702 if (str_parser
.dims
.w
> 0 && str_parser
.dims
.h
> 0)
704 *sz
= str_parser
.dims
;
713 void stream_vo_set_clip(const struct vo_rect
*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
);
728 #ifndef HAVE_LCD_COLOR
729 /* Show/hide the gray video overlay (independently of vo visibility). */
730 void stream_gray_show(bool show
)
739 #endif /* !HAVE_LCD_COLOR */
741 /* Display a thumbnail at the last seek point */
742 bool stream_display_thumb(const struct vo_rect
*rc
)
751 stream_mgr
.parms
.rc
= *rc
;
752 retval
= parser_send_video_msg(VIDEO_PRINT_THUMBNAIL
,
753 (intptr_t)&stream_mgr
.parms
.rc
);
760 bool stream_draw_frame(bool no_prepare
)
765 retval
= parser_send_video_msg(VIDEO_PRINT_FRAME
, no_prepare
);
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 */
780 resume_time
= stream_mgr
.resume_time
;
787 uint32_t stream_get_seek_time(uint32_t *start
)
793 if (stream_mgr
.seeked
)
795 time
= str_parser
.last_seek_time
;
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
;
807 *start
= str_parser
.start_pts
;
814 /* Wait for a state transistion to complete */
815 void stream_wait_status(void)
821 /* Returns the smallest file window that includes all active streams'
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
;
839 bool stream_get_window(struct stream_window
*sw
)
845 sw
->right
= LONG_MIN
;
848 list_enum_items(&stream_mgr
.actl
,
849 (list_enum_callback_t
)stream_get_window_callback
,
853 return sw
->left
<= sw
->right
;
856 /* Playback control thread */
857 static void stream_mgr_thread(void)
859 struct queue_event ev
;
863 rb
->queue_wait(stream_mgr
.q
, &ev
);
868 stream_on_open((const char *)ev
.data
);
887 stream_on_stop(true);
891 stream_on_seek((struct stream_seek_data
*)ev
.data
);
894 case STREAM_EV_COMPLETE
:
895 stream_on_ev_complete((struct stream
*)ev
.data
);
899 if (stream_mgr
.status
!= STREAM_STOPPED
)
900 stream_on_stop(false);
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
);
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);
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);
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);
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);
948 /* Seeks playback time to/by the specified time */
949 int stream_seek(uint32_t time
, int whence
)
953 if (stream_mgr
.thread
== 0)
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
);
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);
976 /* Initializes the playback engine */
977 int stream_init(void)
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
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
;
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
,
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!");
1062 return STREAM_ERROR
;
1065 /* Cleans everything up */
1066 void stream_exit(void)
1070 /* Stop the threads and wait for them to terminate */
1071 video_thread_exit();
1072 audio_thread_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