summaryrefslogtreecommitdiff
path: root/setedit/mp3/mpegsound/soundplayer.cc
blob: f8dfcde960830a38596188b6327b8b129d88e495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* 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....
}

int Soundplayer::getprocessed(void)
{
  return 0;
}
bool Soundplayer::resetsoundtype(void)
{
  return true;
}

int Soundplayer::getblocksize(void)
{
  return 1024; // Default value
}