Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
933a5159
Commit
933a5159
authored
Dec 11, 2015
by
Thomas Guillem
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mediacodec: use vlc_cancel to interrupt the output thread
parent
0ef47453
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
36 deletions
+48
-36
modules/codec/omxil/mediacodec.c
modules/codec/omxil/mediacodec.c
+48
-36
No files found.
modules/codec/omxil/mediacodec.c
View file @
933a5159
...
@@ -39,6 +39,7 @@
...
@@ -39,6 +39,7 @@
#include <vlc_cpu.h>
#include <vlc_cpu.h>
#include <vlc_memory.h>
#include <vlc_memory.h>
#include <vlc_timestamp_helper.h>
#include <vlc_timestamp_helper.h>
#include <vlc_threads.h>
#include "mediacodec.h"
#include "mediacodec.h"
#include "../../packetizer/h264_nal.h"
#include "../../packetizer/h264_nal.h"
...
@@ -107,7 +108,6 @@ struct decoder_sys_t
...
@@ -107,7 +108,6 @@ struct decoder_sys_t
/* Cond used to signal the decoder thread */
/* Cond used to signal the decoder thread */
vlc_cond_t
dec_cond
;
vlc_cond_t
dec_cond
;
/* Set to true by pf_flush to signal the output thread to flush */
/* Set to true by pf_flush to signal the output thread to flush */
bool
b_out_thread_running
;
bool
b_flush_out
;
bool
b_flush_out
;
/* If true, the output thread will start to dequeue output pictures */
/* If true, the output thread will start to dequeue output pictures */
bool
b_output_ready
;
bool
b_output_ready
;
...
@@ -657,25 +657,19 @@ static int OpenDecoder(vlc_object_t *p_this, pf_MediaCodecApi_init pf_init)
...
@@ -657,25 +657,19 @@ static int OpenDecoder(vlc_object_t *p_this, pf_MediaCodecApi_init pf_init)
b_late_opening
=
true
;
b_late_opening
=
true
;
}
}
vlc_mutex_lock
(
&
p_sys
->
lock
);
if
(
!
b_late_opening
&&
StartMediaCodec
(
p_dec
)
!=
VLC_SUCCESS
)
if
(
!
b_late_opening
&&
StartMediaCodec
(
p_dec
)
!=
VLC_SUCCESS
)
{
{
msg_Err
(
p_dec
,
"StartMediaCodec failed"
);
msg_Err
(
p_dec
,
"StartMediaCodec failed"
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
goto
bailout
;
goto
bailout
;
}
}
p_sys
->
b_out_thread_running
=
true
;
if
(
vlc_clone
(
&
p_sys
->
out_thread
,
OutThread
,
p_dec
,
if
(
vlc_clone
(
&
p_sys
->
out_thread
,
OutThread
,
p_dec
,
VLC_THREAD_PRIORITY_LOW
))
VLC_THREAD_PRIORITY_LOW
))
{
{
msg_Err
(
p_dec
,
"vlc_clone failed"
);
msg_Err
(
p_dec
,
"vlc_clone failed"
);
p_sys
->
b_out_thread_running
=
false
;
vlc_mutex_unlock
(
&
p_sys
->
lock
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
goto
bailout
;
goto
bailout
;
}
}
vlc_mutex_unlock
(
&
p_sys
->
lock
);
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
...
@@ -694,6 +688,17 @@ static int OpenDecoderJni(vlc_object_t *p_this)
...
@@ -694,6 +688,17 @@ static int OpenDecoderJni(vlc_object_t *p_this)
return
OpenDecoder
(
p_this
,
MediaCodecJni_Init
);
return
OpenDecoder
(
p_this
,
MediaCodecJni_Init
);
}
}
static
void
AbortDecoderLocked
(
decoder_t
*
p_dec
)
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
if
(
!
p_sys
->
b_error
)
{
p_sys
->
b_error
=
true
;
vlc_cancel
(
p_sys
->
out_thread
);
}
}
static
void
CleanDecoder
(
decoder_t
*
p_dec
)
static
void
CleanDecoder
(
decoder_t
*
p_dec
)
{
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
...
@@ -730,10 +735,12 @@ static void CloseDecoder(vlc_object_t *p_this)
...
@@ -730,10 +735,12 @@ static void CloseDecoder(vlc_object_t *p_this)
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
vlc_mutex_lock
(
&
p_sys
->
lock
);
vlc_mutex_lock
(
&
p_sys
->
lock
);
p_sys
->
b_out_thread_running
=
false
;
/* Unblock output thread waiting in dequeue_out */
DecodeFlushLocked
(
p_dec
);
DecodeFlushLocked
(
p_dec
);
vlc_cond_broadcast
(
&
p_sys
->
cond
);
/* Cancel the output thread */
AbortDecoderLocked
(
p_dec
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
vlc_join
(
p_sys
->
out_thread
,
NULL
);
vlc_join
(
p_sys
->
out_thread
,
NULL
);
CleanDecoder
(
p_dec
);
CleanDecoder
(
p_dec
);
...
@@ -1081,7 +1088,7 @@ static void DecodeFlushLocked(decoder_t *p_dec)
...
@@ -1081,7 +1088,7 @@ static void DecodeFlushLocked(decoder_t *p_dec)
if
(
b_had_input
&&
p_sys
->
api
->
flush
(
p_sys
->
api
)
!=
VLC_SUCCESS
)
if
(
b_had_input
&&
p_sys
->
api
->
flush
(
p_sys
->
api
)
!=
VLC_SUCCESS
)
{
{
p_sys
->
b_error
=
true
;
AbortDecoderLocked
(
p_dec
)
;
return
;
return
;
}
}
...
@@ -1105,15 +1112,14 @@ static void *OutThread(void *data)
...
@@ -1105,15 +1112,14 @@ static void *OutThread(void *data)
decoder_t
*
p_dec
=
data
;
decoder_t
*
p_dec
=
data
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
vlc_mutex_lock
(
&
p_sys
->
lock
);
mutex_cleanup_push
(
&
p_sys
->
lock
);
for
(;;)
for
(;;)
{
{
int
i_index
;
int
i_index
;
vlc_mutex_lock
(
&
p_sys
->
lock
);
/* Wait for output ready */
/* Wait for output ready */
while
(
!
p_sys
->
b_error
&&
p_sys
->
b_out_thread_running
while
(
!
p_sys
->
b_flush_out
&&
!
p_sys
->
b_output_ready
)
&&
!
p_sys
->
b_flush_out
&&
!
p_sys
->
b_output_ready
)
vlc_cond_wait
(
&
p_sys
->
cond
,
&
p_sys
->
lock
);
vlc_cond_wait
(
&
p_sys
->
cond
,
&
p_sys
->
lock
);
if
(
p_sys
->
b_flush_out
)
if
(
p_sys
->
b_flush_out
)
...
@@ -1121,17 +1127,17 @@ static void *OutThread(void *data)
...
@@ -1121,17 +1127,17 @@ static void *OutThread(void *data)
/* Acknowledge flushed state */
/* Acknowledge flushed state */
p_sys
->
b_flush_out
=
false
;
p_sys
->
b_flush_out
=
false
;
vlc_cond_broadcast
(
&
p_sys
->
dec_cond
);
vlc_cond_broadcast
(
&
p_sys
->
dec_cond
);
goto
next
;
continue
;
}
}
/* Check if thread is not stopped */
int
canc
=
vlc_savecancel
();
if
(
!
p_sys
->
b_out_thread_running
||
p_sys
->
b_error
)
goto
end
;
vlc_mutex_unlock
(
&
p_sys
->
lock
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
/* Wait for an output buffer. This function returns when a new output
/* Wait for an output buffer. This function returns when a new output
* is available or if output is flushed. */
* is available or if output is flushed. */
i_index
=
p_sys
->
api
->
dequeue_out
(
p_sys
->
api
,
-
1
);
i_index
=
p_sys
->
api
->
dequeue_out
(
p_sys
->
api
,
-
1
);
vlc_mutex_lock
(
&
p_sys
->
lock
);
vlc_mutex_lock
(
&
p_sys
->
lock
);
/* Ignore dequeue_out errors caused by flush */
/* Ignore dequeue_out errors caused by flush */
...
@@ -1145,7 +1151,10 @@ static void *OutThread(void *data)
...
@@ -1145,7 +1151,10 @@ static void *OutThread(void *data)
/* Parse output format/buffers even when we are flushing */
/* Parse output format/buffers even when we are flushing */
if
(
i_index
!=
MC_API_INFO_OUTPUT_FORMAT_CHANGED
if
(
i_index
!=
MC_API_INFO_OUTPUT_FORMAT_CHANGED
&&
i_index
!=
MC_API_INFO_OUTPUT_BUFFERS_CHANGED
)
&&
i_index
!=
MC_API_INFO_OUTPUT_BUFFERS_CHANGED
)
goto
next
;
{
vlc_restorecancel
(
canc
);
continue
;
}
}
}
/* Process output returned by dequeue_out */
/* Process output returned by dequeue_out */
...
@@ -1164,7 +1173,8 @@ static void *OutThread(void *data)
...
@@ -1164,7 +1173,8 @@ static void *OutThread(void *data)
&
p_block
)
==
-
1
)
&
p_block
)
==
-
1
)
{
{
msg_Err
(
p_dec
,
"pf_process_output failed"
);
msg_Err
(
p_dec
,
"pf_process_output failed"
);
goto
end
;
vlc_restorecancel
(
canc
);
break
;
}
}
if
(
p_pic
)
if
(
p_pic
)
decoder_QueueVideo
(
p_dec
,
p_pic
);
decoder_QueueVideo
(
p_dec
,
p_pic
);
...
@@ -1173,24 +1183,26 @@ static void *OutThread(void *data)
...
@@ -1173,24 +1183,26 @@ static void *OutThread(void *data)
}
else
if
(
i_ret
!=
0
)
}
else
if
(
i_ret
!=
0
)
{
{
msg_Err
(
p_dec
,
"get_out failed"
);
msg_Err
(
p_dec
,
"get_out failed"
);
goto
end
;
vlc_restorecancel
(
canc
);
break
;
}
}
}
}
else
else
{
{
msg_Err
(
p_dec
,
"dequeue_out failed"
);
msg_Err
(
p_dec
,
"dequeue_out failed"
);
goto
end
;
vlc_restorecancel
(
canc
);
break
;
}
vlc_restorecancel
(
canc
);
}
}
next:
vlc_mutex_unlock
(
&
p_sys
->
lock
);
continue
;
end:
msg_Warn
(
p_dec
,
"OutThread stopped"
);
msg_Warn
(
p_dec
,
"OutThread stopped"
);
/* Signal DecoderFlush that the output thread aborted */
p_sys
->
b_error
=
true
;
p_sys
->
b_error
=
true
;
vlc_cond_signal
(
&
p_sys
->
dec_cond
);
vlc_cond_signal
(
&
p_sys
->
dec_cond
);
vlc_cleanup_pop
();
vlc_mutex_unlock
(
&
p_sys
->
lock
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
break
;
}
return
NULL
;
return
NULL
;
}
}
...
@@ -1253,7 +1265,7 @@ static int DecodeCommon(decoder_t *p_dec, block_t **pp_block)
...
@@ -1253,7 +1265,7 @@ static int DecodeCommon(decoder_t *p_dec, block_t **pp_block)
if
(
StartMediaCodec
(
p_dec
)
!=
VLC_SUCCESS
)
if
(
StartMediaCodec
(
p_dec
)
!=
VLC_SUCCESS
)
{
{
msg_Err
(
p_dec
,
"StartMediaCodec failed"
);
msg_Err
(
p_dec
,
"StartMediaCodec failed"
);
p_sys
->
b_error
=
true
;
AbortDecoderLocked
(
p_dec
)
;
goto
end
;
goto
end
;
}
}
}
}
...
@@ -1263,7 +1275,7 @@ static int DecodeCommon(decoder_t *p_dec, block_t **pp_block)
...
@@ -1263,7 +1275,7 @@ static int DecodeCommon(decoder_t *p_dec, block_t **pp_block)
{
{
if
(
i_ret
!=
0
)
if
(
i_ret
!=
0
)
{
{
p_sys
->
b_error
=
true
;
AbortDecoderLocked
(
p_dec
)
;
msg_Err
(
p_dec
,
"pf_on_new_block failed"
);
msg_Err
(
p_dec
,
"pf_on_new_block failed"
);
}
}
goto
end
;
goto
end
;
...
@@ -1324,7 +1336,7 @@ static int DecodeCommon(decoder_t *p_dec, block_t **pp_block)
...
@@ -1324,7 +1336,7 @@ static int DecodeCommon(decoder_t *p_dec, block_t **pp_block)
}
else
}
else
{
{
msg_Err
(
p_dec
,
"queue_in failed"
);
msg_Err
(
p_dec
,
"queue_in failed"
);
p_sys
->
b_error
=
true
;
AbortDecoderLocked
(
p_dec
)
;
goto
end
;
goto
end
;
}
}
}
}
...
@@ -1347,14 +1359,14 @@ static int DecodeCommon(decoder_t *p_dec, block_t **pp_block)
...
@@ -1347,14 +1359,14 @@ static int DecodeCommon(decoder_t *p_dec, block_t **pp_block)
else
else
{
{
msg_Err
(
p_dec
,
"dequeue_in timeout: no input available for 2secs"
);
msg_Err
(
p_dec
,
"dequeue_in timeout: no input available for 2secs"
);
p_sys
->
b_error
=
true
;
AbortDecoderLocked
(
p_dec
)
;
goto
end
;
goto
end
;
}
}
}
}
else
else
{
{
msg_Err
(
p_dec
,
"dequeue_in failed"
);
msg_Err
(
p_dec
,
"dequeue_in failed"
);
p_sys
->
b_error
=
true
;
AbortDecoderLocked
(
p_dec
)
;
goto
end
;
goto
end
;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment