~ubuntu-branches/ubuntu/quantal/jackd2/quantal

« back to all changes in this revision

Viewing changes to common/netjack.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler, Adrian Knoth, Reinhard Tartler, Jonas Smedegaard
  • Date: 2010-06-19 18:54:29 UTC
  • Revision ID: james.westby@ubuntu.com-20100619185429-zhbhh0mqvukgzx0l
Tags: 1.9.5~dfsg-15
[ Adrian Knoth ]
* Also provide the shlibs file for libjack-jackd2-0
* Fix FTBFS on sparc64 (Closes: #586257)

[ Reinhard Tartler ]
* jackd must not be a virtual package, use 'jack-daemon' for that
* add breaks/replaces on old libjack0
* change shlibsfile to prefer jackd2's libjack
* use conflicts instead of breaks. libjack-jackd2-0 has file conflicts
  with libjack0 and will keep it

[ Jonas Smedegaard ]
* Update control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
564
564
    netj->resample_factor = resample_factor;
565
565
    netj->resample_factor_up = resample_factor_up;
566
566
 
 
567
    netj->jitter_val = jitter_val;
567
568
 
568
569
    return netj;
569
570
}
734
735
    }
735
736
 
736
737
    netj->rx_bufsize = sizeof (jacknet_packet_header) + netj->net_period_down * netj->capture_channels * get_sample_size (netj->bitdepth);
737
 
    netj->pkt_buf = malloc (netj->rx_bufsize);
738
738
    global_packcache = packet_cache_new (netj->latency + 50, netj->rx_bufsize, netj->mtu);
739
739
 
740
740
    netj->expected_framecnt_valid = 0;