mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-22 03:40:30 +00:00
Video dec.: make msg_queue unbounded
Make msg_queue unbounded to prevent a deadlock (fec and decompress is bounded to 1, msg_queue may contain already a reconfiguration message).
This commit is contained in:
@@ -344,7 +344,7 @@ struct state_video_decoder
|
||||
long int last_buffer_number = -1; ///< last received buffer ID
|
||||
timed_message<LOG_LEVEL_WARNING> slow_msg; ///< shows warning ony in certain interval
|
||||
|
||||
synchronized_queue<main_msg_reconfigure *> msg_queue;
|
||||
synchronized_queue<main_msg_reconfigure *, -1> msg_queue;
|
||||
|
||||
const struct openssl_decrypt_info *dec_funcs = NULL; ///< decrypt state
|
||||
struct openssl_decrypt *decrypt = NULL; ///< decrypt state
|
||||
|
||||
Reference in New Issue
Block a user