├── README ├── reaper-plugins ├── localize-import.h ├── localize.h ├── metadata.h ├── pooled_pcmsource_impl.h ├── reaper_csurf │ ├── csurf.h │ ├── csurf_01X.cpp │ ├── csurf_alphatrack.cpp │ ├── csurf_babyhui.cpp │ ├── csurf_bcf2000.cpp │ ├── csurf_faderport.cpp │ ├── csurf_faderport2.cpp │ ├── csurf_main.cpp │ ├── csurf_mcu.cpp │ ├── csurf_osc.cpp │ ├── csurf_tranzport.cpp │ ├── csurf_www.cpp │ ├── osc.cpp │ ├── osc.h │ ├── osc_message.cpp │ ├── reaper_csurf-x64.vcproj │ ├── reaper_csurf.vcxproj │ ├── reaper_csurf.vcxproj.filters │ ├── res.rc │ └── resource.h ├── reaper_mp3 │ ├── LICENSE │ ├── impegdecode.h │ ├── main.h │ ├── mp3_index.cpp │ ├── mp3_index.h │ ├── mp3dec.cpp │ ├── mp3dec.h │ ├── mpglib │ │ ├── README │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── common.cpp │ │ ├── common.h │ │ ├── dct64_asm.nas │ │ ├── dct64_i386.cpp │ │ ├── dct64_i386.h │ │ ├── decode_i386.cpp │ │ ├── decode_i386.h │ │ ├── huffman.h │ │ ├── interface.cpp │ │ ├── l2tables.h │ │ ├── layer2.cpp │ │ ├── layer2.h │ │ ├── layer3.cpp │ │ ├── layer3.h │ │ ├── mpglib.h │ │ ├── tabinit.cpp │ │ └── tabinit.h │ ├── pcmsink_mp3lame.cpp │ ├── pcmsrc_mp3dec.cpp │ ├── reaper_mp3dec-x64.vcproj │ ├── reaper_mp3dec.vcxproj │ ├── reaper_mp3dec.vcxproj.filters │ ├── res.rc │ └── resource.h ├── reaper_plugin.h └── tag.h └── sdk ├── LICENSE ├── example_m3u └── import_m3u.cpp ├── example_raw ├── pcmsink_raw.cpp ├── pcmsrc_raw.cpp ├── res.rc └── resource.h ├── localize-import.h ├── reaper_plugin.h ├── reaper_plugin_functions.h ├── reaper_plugin_fx_embed.h ├── reaper_vst3_interfaces.h ├── video_frame.h └── video_processor.h /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/README -------------------------------------------------------------------------------- /reaper-plugins/localize-import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/localize-import.h -------------------------------------------------------------------------------- /reaper-plugins/localize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/localize.h -------------------------------------------------------------------------------- /reaper-plugins/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/metadata.h -------------------------------------------------------------------------------- /reaper-plugins/pooled_pcmsource_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/pooled_pcmsource_impl.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_01X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_01X.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_alphatrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_alphatrack.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_babyhui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_babyhui.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_bcf2000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_bcf2000.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_faderport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_faderport.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_faderport2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_faderport2.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_main.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_mcu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_mcu.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_osc.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_tranzport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_tranzport.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/csurf_www.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/csurf_www.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/osc.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/osc.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/osc_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/osc_message.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/reaper_csurf-x64.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/reaper_csurf-x64.vcproj -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/reaper_csurf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/reaper_csurf.vcxproj -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/reaper_csurf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/reaper_csurf.vcxproj.filters -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/res.rc -------------------------------------------------------------------------------- /reaper-plugins/reaper_csurf/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_csurf/resource.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/LICENSE -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/impegdecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/impegdecode.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/main.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mp3_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mp3_index.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mp3_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mp3_index.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mp3dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mp3dec.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mp3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mp3dec.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/README -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/StdAfx.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/StdAfx.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/common.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/common.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/dct64_asm.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/dct64_asm.nas -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/dct64_i386.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/dct64_i386.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/dct64_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/dct64_i386.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/decode_i386.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/decode_i386.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/decode_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/decode_i386.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/huffman.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/interface.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/l2tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/l2tables.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/layer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/layer2.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/layer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/layer2.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/layer3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/layer3.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/layer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/layer3.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/mpglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/mpglib.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/tabinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/tabinit.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/mpglib/tabinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/mpglib/tabinit.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/pcmsink_mp3lame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/pcmsink_mp3lame.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/pcmsrc_mp3dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/pcmsrc_mp3dec.cpp -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/reaper_mp3dec-x64.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/reaper_mp3dec-x64.vcproj -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/reaper_mp3dec.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/reaper_mp3dec.vcxproj -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/reaper_mp3dec.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/reaper_mp3dec.vcxproj.filters -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/res.rc -------------------------------------------------------------------------------- /reaper-plugins/reaper_mp3/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_mp3/resource.h -------------------------------------------------------------------------------- /reaper-plugins/reaper_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/reaper_plugin.h -------------------------------------------------------------------------------- /reaper-plugins/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/reaper-plugins/tag.h -------------------------------------------------------------------------------- /sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/LICENSE -------------------------------------------------------------------------------- /sdk/example_m3u/import_m3u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/example_m3u/import_m3u.cpp -------------------------------------------------------------------------------- /sdk/example_raw/pcmsink_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/example_raw/pcmsink_raw.cpp -------------------------------------------------------------------------------- /sdk/example_raw/pcmsrc_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/example_raw/pcmsrc_raw.cpp -------------------------------------------------------------------------------- /sdk/example_raw/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/example_raw/res.rc -------------------------------------------------------------------------------- /sdk/example_raw/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/example_raw/resource.h -------------------------------------------------------------------------------- /sdk/localize-import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/localize-import.h -------------------------------------------------------------------------------- /sdk/reaper_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/reaper_plugin.h -------------------------------------------------------------------------------- /sdk/reaper_plugin_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/reaper_plugin_functions.h -------------------------------------------------------------------------------- /sdk/reaper_plugin_fx_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/reaper_plugin_fx_embed.h -------------------------------------------------------------------------------- /sdk/reaper_vst3_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/reaper_vst3_interfaces.h -------------------------------------------------------------------------------- /sdk/video_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/video_frame.h -------------------------------------------------------------------------------- /sdk/video_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/reaper-sdk/HEAD/sdk/video_processor.h --------------------------------------------------------------------------------