Mercurial > audlegacy-plugins
view src/modplug/archive/arch_raw.cxx @ 3198:83b1a4e5f453
alsa-ng: Keep mixer open even when playback stopped.
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Wed, 22 Jul 2009 16:42:16 -0400 |
parents | be86c72a06c9 |
children |
line wrap: on
line source
/* Modplug XMMS Plugin * Authors: Kenton Varda <temporal@gauge3d.org> * * This source code is public domain. */ //open() #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> //mmap() #include <unistd.h> #include <sys/mman.h> #include <cstdlib> #include "arch_raw.h" arch_Raw::arch_Raw(const string& aFileName) { mFileDesc = aud_vfs_fopen(aFileName.c_str(), "rb"); //open and mmap the file if(mFileDesc == NULL) { mSize = 0; return; } aud_vfs_fseek(mFileDesc, 0, SEEK_END); mSize = aud_vfs_ftell(mFileDesc); aud_vfs_fseek(mFileDesc, 0, SEEK_SET); mMap = malloc(mSize); aud_vfs_fread(mMap, 1, mSize, mFileDesc); } arch_Raw::~arch_Raw() { if(mSize != 0) { free(mMap); aud_vfs_fclose(mFileDesc); } } bool arch_Raw::ContainsMod(const string& aFileName) { return IsOurFile(aFileName); }