Changeset 833 for trunk/libffado/src/dice
- Timestamp:
- 01/10/08 13:36:13 (14 years ago)
- Files:
-
- trunk/libffado/src/dice/dice_avdevice.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/src/dice/dice_avdevice.cpp
r785 r833 839 839 case ePT_Analog: 840 840 p=new Streaming::AmdtpAudioPort( 841 *processor, 841 842 portname.str(), 842 843 direction, … … 849 850 case ePT_MIDI: 850 851 p=new Streaming::AmdtpMidiPort( 852 *processor, 851 853 portname.str(), 852 854 direction, … … 864 866 if (!p) { 865 867 debugOutput(DEBUG_LEVEL_VERBOSE, "Skipped port %s\n",channelInfo->name.c_str()); 866 } else {867 868 if (!processor->addPort(p)) {869 debugWarning("Could not register port with stream processor\n");870 return false;871 }872 868 } 873 869