From 652ef2b7fd53bbc5040b9288e2c6a03ef1934879 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 23 Feb 2017 20:40:16 -0800 Subject: Remove an unused function --- Alc/bformatdec.c | 5 ----- Alc/bformatdec.h | 1 - 2 files changed, 6 deletions(-) diff --git a/Alc/bformatdec.c b/Alc/bformatdec.c index 955b9e4a..a0aa4e44 100644 --- a/Alc/bformatdec.c +++ b/Alc/bformatdec.c @@ -221,11 +221,6 @@ int bformatdec_getOrder(const struct BFormatDec *dec) return 0; } -int bformatdec_isPeriphonic(const struct BFormatDec *dec) -{ - return dec->Periphonic; -} - void bformatdec_reset(BFormatDec *dec, const AmbDecConf *conf, ALsizei chancount, ALuint srate, const ALsizei chanmap[MAX_OUTPUT_CHANNELS]) { static const ALsizei map2DTo3D[MAX_AMBI2D_COEFFS] = { diff --git a/Alc/bformatdec.h b/Alc/bformatdec.h index 7447e382..889d59f4 100644 --- a/Alc/bformatdec.h +++ b/Alc/bformatdec.h @@ -29,7 +29,6 @@ struct AmbiUpsampler; struct BFormatDec *bformatdec_alloc(); void bformatdec_free(struct BFormatDec *dec); int bformatdec_getOrder(const struct BFormatDec *dec); -int bformatdec_isPeriphonic(const struct BFormatDec *dec); void bformatdec_reset(struct BFormatDec *dec, const struct AmbDecConf *conf, ALsizei chancount, ALuint srate, const ALsizei chanmap[MAX_OUTPUT_CHANNELS]); /* Decodes the ambisonic input to the given output channels. */ -- cgit v1.2.3