diff options
Diffstat (limited to '')
-rw-r--r-- | src/decoder_control.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/decoder_control.h b/src/decoder_control.h index fafc6dea3..13b894685 100644 --- a/src/decoder_control.h +++ b/src/decoder_control.h @@ -105,11 +105,12 @@ struct decoder_control { char *mixramp_prev_end; }; -void -dc_init(struct decoder_control *dc, struct player_control *pc); +G_GNUC_MALLOC +struct decoder_control * +dc_new(struct player_control *pc); void -dc_deinit(struct decoder_control *dc); +dc_free(struct decoder_control *dc); /** * Locks the #decoder_control object. |