View Issue Details

IDProjectCategoryView StatusLast Update
0002062ardourfeaturespublic2020-04-19 20:12
Reporternettings Assigned Tov2  
PrioritynormalSeveritytrivialReproducibilityN/A
Status closedResolutionfixed 
Summary0002062: trivial patch to add .amb as a recognised audio file extension
Descriptionardour is already able to correctly handle .amb files (n-channel wavex files used for ambisonic b-format) when importing audio files. but the sound file browser does not recognise the suffix as a valid audio one, so the user has to choose "all files" first. the attached trivial patch against the released 2.2 version fixes this. please apply.
TagsNo tags attached.

Activities

2008-02-03 17:58

 

dot-amb-is-a-soundfile.patch (441 bytes)   
--- audiofilesource.cc~	2008-02-03 18:26:10.000000000 +0100
+++ audiofilesource.cc	2008-02-03 18:26:10.000000000 +0100
@@ -683,6 +683,7 @@
 	return !(file.rfind(".wav") == ustring::npos &&
 		file.rfind(".aiff")== ustring::npos &&
 		file.rfind(".aif") == ustring::npos &&
+		file.rfind(".amb") == ustring::npos &&
 		file.rfind(".snd") == ustring::npos &&
 		file.rfind(".au")  == ustring::npos &&
 		file.rfind(".raw") == ustring::npos &&

v2

2008-02-03 20:36

developer   ~0004694

Committed as revision 3001

system

2020-04-19 20:12

developer   ~0021625

Issue has been closed automatically, by Trigger Close Plugin.
Feel free to re-open with additional information if you think the issue is not resolved.

Issue History

Date Modified Username Field Change
2008-02-03 17:58 nettings New Issue
2008-02-03 17:58 nettings File Added: dot-amb-is-a-soundfile.patch
2008-02-03 20:36 v2 Status new => resolved
2008-02-03 20:36 v2 Resolution open => fixed
2008-02-03 20:36 v2 Assigned To => v2
2008-02-03 20:36 v2 Note Added: 0004694
2020-04-19 20:12 system Note Added: 0021625
2020-04-19 20:12 system Status resolved => closed