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

« back to all changes in this revision

Viewing changes to libecasound/eca-session.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2008-09-26 09:58:52 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080926095852-k3v9ewhmxpaltusw
Tags: 2.5.2-3
yodl 2.13.1 removed --unique-output option. Remove --unique-output
accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
        delete comline_setup;
121
121
      }
122
122
      else if (selected_chainsetup_repp->is_valid() != true) {
123
 
        ECA_LOG_MSG(ECA_LOGGER::info, "Note! Unable to create a valid chainsetup from the command-line arguments.");
 
123
        ECA_LOG_MSG(ECA_LOGGER::info, "NOTE: Unable to create a valid chainsetup from the command-line arguments.");
124
124
      }
125
125
    }
126
126
  }
181
181
  }
182
182
 
183
183
  // --------
184
 
  DBC_ENSURE(selected_chainsetup_repp != 0 &&
185
 
             selected_chainsetup_repp->name() == name ||
 
184
  DBC_ENSURE((selected_chainsetup_repp != 0 &&
 
185
              selected_chainsetup_repp->name() == name) ||
186
186
             selected_chainsetup_repp == 0);
187
187
  // --------
188
188
}
345
345
  }
346
346
  
347
347
  // --------
348
 
  DBC_ENSURE(selected_chainsetup_repp != 0 &&
349
 
             selected_chainsetup_repp->filename() == filename || 
 
348
  DBC_ENSURE((selected_chainsetup_repp != 0 &&
 
349
              selected_chainsetup_repp->filename() == filename) || 
350
350
             selected_chainsetup_repp == 0);
351
351
  // --------
352
352
}
457
457
      /* hack1: options ending with .ecs as "-s:file.ecs" */
458
458
      string::size_type pos = p->find(".ecs");
459
459
      if (pos + 4 == p->size()) {
460
 
        ECA_LOG_MSG(ECA_LOGGER::info, "Note! Interpreting option " +
 
460
        ECA_LOG_MSG(ECA_LOGGER::info, "NOTE: Interpreting option " +
461
461
                    *p +
462
462
                    " as -s:" +
463
463
                    *p +