[svn-commits] newtonr: branch 1.8 r407511 - /branches/1.8/formats/format_wav.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Feb 5 16:58:18 CST 2014


Author: newtonr
Date: Wed Feb  5 16:58:08 2014
New Revision: 407511

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=407511
Log:
formats/format_wav: enhancing log message "Not a wav file" to be clear on what is supported

Modifying the log message to be more specific as to what is supported. Specifically it seems format_wav supports only PCM encoded versions with a lower-case '.wav' extension.

(closes issues ASTERISK-22310)
Reported by: Jim Credland
Review: https://reviewboard.asterisk.org/r/3188/

Modified:
    branches/1.8/formats/format_wav.c

Modified: branches/1.8/formats/format_wav.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/formats/format_wav.c?view=diff&rev=407511&r1=407510&r2=407511
==============================================================================
--- branches/1.8/formats/format_wav.c (original)
+++ branches/1.8/formats/format_wav.c Wed Feb  5 16:58:08 2014
@@ -91,7 +91,7 @@
 		return -1;
 	}
 	if (ltohs(format) != 1) {
-		ast_log(LOG_WARNING, "Not a wav file %d\n", ltohs(format));
+		ast_log(LOG_WARNING, "Not a supported wav file format (%d). Only PCM encoded, 16 bit, mono, 8kHz files are supported with a lowercase '.wav' extension.\n", ltohs(format));
 		return -1;
 	}
 	if (fread(&chans, 1, 2, f) != 2) {




More information about the svn-commits mailing list