~ubuntu-branches/ubuntu/raring/ecasound2.2/raring

« back to all changes in this revision

Viewing changes to libecasound/audioio-mikmod.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2009-05-06 15:18:46 UTC
  • mfrom: (5.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090506151846-dvp8mirqmxwhve66
Tags: 2.6.0-1
* New upstream release
- 08_fix_header_install: remove
- 07_configure_in_maintainer_mode: update
- do not install manpage copies, and just install symlinks for
  ecatools.1
* Build-Depend on texlive-latex-recommended too for ecrm1000 font.
  (closes: #526535)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// ------------------------------------------------------------------------
2
2
// audioio-mikmod.cpp: Interface class for MikMod input. Uses FIFO pipes.
3
 
// Copyright (C) 1999-2000,2004-2006,2008 Kai Vehmanen
 
3
// Copyright (C) 1999-2000,2004-2006,2008,2009 Kai Vehmanen
4
4
//
5
5
// This program is free software; you can redistribute it and/or modify
6
6
// it under the terms of the GNU General Public License as published by
36
36
}
37
37
 
38
38
MIKMOD_INTERFACE::MIKMOD_INTERFACE(const std::string& name)
 
39
  : triggered_rep(false),
 
40
    finished_rep(false)
39
41
{
40
 
  finished_rep = false;
41
42
}
42
43
 
43
44
MIKMOD_INTERFACE::~MIKMOD_INTERFACE(void) 
51
52
void MIKMOD_INTERFACE::open(void) throw (AUDIO_IO::SETUP_ERROR &)
52
53
{
53
54
  std::string urlprefix;
 
55
 
54
56
  triggered_rep = false;
 
57
  finished_rep = false;
55
58
 
56
59
  string real_filename = label();
57
60
  if (real_filename == "mikmod") {