diff options
Diffstat (limited to '')
-rw-r--r-- | src/inputPlugins/aac_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/aac_plugin.c b/src/inputPlugins/aac_plugin.c index 29cb23db0..b3c72f5f1 100644 --- a/src/inputPlugins/aac_plugin.c +++ b/src/inputPlugins/aac_plugin.c @@ -391,7 +391,7 @@ static int aac_decode(struct decoder * mpd_decoder, char *path) bitRate, NULL); if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK) { dc.seekError = 1; - dc_command_finished(); + decoder_command_finished(decoder); } else if (decoder_get_command(decoder) == DECODE_COMMAND_STOP) break; } @@ -407,7 +407,7 @@ static int aac_decode(struct decoder * mpd_decoder, char *path) if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK) { dc.seekError = 1; - dc_command_finished(); + decoder_command_finished(decoder); } return 0; |