From 5ffbc15de7e0d70a020a46fb81a9a59615b48ab8 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Mon, 22 Sep 2008 22:49:00 +0000 Subject: [PATCH] Use the advertised header size in .au files instead of just assuming they are 24 bytes (the minimum). (closes issue #13450) Reported by: jamessan Patches: pcm-header.diff uploaded by jamessan (license 246) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@143903 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- formats/format_pcm.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/formats/format_pcm.c b/formats/format_pcm.c index 7b186e6021..a3deced7ae 100644 --- a/formats/format_pcm.c +++ b/formats/format_pcm.c @@ -284,9 +284,10 @@ static int check_header(FILE *f) if (magic != (uint32_t) AU_MAGIC) { ast_log(LOG_WARNING, "Bad magic: 0x%x\n", magic); } -/* hdr_size = ltohl(header[AU_HDR_HDR_SIZE_OFF]); - if (hdr_size < AU_HEADER_SIZE)*/ - hdr_size = AU_HEADER_SIZE; + hdr_size = ltohl(header[AU_HDR_HDR_SIZE_OFF]); + if (hdr_size < AU_HEADER_SIZE) { + hdr_size = AU_HEADER_SIZE; + } /* data_size = ltohl(header[AU_HDR_DATA_SIZE_OFF]); */ encoding = ltohl(header[AU_HDR_ENCODING_OFF]); if (encoding != AU_ENC_8BIT_ULAW) {