├── ACKNOWLEDGEMENTS ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── TODO ├── autogen.sh ├── config.h.in ├── configure.ac ├── ctxdata.pc.in ├── doc ├── Doxyfile.in └── Makefile.am ├── include ├── Makefile.am └── remix │ ├── Makefile.am │ ├── remix.h │ ├── remix_deck.h │ ├── remix_envelope.h │ ├── remix_meta.h │ ├── remix_plugin.h │ ├── remix_stream.h │ ├── remix_time.h │ └── remix_types.h ├── ltconfig ├── release_notes └── remix-0.2.4.txt ├── remix.pc.in ├── remix.spec.in ├── src ├── Makefile.am ├── ctxdata │ ├── Makefile.am │ ├── cd_list.c │ ├── cd_scalar.c │ ├── cd_set.c │ └── ctxdata.h ├── examples │ ├── 1052.wav │ ├── 909_cl.wav │ ├── Makefile.am │ ├── cd_list_test.c │ ├── noisedemo.c │ ├── sndfiledemo.c │ └── squaredemo.c ├── libremix │ ├── Makefile.am │ ├── remix_base.c │ ├── remix_channel.c │ ├── remix_channelset.c │ ├── remix_chunk.c │ ├── remix_compat.h │ ├── remix_context.c │ ├── remix_debug.c │ ├── remix_deck.c │ ├── remix_envelope.c │ ├── remix_error.c │ ├── remix_gain.c │ ├── remix_layer.c │ ├── remix_meta.c │ ├── remix_monitor.c │ ├── remix_null.c │ ├── remix_pcm.c │ ├── remix_plugin.c │ ├── remix_private.h │ ├── remix_sndfile.c │ ├── remix_sound.c │ ├── remix_squaretone.c │ ├── remix_stream.c │ ├── remix_time.c │ └── remix_track.c ├── plugins │ ├── Makefile.am │ ├── ladspa │ │ ├── Makefile.am │ │ ├── ladspa.h │ │ └── remix_ladspa.c │ └── noise │ │ ├── Makefile.am │ │ └── remix_noise.c └── tests │ ├── Makefile.am │ ├── noop.c │ ├── sndfiletest.c │ └── tests.h └── stamp-h.in /ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/config.h.in -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/configure.ac -------------------------------------------------------------------------------- /ctxdata.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/ctxdata.pc.in -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = remix 3 | -------------------------------------------------------------------------------- /include/remix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/include/remix/Makefile.am -------------------------------------------------------------------------------- /include/remix/remix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/include/remix/remix.h -------------------------------------------------------------------------------- /include/remix/remix_deck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/include/remix/remix_deck.h -------------------------------------------------------------------------------- /include/remix/remix_envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/include/remix/remix_envelope.h -------------------------------------------------------------------------------- /include/remix/remix_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/include/remix/remix_meta.h -------------------------------------------------------------------------------- /include/remix/remix_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/include/remix/remix_plugin.h -------------------------------------------------------------------------------- /include/remix/remix_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/include/remix/remix_stream.h -------------------------------------------------------------------------------- /include/remix/remix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/include/remix/remix_time.h -------------------------------------------------------------------------------- /include/remix/remix_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/include/remix/remix_types.h -------------------------------------------------------------------------------- /ltconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/ltconfig -------------------------------------------------------------------------------- /release_notes/remix-0.2.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/release_notes/remix-0.2.4.txt -------------------------------------------------------------------------------- /remix.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/remix.pc.in -------------------------------------------------------------------------------- /remix.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/remix.spec.in -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = ctxdata libremix plugins examples tests 3 | -------------------------------------------------------------------------------- /src/ctxdata/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/ctxdata/Makefile.am -------------------------------------------------------------------------------- /src/ctxdata/cd_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/ctxdata/cd_list.c -------------------------------------------------------------------------------- /src/ctxdata/cd_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/ctxdata/cd_scalar.c -------------------------------------------------------------------------------- /src/ctxdata/cd_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/ctxdata/cd_set.c -------------------------------------------------------------------------------- /src/ctxdata/ctxdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/ctxdata/ctxdata.h -------------------------------------------------------------------------------- /src/examples/1052.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/examples/1052.wav -------------------------------------------------------------------------------- /src/examples/909_cl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/examples/909_cl.wav -------------------------------------------------------------------------------- /src/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/examples/Makefile.am -------------------------------------------------------------------------------- /src/examples/cd_list_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/examples/cd_list_test.c -------------------------------------------------------------------------------- /src/examples/noisedemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/examples/noisedemo.c -------------------------------------------------------------------------------- /src/examples/sndfiledemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/examples/sndfiledemo.c -------------------------------------------------------------------------------- /src/examples/squaredemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/examples/squaredemo.c -------------------------------------------------------------------------------- /src/libremix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/Makefile.am -------------------------------------------------------------------------------- /src/libremix/remix_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_base.c -------------------------------------------------------------------------------- /src/libremix/remix_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_channel.c -------------------------------------------------------------------------------- /src/libremix/remix_channelset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_channelset.c -------------------------------------------------------------------------------- /src/libremix/remix_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_chunk.c -------------------------------------------------------------------------------- /src/libremix/remix_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_compat.h -------------------------------------------------------------------------------- /src/libremix/remix_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_context.c -------------------------------------------------------------------------------- /src/libremix/remix_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_debug.c -------------------------------------------------------------------------------- /src/libremix/remix_deck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_deck.c -------------------------------------------------------------------------------- /src/libremix/remix_envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_envelope.c -------------------------------------------------------------------------------- /src/libremix/remix_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_error.c -------------------------------------------------------------------------------- /src/libremix/remix_gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_gain.c -------------------------------------------------------------------------------- /src/libremix/remix_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_layer.c -------------------------------------------------------------------------------- /src/libremix/remix_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_meta.c -------------------------------------------------------------------------------- /src/libremix/remix_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_monitor.c -------------------------------------------------------------------------------- /src/libremix/remix_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_null.c -------------------------------------------------------------------------------- /src/libremix/remix_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_pcm.c -------------------------------------------------------------------------------- /src/libremix/remix_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_plugin.c -------------------------------------------------------------------------------- /src/libremix/remix_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_private.h -------------------------------------------------------------------------------- /src/libremix/remix_sndfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_sndfile.c -------------------------------------------------------------------------------- /src/libremix/remix_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_sound.c -------------------------------------------------------------------------------- /src/libremix/remix_squaretone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_squaretone.c -------------------------------------------------------------------------------- /src/libremix/remix_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_stream.c -------------------------------------------------------------------------------- /src/libremix/remix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_time.c -------------------------------------------------------------------------------- /src/libremix/remix_track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/libremix/remix_track.c -------------------------------------------------------------------------------- /src/plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/plugins/Makefile.am -------------------------------------------------------------------------------- /src/plugins/ladspa/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/plugins/ladspa/Makefile.am -------------------------------------------------------------------------------- /src/plugins/ladspa/ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/plugins/ladspa/ladspa.h -------------------------------------------------------------------------------- /src/plugins/ladspa/remix_ladspa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/plugins/ladspa/remix_ladspa.c -------------------------------------------------------------------------------- /src/plugins/noise/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/plugins/noise/Makefile.am -------------------------------------------------------------------------------- /src/plugins/noise/remix_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/plugins/noise/remix_noise.c -------------------------------------------------------------------------------- /src/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/tests/Makefile.am -------------------------------------------------------------------------------- /src/tests/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/tests/noop.c -------------------------------------------------------------------------------- /src/tests/sndfiletest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/tests/sndfiletest.c -------------------------------------------------------------------------------- /src/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfish/remix/HEAD/src/tests/tests.h -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | --------------------------------------------------------------------------------