summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/mpeg_parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/mpeg_parser.c')
-rw-r--r--apps/plugins/mpegplayer/mpeg_parser.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_parser.c b/apps/plugins/mpegplayer/mpeg_parser.c
index d4b0ff10fb..5b863dabac 100644
--- a/apps/plugins/mpegplayer/mpeg_parser.c
+++ b/apps/plugins/mpegplayer/mpeg_parser.c
@@ -1012,15 +1012,17 @@ intptr_t parser_send_video_msg(long id, intptr_t data)
1012 switch (id) 1012 switch (id)
1013 { 1013 {
1014 case VIDEO_DISPLAY_SHOW: 1014 case VIDEO_DISPLAY_SHOW:
1015 if (data != 0 && stream_status() != STREAM_PLAYING) 1015 if (data != 0 && disk_buf_status() == STREAM_STOPPED)
1016 { /* Only prepare image if showing and not playing */ 1016 { /* Only prepare image if showing and not playing */
1017 prepare_image(str_parser.last_seek_time); 1017 prepare_image(str_parser.last_seek_time);
1018 } 1018 }
1019 break; 1019 break;
1020 1020
1021 case VIDEO_PRINT_FRAME: 1021 case VIDEO_PRINT_FRAME:
1022 if (data)
1023 break;
1022 case VIDEO_PRINT_THUMBNAIL: 1024 case VIDEO_PRINT_THUMBNAIL:
1023 if (stream_status() == STREAM_PLAYING) 1025 if (disk_buf_status() != STREAM_STOPPED)
1024 break; /* Prepare image if not playing */ 1026 break; /* Prepare image if not playing */
1025 1027
1026 if (!prepare_image(str_parser.last_seek_time)) 1028 if (!prepare_image(str_parser.last_seek_time))