From b77e62260aa1f3d36d742d947610c13f235bb67a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 10 Jan 2011 20:46:04 +0100 Subject: decoder_control: replace dc_init() with dc_new() dc_new() allocates the object and returns it. dc_free() frees it (replaces dc_deinit()). --- src/decoder_control.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/decoder_control.h') 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. -- cgit v1.2.3