~ubuntu-branches/ubuntu/edgy/muse/edgy

« back to all changes in this revision

Viewing changes to muse/node.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2006-01-03 20:18:47 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060103201847-r9poqt6y5gu9hnji
Tags: 0.7.1+0.7.2pre5-1
* New upstream version.
* Updated patches:
  + [20_allow_system_timer]
    Rediffed for 0.7.2pre5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//=========================================================
2
2
//  MusE
3
3
//  Linux Music Editor
4
 
//  $Id: node.cpp,v 1.36.2.3 2005/12/13 20:56:14 spamatica Exp $
 
4
//  $Id: node.cpp,v 1.36.2.4 2005/12/28 22:17:55 spamatica Exp $
5
5
//
6
6
//  (C) Copyright 2000-2004 Werner Schweer (ws@seh.de)
7
7
//=========================================================
817
817
Fifo::Fifo()
818
818
      {
819
819
      muse_atomic_init(&count);
820
 
      nbuffer = FIFO_BUFFER;
 
820
      //nbuffer = FIFO_BUFFER;
 
821
      nbuffer = fifoLength;
821
822
      buffer  = new FifoBuffer*[nbuffer];
822
823
      for (int i = 0; i < nbuffer; ++i)
823
824
            buffer[i]  = new FifoBuffer;