/* MPEG/WAVE Sound library (C) 1997 by Jung woo-jae */ // Soundplayer.cc // Superclass of Rawplayer and Rawtofile // It's used for set player of Mpegtoraw & Wavetoraw #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "mpegsound.h" /*********************/ /* Soundplayer class */ /*********************/ Soundplayer::~Soundplayer() { // Nothing... } void Soundplayer::abort(void) { // Nothing.... } bool Soundplayer::resetsoundtype(void) { return true; } int Soundplayer::getblocksize(void) { return 1024; // Default value } int Soundplayer::fix_samplesize(void *buffer, int size) { buffer=buffer; return size; }