summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/video_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/video_thread.c')
-rw-r--r--apps/plugins/mpegplayer/video_thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/mpegplayer/video_thread.c b/apps/plugins/mpegplayer/video_thread.c
index 100904b01b..8b84686a3b 100644
--- a/apps/plugins/mpegplayer/video_thread.c
+++ b/apps/plugins/mpegplayer/video_thread.c
@@ -1009,7 +1009,7 @@ bool video_thread_init(void)
1009 rb->queue_enable_queue_send(video_str.hdr.q, &video_str_queue_send, 1009 rb->queue_enable_queue_send(video_str.hdr.q, &video_str_queue_send,
1010 video_str.thread); 1010 video_str.thread);
1011 1011
1012 if (video_str.thread == NULL) 1012 if (video_str.thread == 0)
1013 return false; 1013 return false;
1014 1014
1015 /* Wait for thread to initialize */ 1015 /* Wait for thread to initialize */
@@ -1022,11 +1022,11 @@ bool video_thread_init(void)
1022/* Terminates the video thread */ 1022/* Terminates the video thread */
1023void video_thread_exit(void) 1023void video_thread_exit(void)
1024{ 1024{
1025 if (video_str.thread != NULL) 1025 if (video_str.thread != 0)
1026 { 1026 {
1027 str_post_msg(&video_str, STREAM_QUIT, 0); 1027 str_post_msg(&video_str, STREAM_QUIT, 0);
1028 rb->thread_wait(video_str.thread); 1028 rb->thread_wait(video_str.thread);
1029 IF_COP(invalidate_icache()); 1029 IF_COP(invalidate_icache());
1030 video_str.thread = NULL; 1030 video_str.thread = 0;
1031 } 1031 }
1032} 1032}