diff --git a/Makefile.common b/Makefile.common index 8a262bfe53..d5a2c05663 100644 --- a/Makefile.common +++ b/Makefile.common @@ -306,6 +306,7 @@ OBJ += \ $(LIBRETRO_COMM_DIR)/file/file_path_io.o \ file_path_special.o \ $(LIBRETRO_COMM_DIR)/hash/lrc_hash.o \ + audio/audio_driver.o \ input/input_driver.o \ input/common/input_hid_common.o \ led/led_driver.o \ diff --git a/audio/audio_driver.c b/audio/audio_driver.c new file mode 100644 index 0000000000..0ecac81e4b --- /dev/null +++ b/audio/audio_driver.c @@ -0,0 +1,1789 @@ +/** + * RetroArch - A frontend for libretro. + * Copyright (C) 2010-2014 - Hans-Kristian Arntzen + * Copyright (C) 2011-2017 - Daniel De Matteis + * + * RetroArch is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) + * any later version. + * + * RetroArch is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along + * with RetroArch. If not, see . + **/ + +#include + +#include "audio_driver.h" + +#include +#include +#include +#include +#include +#include