c318a7e095
Audacity is a free audio editor. You can record sounds, play sounds, import and export WAV, AIFF, Ogg Vorbis, and MP3 files, and more. Use it to edit your sounds using Cut, Copy and Paste (with unlimited Undo), mix tracks together, or apply effects to your recordings. Initial port and many patches by jakemsr@. Thanks to maintainer Antoine Jacoutot for persistence and keeping the port alive. ok jakemsr@
22 lines
689 B
Plaintext
22 lines
689 B
Plaintext
$OpenBSD: patch-src_FileFormats_cpp,v 1.1.1.1 2006/01/12 08:59:27 steven Exp $
|
|
--- src/FileFormats.cpp.orig Tue Jan 11 21:03:34 2005
|
|
+++ src/FileFormats.cpp Tue Jan 11 21:04:34 2005
|
|
@@ -242,7 +242,7 @@ OSType MacNames[NUM_HEADERS] = {
|
|
'8SVX', // Amiga IFF / SVX8
|
|
'NIST', // ??? NIST/Sphere
|
|
'VOC ', // VOC
|
|
- '????', // ?? Propellorheads Rex
|
|
+ '\?\?\?\?', // ?? Propellorheads Rex
|
|
'SF ', // ?? IRCAM
|
|
'W64 ', // ?? Wave64
|
|
'MAT4', // ?? Matlab 4
|
|
@@ -256,7 +256,7 @@ OSType sf_header_mactype(int format)
|
|
else if (format>=0 && format<NUM_HEADERS)
|
|
return MacNames[format];
|
|
else
|
|
- return '????';
|
|
+ return '\?\?\?\?';
|
|
}
|
|
|
|
#endif // __WXMAC__
|