make resampled sources (during import) report their "natural position" (i.e. BWF...
[ardour.git] / gtk2_ardour / editor_audio_import.cc
index c1d51e11a45ebbd19fae5fffb1d9be2f1a1f99c5..db470fbe64110b8063b6eefcb8d13f14169815ea 100644 (file)
@@ -827,20 +827,16 @@ Editor::add_sources (vector<string> paths, SourceList& sources, nframes64_t& pos
                         
                         if (as->natural_position() != 0) {
                                 pos = as->natural_position();
-                                cerr << "\tgot " << pos << " from source TC info\n";
                         } else if (target_tracks == 1) {
                                 /* hmm, no timestamp available, put it after the previous region
                                  */
                                 if (n == 0) {
                                         pos = get_preferred_edit_position ();
-                                        cerr << "\tno timestamp, first file, use edit pos = " << pos << endl;
                                 } else {
                                         pos += rlen;
-                                        cerr << "\tpacked-sequence-shuffle to " << pos << endl;
                                 }
                         } else {
                                 pos = get_preferred_edit_position ();
-                                cerr << "\tmultitracks, using edit position = " << pos << endl;
                         }
                                 
                 }