Changeset 3902
- Timestamp:
- 02/06/10 05:58:35 (1 month ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jack2/trunk/jackmp/linux/firewire/JackFFADODriver.cpp
r3844 r3902 434 434 driver->capture_channels[chn].stream_type = ffado_streaming_get_capture_stream_type(driver->dev, chn); 435 435 if (driver->capture_channels[chn].stream_type == ffado_stream_type_audio) { 436 snprintf(buf, sizeof(buf) - 1, "%s: AC%d_%s", fClientControl.fName, (int)chn, portname);436 snprintf(buf, sizeof(buf) - 1, "%s:%s", fClientControl.fName, portname); 437 437 printMessage ("Registering audio capture port %s", buf); 438 438 if ((port_index = fGraphManager->AllocatePort(fClientControl.fRefNum, buf, … … 457 457 458 458 } else if (driver->capture_channels[chn].stream_type == ffado_stream_type_midi) { 459 snprintf(buf, sizeof(buf) - 1, "%s: MC%d_%s", fClientControl.fName, (int)chn, portname);459 snprintf(buf, sizeof(buf) - 1, "%s:%s", fClientControl.fName, portname); 460 460 printMessage ("Registering midi capture port %s", buf); 461 461 if ((port_index = fGraphManager->AllocatePort(fClientControl.fRefNum, buf, … … 506 506 507 507 if (driver->playback_channels[chn].stream_type == ffado_stream_type_audio) { 508 snprintf(buf, sizeof(buf) - 1, "%s: AP%d_%s", fClientControl.fName, (int)chn, portname);508 snprintf(buf, sizeof(buf) - 1, "%s:%s", fClientControl.fName, portname); 509 509 printMessage ("Registering audio playback port %s", buf); 510 510 if ((port_index = fGraphManager->AllocatePort(fClientControl.fRefNum, buf, … … 531 531 fPlaybackChannels++; 532 532 } else if (driver->playback_channels[chn].stream_type == ffado_stream_type_midi) { 533 snprintf(buf, sizeof(buf) - 1, "%s: MP%d_%s", fClientControl.fName, (int)chn, portname);533 snprintf(buf, sizeof(buf) - 1, "%s:%s", fClientControl.fName, portname); 534 534 printMessage ("Registering midi playback port %s", buf); 535 535 if ((port_index = fGraphManager->AllocatePort(fClientControl.fRefNum, buf,
