mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
3bfcc5c09c
spc_amp from a x.4 fixed point number to a normal float. - Switched SPC playback from the external SNESAPU.DLL to Blargg's LGPL snes_spc library. I've compiled it with the fast DSP rather than the highly accurate one, since I didn't notice a meaningful difference between the two in my limited testing. In short: SPC playback is now built in to ZDoom. You don't need to download anything extra to make it work, and it also works on Linux as well as Windows (though building with Linux is currently untested). - Fixed: Stereo separation was calculated very wrongly when in 2D sound mode. SVN r794 (trunk)
57 lines
1.6 KiB
C
57 lines
1.6 KiB
C
#include "demo_util.h"
|
|
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
/* Copyright (C) 2007 Shay Green. This module is free software; you
|
|
can redistribute it and/or modify it under the terms of the GNU Lesser
|
|
General Public License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version. This
|
|
module 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 Lesser General Public License for more
|
|
details. You should have received a copy of the GNU Lesser General Public
|
|
License along with this module; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
|
|
|
|
unsigned char* load_file( const char* path, long* size_out )
|
|
{
|
|
size_t size;
|
|
unsigned char* data;
|
|
|
|
FILE* in = fopen( path, "rb" );
|
|
if ( !in ) error( "Couldn't open file" );
|
|
|
|
fseek( in, 0, SEEK_END );
|
|
size = ftell( in );
|
|
if ( size_out )
|
|
*size_out = size;
|
|
rewind( in );
|
|
|
|
data = (unsigned char*) malloc( size );
|
|
if ( !data ) error( "Out of memory" );
|
|
|
|
if ( fread( data, 1, size, in ) < size ) error( "Couldn't read file" );
|
|
fclose( in );
|
|
|
|
return data;
|
|
}
|
|
|
|
void write_file( const char* path, void const* in, long size )
|
|
{
|
|
FILE* out = fopen( path, "wb" );
|
|
if ( !out ) error( "Couldn't create file" );
|
|
if ( (long) fwrite( in, 1, size, out ) < size ) error( "Couldn't write file" );
|
|
fclose( out );
|
|
}
|
|
|
|
void error( const char* str )
|
|
{
|
|
if ( str )
|
|
{
|
|
fprintf( stderr, "Error: %s\n", str );
|
|
exit( EXIT_FAILURE );
|
|
}
|
|
}
|