Changeset 750 for trunk/libffado/src/genericavc/avc_avdevice.cpp
- Timestamp:
- 11/30/07 14:18:26 (15 years ago)
- Files:
-
- trunk/libffado/src/genericavc/avc_avdevice.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/src/genericavc/avc_avdevice.cpp
r748 r750 51 51 IMPL_DEBUG_MODULE( AvDevice, AvDevice, DEBUG_LEVEL_NORMAL ); 52 52 53 AvDevice::AvDevice( std::auto_ptr<ConfigRom>( configRom ))54 : FFADODevice( configRom )53 AvDevice::AvDevice( DeviceManager& d, std::auto_ptr<ConfigRom>( configRom )) 54 : FFADODevice( d, configRom ) 55 55 { 56 56 debugOutput( DEBUG_LEVEL_VERBOSE, "Created GenericAVC::AvDevice (NodeID %d)\n", … … 74 74 75 75 FFADODevice * 76 AvDevice::createDevice( std::auto_ptr<ConfigRom>( configRom ))77 { 78 return new AvDevice( configRom );76 AvDevice::createDevice(DeviceManager& d, std::auto_ptr<ConfigRom>( configRom )) 77 { 78 return new AvDevice(d, configRom ); 79 79 } 80 80 … … 418 418 return false; 419 419 } 420 p =new Streaming::AmdtpReceiveStreamProcessor(*this,420 p = new Streaming::AmdtpReceiveStreamProcessor(*this, 421 421 outputPlug->getNrOfChannels()); 422 422