View Issue Details

IDProjectCategoryView StatusLast Update
0001678ardourbugspublic2009-07-06 02:02
Reporterphatmonkey Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version2.0 
Summary0001678: Importing as track creates incorrect number of outputs
DescriptionTo reproduce:

Create new project with stereo bus. Session/add existing audio/as tracks. Select a mono file (mine resamples), press import. New track is added but there is only 1 output rather than the expected 2.

Line 438 in editor_audio_import.cc appears to be trying to do this, so I'm filing it as a bug.
TagsNo tags attached.

Activities

phatmonkey

2007-06-23 11:24

reporter   ~0004075

Correction to description: create a new project with a stereo *master* bus.

Adding:

output_chan = 2;

after:

if (Config->get_output_auto_connect() & AutoConnectMaster) {
                output_chan = (session->master_out() ? session->master_out()->n_inputs() : input_chan);
        } else {
                output_chan = input_chan;
        }

does NOT fix it, so it's something further on, presumably in Editor::finish_bringing_in_audio/case ImportAsTrack:.

phatmonkey

2007-07-19 12:49

reporter   ~0004166

Importing a stereo track works as expected, it's something to do with mono files.

jdpindynet

2009-07-06 01:50

reporter   ~0006372

As of Ardour2 version 2.8, importing a mono file results in the expected 2 outputs. This issue seems to have been resolved somewhere between version 2.0 and 2.8.

seablade

2009-07-06 02:02

manager   ~0006373

Ok resolving this issue out as it seems to have been fixed.

Issue History

Date Modified Username Field Change
2007-05-14 18:34 phatmonkey New Issue
2007-06-23 11:24 phatmonkey Note Added: 0004075
2007-07-19 12:49 phatmonkey Note Added: 0004166
2009-07-06 01:50 jdpindynet Note Added: 0006372
2009-07-06 02:02 seablade Note Added: 0006373
2009-07-06 02:02 seablade Status new => resolved
2009-07-06 02:02 seablade Resolution open => fixed
2009-07-06 02:02 seablade Description Updated