shithub: sox

Download patch

ref: dbe3e7061437f6e8e10fb0f00d49e52bad3d632a
parent: 3b9dabef120260811c4a143312c7a59d54da9eb8
author: robs <robs>
date: Mon Nov 27 09:37:02 EST 2006

Stop crash when alsa is used as file extension

--- a/src/alsa.c
+++ b/src/alsa.c
@@ -637,7 +637,7 @@
 static st_format_t st_alsa_format = {
    alsanames,
    NULL,
-   ST_FILE_STEREO | ST_FILE_NOSTDIO,
+   ST_FILE_STEREO | ST_FILE_NOSTDIO | ST_FILE_NOFEXT,
    st_alsastartread,
    st_alsaread,
    st_alsastopread,
--- a/src/st.h
+++ b/src/st.h
@@ -254,6 +254,7 @@
 #define ST_FILE_INSTR   4  /* does file format support instrument specs? */
 #define ST_FILE_SEEK    8  /* does file format support seeking? */
 #define ST_FILE_NOSTDIO 16 /* does not use stdio routines */
+#define ST_FILE_NOFEXT  32 /* does not use file extensions */
 
 /* Size field */
 #define ST_SIZE_BYTE    1
@@ -352,7 +353,7 @@
 int st_geteffect(eff_t, const char *);
 int st_checkeffect(const char *);
 int st_updateeffect(eff_t, const st_signalinfo_t *in, const st_signalinfo_t *out, int);
-int st_gettype(ft_t);
+int st_gettype(ft_t, bool);
 ft_t st_initformat(void);
 int st_parsesamples(st_rate_t rate, const char *str, st_size_t *samples, char def);