diff options
Diffstat (limited to 'src/inputPlugins/aac_plugin.c')
-rw-r--r-- | src/inputPlugins/aac_plugin.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/inputPlugins/aac_plugin.c b/src/inputPlugins/aac_plugin.c index 81e5d5656..2ca757392 100644 --- a/src/inputPlugins/aac_plugin.c +++ b/src/inputPlugins/aac_plugin.c @@ -396,8 +396,7 @@ static int aac_decode(char *path) bitRate, NULL); if (dc.command == DECODE_COMMAND_SEEK) { dc.seekError = 1; - dc.command = DECODE_COMMAND_NONE; - decoder_wakeup_player(); + dc_command_finished(); } else if (dc.command == DECODE_COMMAND_STOP) { eof = 1; break; @@ -415,8 +414,7 @@ static int aac_decode(char *path) if (dc.command == DECODE_COMMAND_SEEK) { dc.seekError = 1; - dc.command = DECODE_COMMAND_NONE; - decoder_wakeup_player(); + dc_command_finished(); } return 0; |