audio.h | audio.h | |||
---|---|---|---|---|
skipping to change at line 19 | skipping to change at line 19 | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | |||
* | * | |||
* $Id: audio.h,v 1.7 2000/04/22 04:36:50 rob Exp $ | * $Id: audio.h,v 1.9 2000/05/09 17:36:27 rob Exp $ | |||
*/ | */ | |||
# ifndef AUDIO_H | # ifndef AUDIO_H | |||
# define AUDIO_H | # define AUDIO_H | |||
# include "libmad.h" | # include "libmad.h" | |||
# define MAX_NSAMPLES 1152 | # define MAX_NSAMPLES 1152 | |||
enum { | enum { | |||
skipping to change at line 69 | skipping to change at line 69 | |||
}; | }; | |||
extern char const *audio_error; | extern char const *audio_error; | |||
typedef int (*audio_ctlfunc_t)(union audio_control *); | typedef int (*audio_ctlfunc_t)(union audio_control *); | |||
audio_ctlfunc_t audio_output(char const **); | audio_ctlfunc_t audio_output(char const **); | |||
int audio_oss(union audio_control *); | int audio_oss(union audio_control *); | |||
int audio_sun(union audio_control *); | int audio_sun(union audio_control *); | |||
int audio_win32(union audio_control *); | ||||
int audio_wav(union audio_control *); | int audio_wav(union audio_control *); | |||
int audio_raw(union audio_control *); | int audio_raw(union audio_control *); | |||
int audio_hex(union audio_control *); | int audio_hex(union audio_control *); | |||
int audio_null(union audio_control *); | int audio_null(union audio_control *); | |||
# endif | # endif | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added | |||
decoder.h | decoder.h | |||
---|---|---|---|---|
skipping to change at line 19 | skipping to change at line 19 | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | |||
* | * | |||
* $Id: decoder.h,v 1.2 2000/03/19 06:43:38 rob Exp $ | * $Id: decoder.h,v 1.3 2000/05/09 17:36:27 rob Exp $ | |||
*/ | */ | |||
# ifndef DECODER_H | # ifndef DECODER_H | |||
# define DECODER_H | # define DECODER_H | |||
# include "stream.h" | # include "stream.h" | |||
# include "frame.h" | # include "frame.h" | |||
# include "synth.h" | # include "synth.h" | |||
struct mad_decoder { | struct mad_decoder { | |||
int mode; | int mode; | |||
struct { | struct { | |||
int mode; | ||||
int pid; | int pid; | |||
int in; | int in; | |||
int out; | int out; | |||
} async; | } async; | |||
struct { | struct { | |||
struct mad_stream stream; | struct mad_stream stream; | |||
struct mad_frame frame; | struct mad_frame frame; | |||
struct mad_synth synth; | struct mad_synth synth; | |||
} *sync; | } *sync; | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 1 lines changed or added | |||
libmad.h | libmad.h | |||
---|---|---|---|---|
skipping to change at line 19 | skipping to change at line 19 | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | |||
* | * | |||
* Id: version.h,v 1.13 2000/03/20 03:43:04 rob Exp | * Id: version.h,v 1.15 2000/05/06 22:31:23 rob Exp | |||
*/ | */ | |||
# define MAD_VERSION "0.10.2 (beta)" | # define MAD_VERSION "0.10.3 (beta)" | |||
# define MAD_PUBLISHYEAR "2000" | # define MAD_PUBLISHYEAR "2000" | |||
# define MAD_AUTHOR "Robert Leslie" | # define MAD_AUTHOR "Robert Leslie" | |||
# define MAD_EMAIL "rob@mars.org" | # define MAD_EMAIL "rob@mars.org" | |||
extern char const mad_version[]; | extern char const mad_version[]; | |||
extern char const mad_copyright[]; | extern char const mad_copyright[]; | |||
extern char const mad_author[]; | extern char const mad_author[]; | |||
extern char const mad_license[]; | extern char const mad_license[]; | |||
/* | /* | |||
skipping to change at line 554 | skipping to change at line 554 | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | |||
* | * | |||
* Id: decoder.h,v 1.2 2000/03/19 06:43:38 rob Exp | * Id: decoder.h,v 1.3 2000/05/09 17:36:27 rob Exp | |||
*/ | */ | |||
# ifndef DECODER_H | # ifndef DECODER_H | |||
# define DECODER_H | # define DECODER_H | |||
struct mad_decoder { | struct mad_decoder { | |||
int mode; | int mode; | |||
struct { | struct { | |||
int mode; | ||||
int pid; | int pid; | |||
int in; | int in; | |||
int out; | int out; | |||
} async; | } async; | |||
struct { | struct { | |||
struct mad_stream stream; | struct mad_stream stream; | |||
struct mad_frame frame; | struct mad_frame frame; | |||
struct mad_synth synth; | struct mad_synth synth; | |||
} *sync; | } *sync; | |||
End of changes. 4 change blocks. | ||||
4 lines changed or deleted | 3 lines changed or added | |||
version.h | version.h | |||
---|---|---|---|---|
skipping to change at line 19 | skipping to change at line 19 | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | |||
* | * | |||
* $Id: version.h,v 1.14 2000/05/06 02:33:08 rob Exp $ | * $Id: version.h,v 1.15 2000/05/06 22:31:23 rob Exp $ | |||
*/ | */ | |||
# define MAD_VERSION "0.10.2 (beta)" | # define MAD_VERSION "0.10.3 (beta)" | |||
# define MAD_PUBLISHYEAR "2000" | # define MAD_PUBLISHYEAR "2000" | |||
# define MAD_AUTHOR "Robert Leslie" | # define MAD_AUTHOR "Robert Leslie" | |||
# define MAD_EMAIL "rob@mars.org" | # define MAD_EMAIL "rob@mars.org" | |||
extern char const mad_version[]; | extern char const mad_version[]; | |||
extern char const mad_copyright[]; | extern char const mad_copyright[]; | |||
extern char const mad_author[]; | extern char const mad_author[]; | |||
extern char const mad_license[]; | extern char const mad_license[]; | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||