diff options
Diffstat (limited to '')
-rw-r--r-- | src/decoder_control.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/decoder_control.c b/src/decoder_control.c index 49842b445..a0e3b6143 100644 --- a/src/decoder_control.c +++ b/src/decoder_control.c @@ -20,6 +20,14 @@ struct decoder_control dc; +void dc_init(void) +{ + notify_init(&dc.notify); + dc.state = DECODE_STATE_STOP; + dc.command = DECODE_COMMAND_NONE; + dc.error = DECODE_ERROR_NOERROR; +} + void dc_command_wait(Notify *notify) { while (dc.command != DECODE_COMMAND_NONE) { |