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

« back to all changes in this revision

Viewing changes to libecasound/audioio-timidity.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-timidity.cpp: Interface class for Timidity++ input.
3
 
// Copyright (C) 2000,2002,2004-2006,2008 Kai Vehmanen
 
3
// Copyright (C) 2000,2002,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
31
31
void TIMIDITY_INTERFACE::set_timidity_cmd(const std::string& value) { TIMIDITY_INTERFACE::default_timidity_cmd = value; }
32
32
 
33
33
TIMIDITY_INTERFACE::TIMIDITY_INTERFACE(const std::string& name)
 
34
  : triggered_rep(false),
 
35
    finished_rep(false)
34
36
{
35
 
  finished_rep = false;
36
37
}
37
38
 
38
39
TIMIDITY_INTERFACE::~TIMIDITY_INTERFACE(void)
65
66
  set_channels(2);
66
67
 
67
68
  triggered_rep = false;
 
69
  finished_rep = false;
68
70
 
69
71
  AUDIO_IO::open();
70
72
}