diff options
author | Chris Robinson <[email protected]> | 2015-05-18 16:39:44 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-05-18 16:39:44 -0700 |
commit | 9f49ac0fda04cc4bdc9e47a0d3c026722283c3a4 (patch) | |
tree | a5654bd758c2e7de5b58c50a8147541505f1b7bb /Alc/backends/pulseaudio.c | |
parent | 9479ea656bd4c7d3059b63405237829296776c10 (diff) |
Add a macro to simplify allocating and constructing an object
Diffstat (limited to 'Alc/backends/pulseaudio.c')
-rw-r--r-- | Alc/backends/pulseaudio.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/Alc/backends/pulseaudio.c b/Alc/backends/pulseaudio.c index f8761c91..b8a0b0a1 100644 --- a/Alc/backends/pulseaudio.c +++ b/Alc/backends/pulseaudio.c @@ -1689,25 +1689,15 @@ static ALCbackend* ALCpulseBackendFactory_createBackend(ALCpulseBackendFactory* if(type == ALCbackend_Playback) { ALCpulsePlayback *backend; - - backend = ALCpulsePlayback_New(sizeof(*backend)); + NEW_OBJ(backend, ALCpulsePlayback)(device); if(!backend) return NULL; - memset(backend, 0, sizeof(*backend)); - - ALCpulsePlayback_Construct(backend, device); - return STATIC_CAST(ALCbackend, backend); } if(type == ALCbackend_Capture) { ALCpulseCapture *backend; - - backend = ALCpulseCapture_New(sizeof(*backend)); + NEW_OBJ(backend, ALCpulseCapture)(device); if(!backend) return NULL; - memset(backend, 0, sizeof(*backend)); - - ALCpulseCapture_Construct(backend, device); - return STATIC_CAST(ALCbackend, backend); } |