Changeset 333
- Timestamp:
- 12/23/06 12:56:00 (16 years ago)
- Files:
-
- branches/libfreebob-2.0/configure.ac (modified) (1 diff)
- branches/libfreebob-2.0/src/libstreaming/MotuStreamProcessor.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/libfreebob-2.0/configure.ac
r250 r333 23 23 24 24 m4_define(freebob_major_version, 1) 25 m4_define(freebob_minor_version, 1)25 m4_define(freebob_minor_version, 999) 26 26 m4_define(freebob_micro_version, 0) 27 27 branches/libfreebob-2.0/src/libstreaming/MotuStreamProcessor.cpp
r312 r333 712 712 ++it ) { 713 713 714 #ifdef DEBUG 715 //FIXME: make this into a static_cast when not DEBUG? 716 Port *port=dynamic_cast<Port *>(*it); 717 assert(port); // this should not fail!! 714 Port *port=static_cast<Port *>(*it); 715 assert(port); // this should not fail!! 718 716 719 717 // Currently the only packet type of events for MOTU … … 721 719 // might also be sent via "packet" events. 722 720 // assert(pinfo->getFormat()==MotuPortInfo::E_Midi); 723 #endif 721 724 722 // FIXME: MIDI output is completely untested at present. 725 723 switch (port->getPortType()) { … … 1398 1396 ++it ) { 1399 1397 1400 #ifdef DEBUG1401 //FIXME: make these into a static_casts when not DEBUG?1402 1398 Port *port=dynamic_cast<Port *>(*it); 1403 1399 assert(port); // this should not fail!! … … 1407 1403 // might also be sent via "packet" events, so allow 1408 1404 // for this possible expansion. 1409 #endif 1405 1410 1406 // FIXME: MIDI input is completely untested at present. 1411 1407 switch (port->getPortType()) {