Skip to content
Snippets Groups Projects
Commit 3a4fd2fa authored by Mike Bradeen's avatar Mike Bradeen Committed by Asterisk Development Team
Browse files

format_sln: add .slin as supported file extension

Adds '.slin' to existing supported file extensions:
.sln and .raw

ASTERISK-30465

Change-Id: Ice848addc03a64c8404b87cb5d3b13399c57e496
(cherry picked from commit 8d2ffc8aa54315b937712bc725fd813a37e73158)
parent b376d16d
No related branches found
No related tags found
3 merge requests!138Merge branch asterisk-20.3.0 into devel properly,!123Merge asterisk '20.3.0' into devel,!118Draft: manager: AOC-S support for AOCMessage
Subject: format_sln
format_sln now recognizes '.slin' as a valid
file extension in addition to the existing
'.sln' and '.raw'.
......@@ -127,7 +127,7 @@ static off_t slinear_tell(struct ast_filestream *fs)
static struct ast_frame *slinear_read(struct ast_filestream *s, int *whennext){return generic_read(s, whennext, 320);}
static struct ast_format_def slin_f = {
.name = "sln",
.exts = "sln|raw",
.exts = "sln|slin|raw",
.write = slinear_write,
.seek = slinear_seek,
.trunc = slinear_trunc,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment