summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-19 20:26:34 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-19 20:26:34 +0000
commit0ded97cff20d46034242b757d54aaec27f599984 (patch)
treefdd82aea75c083736ee3b9717841c4e77ad3ac5a /libmpcodecs
parentf76a283e997702358c688c1e605871243f0ca055 (diff)
downloadmpv-0ded97cff20d46034242b757d54aaec27f599984.tar.bz2
mpv-0ded97cff20d46034242b757d54aaec27f599984.tar.xz
Use free instead of speex_free - since speex_free does not appear in the
headers it probably is for internal use only. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17430 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/ad_speex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/ad_speex.c b/libmpcodecs/ad_speex.c
index 284be899de..9fb512547a 100644
--- a/libmpcodecs/ad_speex.c
+++ b/libmpcodecs/ad_speex.c
@@ -74,7 +74,7 @@ static void uninit(sh_audio_t *sh) {
speex_bits_destroy(&ctx->bits);
speex_decoder_destroy(ctx->dec_context);
if (ctx->hdr)
- speex_free(ctx->hdr);
+ free(ctx->hdr);
free(ctx);
}
ctx = NULL;