Please help with nested audio plug-ins

I have built three sequences with audio mixer settings for each (compression, EQ, etc...).  I nest these individually and want to organize them in a "final output" sequence.  As the three sequences are placed in the "final output" sequence, all video clip references work fine, but the audio mixer settings do not follow the audio clips to the "final output" audio.
How can I get the individual sequence audio plug-ins to follow the audio to the final output audio?
I have rendered work area, rendered audio, and linked audio to video clips, still I am missing something...
thanks for your help!!!
Paul

these sequences as built
sequence A : Audio 1 (compression at 10)
sequence B : Audio 2 (compression at 15)
when nested, should become:
Master sequence: {Nested  sequence A : Audio 1 (compression at 10)}  ,  {Nested sequence B : Audio 2 (compression at 15)} .
but the compression settings do not come through at all.
Ideally, I would be able to use the audio settings from individual sequences as built, then the program would feed them (as built) to a master output just like the video clips...but for some reason voiceover compression from sequence A (which is different from sequence B) is not applying to the output of the master sequence at all...
as it exsists now, I would have to rebuild all of my audio on the master sequence because any audio mixer changes are not carrying through...
I must be missing something...
thanks,
Paul

Similar Messages

  • Please, help with Live Audio/Video example from jmf solutions

    Hello,
    I�m desperate looking for a solution for a particular problem.
    I�m trying to feed JMF with an AudioInputStream generated via Java Sound, so that I can send it via RTP. The problem is that I don�t know how to properly create a DataSource from an InputStream. I know the example Live Audio/Video Data from the jmf solutions focuses on something similar.
    The problem is that I don�t know exactly how it works, os, the question is, how can I modify that example in order to use it and try to create a proper DataSource from the AudioInputStream, and then try to send it via RTP?
    I think that I manage to create a DataSource and pass it to the class AVTransmit2 from the jmf examples, and from that DataSource create a processor, which creates successfully, and then find a corresponding format and try to send it, but when i try to send it or play it I get garbage sound, so I�m not really sure whether I create the DataSource correctly or not, as I�ve made some changes on the Live Audio/Video Data from the jmf solutions to construct a livestream from the audioinputstream. Actually, I don�t understand where in the code does it construct the DataSource from the livestream, from an inputStream, because there�s not constructor like this DataSource(InputStream) neither nothing similar.
    Please help me as I�m getting very stuck with this, I would really appreciate your help,
    thanks for your time, bye.

    import javax.media.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    import java.io.IOException;
    import javax.sound.sampled.AudioInputStream;
    public class LiveAudioStream implements PushBufferStream, Runnable {
        protected ContentDescriptor cd = new ContentDescriptor(ContentDescriptor.RAW);
        protected int maxDataLength;
        protected int vez = 0;
        protected AudioInputStream data;
        public AudioInputStream audioStream;
        protected byte[] audioBuffer;
        protected javax.media.format.AudioFormat audioFormat;
        protected boolean started;
        protected Thread thread;
        protected float frameRate = 20f;
        protected BufferTransferHandler transferHandler;
        protected Control [] controls = new Control[0];
        public LiveAudioStream(byte[] audioBuf) {
             audioBuffer = audioBuf;
                      audioFormat = new AudioFormat(AudioFormat.ULAW,
                          8000.0,
                          8,
                          1,
                          Format.NOT_SPECIFIED,
                          AudioFormat.SIGNED,
                          8,
                          Format.NOT_SPECIFIED,
                          Format.byteArray);
                      maxDataLength = 40764;
                      thread = new Thread(this);
         * SourceStream
        public ContentDescriptor getContentDescriptor() {
         return cd;
        public long getContentLength() {
         return LENGTH_UNKNOWN;
        public boolean endOfStream() {
         return false;
         * PushBufferStream
        int seqNo = 0;
        double freq = 2.0;
        public Format getFormat() {
             return audioFormat;
        public void read(Buffer buffer) throws IOException {
         synchronized (this) {
             Object outdata = buffer.getData();
             if (outdata == null || !(outdata.getClass() == Format.byteArray) ||
              ((byte[])outdata).length < maxDataLength) {
              outdata = new byte[maxDataLength];
              buffer.setData(audioBuffer);          
              buffer.setFormat( audioFormat );
              buffer.setTimeStamp( 1000000000 / 8 );
             buffer.setSequenceNumber( seqNo );
             buffer.setLength(maxDataLength);
             buffer.setFlags(0);
             buffer.setHeader( null );
             seqNo++;
        public void setTransferHandler(BufferTransferHandler transferHandler) {
         synchronized (this) {
             this.transferHandler = transferHandler;
             notifyAll();
        void start(boolean started) {
         synchronized ( this ) {
             this.started = started;
             if (started && !thread.isAlive()) {
              thread = new Thread(this);
              thread.start();
             notifyAll();
         * Runnable
        public void run() {
         while (started) {
             synchronized (this) {
              while (transferHandler == null && started) {
                  try {
                   wait(1000);
                  } catch (InterruptedException ie) {
              } // while
             if (started && transferHandler != null) {
              transferHandler.transferData(this);
              try {
                  Thread.currentThread().sleep( 10 );
              } catch (InterruptedException ise) {
         } // while (started)
        } // run
        // Controls
        public Object [] getControls() {
         return controls;
        public Object getControl(String controlType) {
           try {
              Class  cls = Class.forName(controlType);
              Object cs[] = getControls();
              for (int i = 0; i < cs.length; i++) {
                 if (cls.isInstance(cs))
    return cs[i];
    return null;
    } catch (Exception e) {   // no such controlType or such control
    return null;
    and the other one, the DataSource,
    import javax.media.Time;
    import javax.media.protocol.*;
    import java.io.IOException;
    import java.io.InputStream;
    import javax.sound.sampled.AudioInputStream;
    public class CustomDataSource extends PushBufferDataSource {
        protected Object [] controls = new Object[0];
        protected boolean started = false;
        protected String contentType = "raw";
        protected boolean connected = false;
        protected Time duration = DURATION_UNKNOWN;
        protected LiveAudioStream [] streams = null;
        protected LiveAudioStream stream = null;
        public CustomDataSource(LiveAudioStream ls) {
             streams = new LiveAudioStream[1];
             stream = streams[0]= ls;
        public String getContentType() {
         if (!connected){
                System.err.println("Error: DataSource not connected");
                return null;
         return contentType;
        public byte[] getData() {
             return stream.audioBuffer;
        public void connect() throws IOException {
          if (connected)
                return;
          connected = true;
        public void disconnect() {
         try {
                if (started)
                    stop();
            } catch (IOException e) {}
         connected = false;
        public void start() throws IOException {
         // we need to throw error if connect() has not been called
            if (!connected)
                throw new java.lang.Error("DataSource must be connected before it can be started");
            if (started)
                return;
         started = true;
         stream.start(true);
        public void stop() throws IOException {
         if ((!connected) || (!started))
             return;
         started = false;
         stream.start(false);
        public Object [] getControls() {
         return controls;
        public Object getControl(String controlType) {
           try {
              Class  cls = Class.forName(controlType);
              Object cs[] = getControls();
              for (int i = 0; i < cs.length; i++) {
                 if (cls.isInstance(cs))
    return cs[i];
    return null;
    } catch (Exception e) {   // no such controlType or such control
    return null;
    public Time getDuration() {
         return duration;
    public PushBufferStream [] getStreams() {
         return streams;
    hope this helps

  • Please help with m-audio mobile pre driver not connecting with garageband08

    hey i just updated my powerbook G4 with leopard and lost my m-audio (mobile pre) driver in system preferences so i downloaded it b/c i don't have my original disc, the downloaded version shows in my system preferences now but won't appear in the garageband preferences audio/midi input, my only choices are built in mono/sterio. any ideas? besides finding the disc? i'd really appreciate any help as my band is trying to record a cd.

    Yeah, the Mobile Pre is not going to work on Leopard until M-Audio updates their drivers, unfortunately.
    There is one workaround that I've gotten to work, but it probably won't work for most folks. If you have two partitions on your system, one with Leopard and one with Tiger, you can get the mobile pre to work in Leopard. It's a bit odd, but it does work.
    First, boot into you Tiger partition that has the Mobile Pre drivers installed and verify that the system sees and can use the Mobile Pre.
    Now, boot into Leopard. Your Leopard system should now see the Mobile Pre and you should be able to use it until you have to reboot the Leopard system.
    If you have an external HD with Tiger installed, you might also be able to get this to work w/out having to repartition your system. Just install Tiger on the external HD, boot from it, then install the Mobile Pre drivers.
    Hope this helps and possibly provides some temporary relief until M-Audio updates their drivers....

  • Can Waves audio plug-ins be used with Premiere Pro CC?

    Hi folks,
    As it says in the thread title, can Waves audio plug-ins be used with Premiere Pro CC?
    Cheers!

    I dont think so:
    http://www.adobe.com/products/premiere/extend.displayTab4.html
    http://www.waves.com/support/tech-specs/supported-hosts

  • I was recording a song, finished it and everything went alright. Then I wanted to start with the recording of a new song. With the SAME plug-ins and settings as in the song before. I could record it all, but then, logic started crashing!

    I was recording a song, finished it and everything went alright. Then I wanted to start with the recording of a new song. With the SAME plug-ins and settings as in the song before. I could record it all, but then, logic started crashing! Now, Logic crashes everytime I open up the new song as soon as I press play. But when I open up the older song, everything works just fine. I can press play without any problems, do things here and there... typical Logic stuff. So, it has to do with my new project! But why? I mean, I'm using everything the same way in both projects. Literally everything!
    Now, here's one of my crash reports... please help. Please. Thanks in advance!
    Process:         Logic Pro [1567]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.8 (1700.67)
    Build Info:      Logic-17006700~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [176]
    Responsible:     Logic Pro [1567]
    User ID:         501
    Date/Time:       2013-11-10 03:39:40.455 +0100
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  5C77B650-B7CD-6ED7-E550-F335C2C4BDCD
    Crashed Thread:  4
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000013e3f0008
    VM Regions Near 0x13e3f0008:
        IOKit                  000000013e378000-000000013e3f0000 [  480K] rw-/rw- SM=ALI 
    --> IOKit                  000000013e3f0000-000000013e3f1000 [    4K] r--/r-- SM=ALI 
        IOKit                  000000013e3f1000-000000013e412000 [  132K] rw-/rw- SM=ALI 
    Application Specific Information:
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x0000000103007aea XStreamReadFrames + 250
    3   com.apple.music.apps.MAAudioEngine          0x00000001030bbfd3 MDXStreamReadSync(FSForkIOParam*) + 131
    4   com.apple.music.apps.MAAudioEngine          0x0000000103088532 MD::FileReadAudioData(void const*, void*, long long, long) + 146
    5   com.apple.logic.pro                     0x00000001000aecaf std::vector<CTransient, std::allocator<CTransient> >::operator=(std::vector<CTransient, std::allocator<CTransient> > const&) + 50143
    6   com.apple.logic.pro                     0x00000001000957a7 std::list<AudioFileInfo_GenericMarker, std::allocator<AudioFileInfo_GenericMarker> >::sort() + 21207
    7   com.apple.logic.pro                     0x00000001000e06c7 LowLevelMovieSync(long, long) + 159575
    8   com.apple.logic.pro                     0x00000001000e2ef4 LowLevelMovieSync(long, long) + 169860
    9   com.apple.logic.pro                     0x00000001000e4a81 LowLevelMovieSync(long, long) + 176913
    10  com.apple.logic.pro                     0x00000001000e6343 LowLevelMovieSync(long, long) + 183251
    11  com.apple.logic.pro                     0x0000000100099fef std::list<AudioFileInfo_GenericMarker, std::allocator<AudioFileInfo_GenericMarker> >::sort() + 39711
    12  com.apple.logic.pro                     0x000000010009a123 std::list<AudioFileInfo_GenericMarker, std::allocator<AudioFileInfo_GenericMarker> >::sort() + 40019
    13  com.apple.logic.pro                     0x00000001000e23b0 LowLevelMovieSync(long, long) + 166976
    14  com.apple.logic.pro                     0x0000000100115a15 std::vector<CVirtualTrack, std::allocator<CVirtualTrack> >::operator=(std::vector<CVirtualTrack, std::allocator<CVirtualTrack> > const&) + 52581
    15  com.apple.logic.pro                     0x000000010087f121 void std::__stable_sort_adaptive<__gnu_cxx::__normal_iterator<CEv**, std::vector<CEv*, std::allocator<CEv*> > >, CEv**, long, bool (*)(CEv*, CEv*)>(__gnu_cxx::__normal_iterator<CEv**, std::vector<CEv*, std::allocator<CEv*> > >, __gnu_cxx::__normal_iterator<CEv**, std::vector<CEv*, std::allocator<CEv*> > >, CEv**, long, bool (*)(CEv*, CEv*)) + 131889
    16  com.apple.logic.pro                     0x00000001008849e8 void std::__stable_sort_adaptive<__gnu_cxx::__normal_iterator<CEv**, std::vector<CEv*, std::allocator<CEv*> > >, CEv**, long, bool (*)(CEv*, CEv*)>(__gnu_cxx::__normal_iterator<CEv**, std::vector<CEv*, std::allocator<CEv*> > >, __gnu_cxx::__normal_iterator<CEv**, std::vector<CEv*, std::allocator<CEv*> > >, CEv**, long, bool (*)(CEv*, CEv*)) + 154616
    17  com.apple.logic.pro                     0x0000000100072f7e GetChannelIDForIndex(TAudioBusFormat, int) + 105262
    18  com.apple.logic.pro                     0x00000001003d72f8 std::list<std::string, std::allocator<std::string> >::sort() + 43720
    19  com.apple.logic.pro                     0x00000001003d7501 std::list<std::string, std::allocator<std::string> >::sort() + 44241
    20  com.apple.logic.pro                     0x00000001003d7a5b std::list<std::string, std::allocator<std::string> >::sort() + 45611
    21  com.apple.logic.pro                     0x00000001003d7db5 std::list<std::string, std::allocator<std::string> >::sort() + 46469
    22  com.apple.logic.pro                     0x00000001003d820c std::list<std::string, std::allocator<std::string> >::sort() + 47580
    23  com.apple.logic.pro                     0x000000010052c68c std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 292332
    24  com.apple.logic.pro                     0x00000001001b3e8b std::vector<TTempoWarpMerge, std::allocator<TTempoWarpMerge> >::reserve(unsigned long) + 183579
    25  com.apple.logic.pro                     0x00000001005de46f std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 418447
    26  com.apple.logic.pro                     0x00000001005d4d4b std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 379755
    27  com.apple.logic.pro                     0x00000001005d3c03 std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 375331
    28  com.apple.logic.pro                     0x00000001005c4e4f std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 314479
    29  com.apple.logic.pro                     0x000000010077a52d std::vector<SurvivingEvent, std::allocator<SurvivingEvent> >::_M_insert_aux(__gnu_cxx::__normal_iterator<SurvivingEvent*, std::vector<SurvivingEvent, std::allocator<SurvivingEvent> > >, SurvivingEvent const&) + 38093
    30  com.apple.logic.pro                     0x00000001005c517a std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 315290
    31  com.apple.logic.pro                     0x000000010077a6d7 std::vector<SurvivingEvent, std::allocator<SurvivingEvent> >::_M_insert_aux(__gnu_cxx::__normal_iterator<SurvivingEvent*, std::vector<SurvivingEvent, std::allocator<SurvivingEvent> > >, SurvivingEvent const&) + 38519
    32  com.apple.AppKit                        0x00007fff8aa54d9a forwardMethod + 122
    33  com.apple.AppKit                        0x00007fff8aa54d9a forwardMethod + 122
    34  com.apple.AppKit                        0x00007fff8aa54d9a forwardMethod + 122
    35  com.apple.AppKit                        0x00007fff8aa54d9a forwardMethod + 122
    36  com.apple.AppKit                        0x00007fff8aa54d9a forwardMethod + 122
    37  com.apple.AppKit                        0x00007fff8aa54d9a forwardMethod + 122
    38  com.apple.logic.pro                     0x00000001005d3c58 std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 375416
    39  com.apple.logic.pro                     0x00000001005c4e4f std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 314479
    40  com.apple.logic.pro                     0x000000010077a52d std::vector<SurvivingEvent, std::allocator<SurvivingEvent> >::_M_insert_aux(__gnu_cxx::__normal_iterator<SurvivingEvent*, std::vector<SurvivingEvent, std::allocator<SurvivingEvent> > >, SurvivingEvent const&) + 38093
    41  com.apple.AppKit                        0x00007fff8a9f7ca2 -[NSApplication sendEvent:] + 3395
    42  com.apple.prokit                        0x000000010120a578 -[NSProApplication sendEvent:] + 1770
    43  com.apple.logic.pro                     0x00000001005bf90d std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 292653
    44  com.apple.logic.pro                     0x00000001005c4585 std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 312229
    45  com.apple.logic.pro                     0x00000001005bf940 std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 292704
    46  com.apple.AppKit                        0x00007fff8a847a29 -[NSApplication run] + 646
    47  com.apple.prokit                        0x000000010120ad3f NSProApplicationMain + 296
    48  com.apple.logic.pro                     0x000000010002aa58 DummyConnection::DummyConnection() + 86
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8a20c662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8785043d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff87850152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8a207a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a206d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff892c7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff892c6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff892c6275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff86668907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8666870b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8a20b9aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff89312d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 4 Crashed:
    0   libsystem_kernel.dylib                  0x00007fff8a20b866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff90a6235c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff914d1c5a __abort + 145
    3   libsystem_c.dylib                       0x00007fff914d1bc9 abort + 140
    4   com.apple.logic.pro                     0x00000001003b3226 std::_Rb_tree<short, std::pair<short const, CGRect>, std::_Select1st<std::pair<short const, CGRect> >, std::less<short>, std::allocator<std::pair<short const, CGRect> > >::_M_erase(std::_Rb_tree_node<std::pair<short const, CGRect> >*) + 98486
    5   libsystem_platform.dylib                0x00007fff8e1555aa _sigtramp + 26
    6   com.apple.music.apps.MAFiles            0x0000000102fe9a04 AACAudioFile::ReadPackets(unsigned short, unsigned short, unsigned short, unsigned int*, AudioStreamPacketDescription*, long long, unsigned int*, XStreamIOCompletion*, void*) + 564
    7   com.apple.music.apps.MAFiles            0x00000001030087cd XStreamReadPackets + 269
    8   com.apple.music.apps.MAFiles            0x0000000102fb3c5f ExtendedAudioFileObject::ReadInputProc(OpaqueAudioConverter*, unsigned int*, AudioBufferList*, AudioStreamPacketDescription**, void*) + 191
    9   com.apple.audio.toolbox.AudioToolbox          0x00007fff921afab8 AudioConverterChain::DirectCallInputProc(unsigned int*, unsigned int*, AudioBufferList*, AudioStreamPacketDescription const**) + 290
    10  com.apple.audio.toolbox.AudioToolbox          0x00007fff921a03c9 CodecConverter::CallInputProc(unsigned int&) + 329
    11  com.apple.audio.toolbox.AudioToolbox          0x00007fff9219f115 CodecConverter::DecoderFillBuffer(unsigned int&, AudioBufferList&, AudioStreamPacketDescription*) + 743
    12  com.apple.audio.toolbox.AudioToolbox          0x00007fff9218e56e BufferedAudioConverter::GetInputBytes(unsigned int, unsigned int&, CABufferList const*&) + 136
    13  com.apple.audio.toolbox.AudioToolbox          0x00007fff9216d38a CBRConverter::RenderOutput(CABufferList*, unsigned int, unsigned int&, AudioStreamPacketDescription*) + 104
    14  com.apple.audio.toolbox.AudioToolbox          0x00007fff9218e420 BufferedAudioConverter::FillBuffer(unsigned int&, AudioBufferList&, AudioStreamPacketDescription*) + 286
    15  com.apple.audio.toolbox.AudioToolbox          0x00007fff9218e56e BufferedAudioConverter::GetInputBytes(unsigned int, unsigned int&, CABufferList const*&) + 136
    16  com.apple.audio.toolbox.AudioToolbox          0x00007fff921ba475 Resampler2Wrapper::RenderOutput(CABufferList*, unsigned int, unsigned int&) + 181
    17  com.apple.audio.toolbox.AudioToolbox          0x00007fff9218e420 BufferedAudioConverter::FillBuffer(unsigned int&, AudioBufferList&, AudioStreamPacketDescription*) + 286
    18  com.apple.audio.toolbox.AudioToolbox          0x00007fff9218e56e BufferedAudioConverter::GetInputBytes(unsigned int, unsigned int&, CABufferList const*&) + 136
    19  com.apple.audio.toolbox.AudioToolbox          0x00007fff9216d38a CBRConverter::RenderOutput(CABufferList*, unsigned int, unsigned int&, AudioStreamPacketDescription*) + 104
    20  com.apple.audio.toolbox.AudioToolbox          0x00007fff9218e420 BufferedAudioConverter::FillBuffer(unsigned int&, AudioBufferList&, AudioStreamPacketDescription*) + 286
    21  com.apple.audio.toolbox.AudioToolbox          0x00007fff921af397 AudioConverterChain::RenderOutput(CABufferList*, unsigned int, unsigned int&, AudioStreamPacketDescription*) + 99
    22  com.apple.audio.toolbox.AudioToolbox          0x00007fff9218e420 BufferedAudioConverter::FillBuffer(unsigned int&, AudioBufferList&, AudioStreamPacketDescription*) + 286
    23  com.apple.audio.toolbox.AudioToolbox          0x00007fff9216cbde AudioConverterFillComplexBuffer + 292
    24  com.apple.music.apps.MAFiles            0x0000000102fb4c3c ExtendedAudioFileObject::Read(ExtendedAudioFileParams*) + 716
    25  com.apple.music.apps.MAFiles            0x0000000102fb72c0 ExtendedAudioFileScheduler::ExecuteRead(ExtendedAudioFileObject*, ExtendedAudioFileParams*) + 80
    26  com.apple.music.apps.MAFiles            0x0000000102fb7564 ExtendedAudioFileScheduler::WorkerThreadProc() + 244
    27  com.apple.music.apps.MAFiles            0x0000000102fb7589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    28  libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    29  libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    30  libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x0000000102fb74d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles            0x0000000102fb7589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 6:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x00007fff8a207a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a206d18 mach_msg + 64
    2   com.apple.audio.CoreAudio               0x00007fff8c1e6918 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio               0x00007fff8c1e68a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio               0x00007fff8c1e502e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio               0x00007fff8c1e4bcd HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio               0x00007fff8c1e4a8d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x0000000103096f2b MD::CallProcessThread1(void*) + 299
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x0000000103096d0e MD::CallProcessThread2(void*) + 302
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x0000000103096a35 MD::CallProcessThread3(void*) + 85
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x0000000103096835 MD::CallProcessThread4(void*) + 85
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x00000001030966ee MD::CallProcessThread5(void*) + 302
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x00000001030964ce MD::CallProcessThread6(void*) + 302
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x00000001030962ae MD::CallProcessThread7(void*) + 302
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x00000001030951ee MD::CallProcessThread15(void*) + 302
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8a20ba3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff914f0e60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff914f0cbf sleep + 42
    3   com.apple.music.apps.MAAudioUnitSupport          0x00000001010ce98a CAudioUnitClient::WatchDog(void*) + 26
    4   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x00000001030b1cd0 CAudioFileBlockManager::GetBlock(MDFile const*, long, int) + 2064
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8a207a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a206d18 mach_msg + 64
    2   com.apple.audio.midi.CoreMIDI           0x00000001016805a7 XServerMachPort::ReceiveMessage(int&, void*, int&) + 125
    3   com.apple.audio.midi.CoreMIDI           0x000000010169b1c1 MIDIProcess::RunMIDIInThread() + 121
    4   com.apple.audio.midi.CoreMIDI           0x000000010168163c XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI           0x00000001016812a1 CAPThread::Entry(CAPThread*) + 109
    6   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8a20b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90a63c77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore          0x00007fff92682c37 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore          0x00007fff92682859 TSWaitOnSemaphoreCommon + 424
    4   com.apple.CoreServices.CarbonCore          0x00007fff92664e09 TimerThread + 87
    5   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8a20b9aa __select + 10
    1   com.apple.logic.pro                     0x00000001009101f2 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 1554
    2   com.apple.logic.pro                     0x000000010055859d std::vector<TOSCService, std::allocator<TOSCService> >::erase(__gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >, __gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >) + 40333
    3   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8a207a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a206d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff892c7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff892c6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff892c6275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8a9f41ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8a20be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90a62f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90a65fb9 start_wqthread + 13
    Thread 22:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff8a207a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a206d18 mach_msg + 64
    2   com.apple.QuartzCore                    0x00007fff889f03b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x00007fff889f02ed thread_fun + 25
    4   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff8a20ba3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff914f0e60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff914f0d52 usleep + 54
    3   com.WavesAudio.WaveShell-AU.9.0.0          0x0000000125015348 wvWavesV9::wvThread::WCIdleCommandDispatcher::threadMain(void*) + 36
    4   com.WavesAudio.WaveShell-AU.9.0.0          0x0000000124ffb1d6 wvWavesV9::wvThread::ThreadWrapper(void*) + 24
    5   libsystem_pthread.dylib                 0x00007fff90a61899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff90a6172a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff90a65fc9 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff8a20be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90a62f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90a65fb9 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff8a20be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90a62f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90a65fb9 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff8a20be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90a62f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90a65fb9 start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib                  0x00007fff8a20be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90a62f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90a65fb9 start_wqthread + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff8a20be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90a62f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90a65fb9 start_wqthread + 13
    Thread 29:
    0   libsystem_kernel.dylib                  0x00007fff8a20be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90a62f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90a65fb9 start_wqthread + 13
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff8a20be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90a62f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90a65fb9 start_wqthread + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff8a20be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90a62f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90a65fb9 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000116354000  rcx: 0x0000000116353018  rdx: 0x0000000000000000
      rdi: 0x000000000001405b  rsi: 0x0000000000000006  rbp: 0x0000000116353040  rsp: 0x0000000116353018
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x000000011635377c  r13: 0x0000000000000148  r14: 0x0000000000000006  r15: 0x000000014a666430
      rip: 0x00007fff8a20b866  rfl: 0x0000000000000206  cr2: 0x000000013e3f0008
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x100000000 -        0x100c18fef  com.apple.logic.pro (9.1.8 - 1700.67) <5CBBDF7C-6505-0A14-61F1-483839F57524> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
           0x101086000 -        0x1010a4fef  com.apple.XSKey (1.0.0 - 52) <800DD908-E341-2BCD-11D9-DEAC7E8197E9> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
           0x1010b6000 -        0x1010f0ff7  com.apple.music.apps.MAAudioUnitSupport (9.1.8 - 233.53) <B5939861-E5F9-3218-0989-4ED074B1323D> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
           0x101113000 -        0x101141ff7  com.apple.musicaudiodataservices (1.1 - 251.4) <93B2F8C3-E091-C1CA-8932-91840CC968BC> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
           0x101153000 -        0x1011b6ff7  com.apple.music.apps.MALoopManagement (9.1.8 - 219.66) <FE447B07-89A4-E025-DFB8-4C71A0EFEBF0> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
           0x1011ed000 -        0x1013fffff  com.apple.prokit (7.4.0 - 1957) <3EF7F2B2-5539-3004-9A34-8741371FBD4D> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
           0x101593000 -        0x101629fe7  com.apple.music.apps.MACore (9.1.8 - 477.58) <3E8020EA-9B42-63A5-613D-FD2D7675546F> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x101673000 -        0x1016aeff2  com.apple.audio.midi.CoreMIDI (1.10 - 88) <AAF5250E-D422-3910-8F94-FE8BAC5B8174> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x1016d6000 -        0x101734fef  com.apple.music.apps.MAHarmony (9.1.8 - 199.72) <EE991E63-1236-765D-3C95-4AE3494B295C> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x10175c000 -        0x101b9dfff  com.apple.music.apps.MAPlugInGUI (9.1.8 - 424.79) <6FEA2031-69A3-9209-54EF-36BA3DAD1883> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x101e61000 -        0x101f3dfff  com.apple.music.apps.OMF (9.1.8 - 109.7) <F72235D0-517D-CCCB-3B91-78396786EB34> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
           0x101f5c000 -        0x10258cfef  com.apple.music.apps.MADSP (9.1.8 - 588.98) <D794D156-112C-29E3-EB9D-62604A9807DE> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x102dea000 -        0x102e0fff7  com.apple.music.apps.LogicFileBrowser (9.1.8 - 1700.67) <8E130979-83FB-56BD-DE18-A723A94B7530> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
           0x102e22000 -        0x102ea0fff  com.apple.music.apps.LogicLoopBrowser (9.1.8 - 1700.67) <47AF47CE-F6A1-E025-96FA-5C30EAFA13BC> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
           0x102ecf000 -        0x102ef3ff7  com.apple.music.apps.MAApogeeSupport (9.1.8 - 313.26) <6384895C-60D4-CE0B-0E86-673A20A34D36> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
           0x102f01000 -        0x102f06fff  com.apple.music.apps.MAResources (9.1.8 - 212.66) <0E66AB42-6F37-9AE7-8766-264DAE455688> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
           0x102f09000 -        0x102f30ff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <E6FEB146-1384-3FDE-A9B4-3BC48DCEDC27> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x102f4c000 -        0x102f5fff7  com.apple.AERegistration (1.2 - 401) <A424BA9F-0DD7-BE25-2738-4BCD22F0BB2A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
           0x102f78000 -        0x102f85fff  com.apple.music.apps.MAUnitTest (9.1.8 - 97.27) <8AF973F8-CBB2-931B-6BFC-D4BCB8A434F6> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
           0x102f8e000 -        0x103049fe7  com.apple.music.apps.MAFiles (9.1.8 - 144.87) <F9F3C7E2-46F5-0EC3-7297-096AEB83BFD6> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x103082000 -        0x1030fefe7  com.apple.music.apps.MAAudioEngine (9.1.8 - 158.42) <6944C1FC-7ACD-53A2-5095-E017C39D8CBA> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
           0x103172000 -        0x10317dfff  com.apple.music.apps.MAToolKit (9.1.8 - 359.28) <B9729EDA-E5DB-C831-E473-EED9C906AAA0> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
           0x103184000 -        0x103192ff7  com.apple.music.apps.MAVideo (9.1.8 - 12.70) <19D30553-8BFE-4F8C-D13E-0D3139AAC22B> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
           0x10319a000 -        0x1032c8ff7  com.apple.syncservices (8.0 - 718) <359C8AE7-2B7B-3420-B79D-C175B1173757> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
           0x103387000 -        0x103435fec  com.apple.MobileMe (9 - 1.01) <F322542E-D3BB-7861-602A-3F405F2BD61B> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
           0x104083000 -        0x1040a6fff  com.apple.prokit.LionPanels (7.4.0 - 1957) <E73D293E-162A-3292-87E9-7B2A821A147A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
           0x104750000 -        0x104752fe7  com.apple.music.apps.midi.device.plugin.CS-32 (9.1.8 - 198.73) <4427150E-7710-4983-8CD5-CE6C4F2AE97C> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
           0x10475a000 -        0x10475dff7  com.apple.music.apps.midi.device.plugin.FW-1884 (9.1.8 - 198.73) <89696612-EE45-1A1D-CB75-3FEBEE46EF1A> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
           0x104766000 -        0x104768ff7  com.apple.music.apps.midi.device.plugin.GiO (9.1.8 - 198.73) <67C92D49-1B46-F445-F50A-2476394DF146> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/GiO.bundle/Contents/MacOS/GiO
           0x10476d000 -        0x10476efef  com.apple.music.apps.midi.device.plugin.iControl (9.1.8 - 198.73) <FEFD06B6-5E0F-7324-7A8A-7FB6708BD76D> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
           0x104783000 -        0x10478dfff  com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <DE8268DE-F40C-3644-8C7D-D9E1274A4C26> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
           0x10d613000 -        0x10d6b6ff7  ColorSyncDeprecated.dylib (426) <1EBD0729-A174-3EA5-B226-DE63C2E89D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x10d7d3000 -        0x10d7d7ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.2 - 2.5.2fc2) <DEB558B7-BACF-3871-A021-B3A904F4FB44> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10e2dc000 -        0x10e2e1ff7  com.apple.music.apps.midi.device.plugin.HUI (9.1.8 - 198.73) <F1B9B455-904A-9D47-CBE9-2C3626329E3B> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
           0x10e458000 -        0x10e463fff  libGPUSupport.dylib (9.0.83) <AF15BF74-F9B3-35B9-8728-3B3A2EB6E432> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10e46a000 -        0x10e46cff7  com.apple.music.apps.anvil.resources (9.1.8 - 280.4) <F74756AB-FAB6-3914-5F1C-04FCB54C350A> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
           0x10e478000 -        0x10e47aff7  com.apple.music.apps.common.resources (9.1.8 - 280.4) <9FC76C8D-3763-4E4A-DB35-391B07A6FFA8> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
           0x10e47f000 -        0x10e481ff7  com.apple.music.apps.ebp.resources (9.1.8 - 280.4) <2DEA037D-ABCE-771A-618B-091741F6CA7B> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
           0x10e486000 -        0x10e488ff7  com.apple.music.apps.efx.resources (9.1.8 - 280.4) <EB5DB45A-C432-2C90-C708-27D5F5EC236A> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
           0x10e48d000 -        0x10e48fff7  com.apple.music.apps.egt.resources (9.1.8 - 280.4) <FAB354A9-88A1-619A-1ECA-A351EADB5A2E> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
           0x10e494000 -        0x10e496ff7  com.apple.music.apps.emx.resources (9.1.8 - 280.4) <19FD59CE-314B-6B4B-CEE8-C7BF9DF7F4EB> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
           0x10e49b000 -        0x10e49dff7  com.apple.music.apps.es1.resources (9.1.8 - 280.4) <4BD052E1-1BD4-3C73-93D6-D63493167CB6> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
           0x10e4a2000 -        0x10e4a4ff7  com.apple.music.apps.es2.resources (9.1.8 - 280.4) <31CBF3C9-AD64-1A86-1F99-D362B594F840> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
           0x10e4a9000 -        0x10e4abff7  com.apple.music.apps.esp.resources (9.1.8 - 280.4) <0EA44B59-2772-F013-CF49-B66EE4C77EEB> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
           0x10e4b0000 -        0x10e4b2ff7  com.apple.music.apps.evb3.resources (9.1.8 - 280.4) <F0F73B5A-E44A-FF5C-4C54-0F5B677BFB18> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
           0x10e4b7000 -        0x10e4b9ff7  com.apple.music.apps.evd6.resources (9.1.8 - 280.4) <45B1F3EB-45CB-418F-A408-C42F7F93802A> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
           0x10e4be000 -        0x10e4c0ff7  com.apple.music.apps.evoc.resources (9.1.8 - 280.4) <91478393-E7C9-5292-FCA9-83559B588E6E> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
           0x10e4c5000 -        0x10e4c7ff7  com.apple.music.apps.evp88.resources (9.1.8 - 280.4) <9FAC293E-E8B9-C2D9-F102-D5BFC0AA1DC5> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
           0x10e4cc000 -        0x10e4ceff7  com.apple.music.apps.exs24.resources (9.1.8 - 280.4) <E79F0236-D02B-D3E7-B929-701CEDE000F6> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
           0x10e4d3000 -        0x10e4d5ff7  com.apple.music.apps.guitaramp.resources (9.1.8 - 280.4) <73AC87D5-215E-2FAC-05A2-28A7E9574F5C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
           0x10e6c1000 -        0x10e6c9ff7  com.apple.proapps.mrcheckpro (1.4 - 397) <9B320059-8D28-D7DA-8CD4-B42796969065> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
           0x110fb0000 -        0x110fb2ff7  com.apple.music.apps.guitarcontrols.resources (9.1.8 - 280.4) <B005E199-DCEE-5935-8E34-48FA59352663> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
           0x110fb7000 -        0x110fb9ff7  com.apple.music.apps.mutapdel.resources (9.1.8 - 280.4) <392017D1-219B-4AA4-71CF-BAAC4D574FE1> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
           0x110fbe000 -        0x110fc0ff7  com.apple.music.apps.pedalboard.resources (9.1.8 - 280.4) <F95D6A0D-0179-F17B-59A5-B3B0007E426D> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
           0x110fc5000 -        0x110fc7ff7  com.apple.music.apps.revolver.resources (9.1.8 - 280.4) <77102719-1007-5153-B8B3-9EC9FAC4C0BD> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
           0x110fcc000 -        0x110fceff7  com.apple.music.apps.sphere.resources (9.1.8 - 280.4) <3579177A-C2D5-E746-2E48-29F69B7ACDC0> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
           0x111851000 -        0x111854fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x1146f8000 -        0x1146f9ff7  com.apple.music.apps.midi.device.plugin.MCS3 (9.1.8 - 198.73) <7CF66F66-9EF1-2F3D-7D0C-9460CB83EACC> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/MCS3.bundle/Contents/MacOS/MCS3
           0x1146fd000 -        0x114700fff  com.apple.music.apps.midi.device.plugin.microKONTROL (9.1.8 - 198.73) <AF2C1047-DAE9-8052-718F-0D6C348285CD> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
           0x114707000 -        0x114708ff7  com.apple.music.apps.midi.device.plugin.Recording-Light (9.1.8 - 198.73) <23EC858A-5A37-220D-EA3C-8C7AC5CD08C6> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Recording Light.bundle/Contents/MacOS/Recording Light
           0x1149e8000 -        0x1149ebff7  com.apple.music.apps.midi.device.plugin.TouchOSC (9.1.8 - 198.73) <0ABD31D2-B7FB-160A-41DC-707731041E81> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TouchOSC.bundle/Contents/MacOS/TouchOSC
           0x1149f7000 -        0x1149f9fff  com.apple.music.apps.midi.device.plugin.TranzPort (9.1.8 - 198.73) <523C8A5D-F930-32B9-990A-98D8E4BE8637> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
           0x11b29b000 -        0x11b29dfff  com.apple.music.apps.midi.device.plugin.US-2400 (9.1.8 - 198.73) <E1B0E13A-269F-C810-D76C-EF6CF433BB2A> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
           0x11b2a5000 -        0x11b2a6fef  com.apple.music.apps.midi.device.plugin.US-428 (9.1.8 - 198.73) <CFF12BA1-21BC-4E94-7998-53537225CCD1> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-428.bundle/Contents/MacOS/US-428
           0x11b7fd000 -        0x11b7feff9 +cl_kernels (???) <60110497-8A9D-4FDB-84E9-76C98A38CE61> cl_kernels
           0x121d07000 -        0x121d0bfff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x121d3b000 -        0x121d3cffa +cl_kernels (???) <6506446F-5931-456C-9DE8-28A3C1B2184F> cl_kernels
           0x121d6d000 -        0x121d6efe4 +cl_kernels (???) <7C75FAFF-4D34-4760-B1B6-9DF66329AF91> cl_kernels
           0x121ed7000 -        0x121edefef  com.apple.music.apps.midi.device.plugin.Logic-Control (9.1.8 - 198.73) <C1F9B111-293E-2122-12C1-689A9CCE385F> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
           0x121ffc000 -        0x121ffdfff +GenericMacIntel.dylib (0) <2288B35A-6FCC-36D8-0EAD-DD5A937C77AC> /Applications/Waves/*/1163284300.bundle/Contents/MacOS/GenericMacIntel.dylib
           0x122626000 -        0x12270cfef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x12278e000 -        0x1227aeff7 +GenericMacIntel.dylib (0) <32A727F7-154E-7D74-94A6-8998A108F836> /Applications/Waves/*/CLA Vocals.bundle/Contents/MacOS/GenericMacIntel.dylib
           0x1227e1000 -        0x1227e7fff +GenericMacIntel.dylib (0) <4B75F9CD-594C-85AA-CE1B-11E635976799> /Applications/Waves/*/1448169779.bundle/Contents/MacOS/GenericMacIntel.dylib
           0x123d06000 -        0x123d22fff +com.WavesAudio.1163284300.9.0.0 (9.0.0 - 9.0.020) <1A185018-A46E-CD38-BFB3-4F1615F637EF> /Applications/Waves/*/1163284300.bundle/Contents/MacOS/1163284300
           0x123d41000 -        0x123d45fff +GenericMacIntel.dylib (0) <60515184-48CC-8D27-C1D1-BD7EECC3A1E2> /Applications/Waves/*/0825308982.bundle/Contents/MacOS/GenericMacIntel.dylib
           0x123eb2000 -        0x123ec1ff7 +GenericMacIntel.dylib (0) <A324667A-E7CF-B809-BF7D-C37756E16AAE> /Applications/Waves/*/1397506888.bundle/Contents/MacOS/GenericMacIntel.dylib
           0x123ecc000 -        0x123eddfff +GenericMacIntel.dylib (0) <3A43AAF2-14D4-5D38-88D4-5751BE6ACE6A> /Applications/Waves/*/1278287904.bundle/Contents/MacOS/GenericMacIntel.dylib
           0x123eeb000 -        0x123eeefff +GenericMacIntel.dylib (0) <F773A05F-C878-3062-0509-0B5FA9DA7A89> /Applications/Waves/*/1380205907.bundle/Contents/MacOS/GenericMacIntel.dylib
           0x123f94000 -        0x124074ff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x1240b6000 -        0x1240e1fe7 +com.WavesAudio.1397506888.9.0.0 (9.0.0 - 9.0.020) <773281C8-5A42-5AD8-7D30-926058CF52E8> /Applications/Waves/*/1397506888.bundle/Contents/MacOS/1397506888

    Go to the waves website and download the latest version of waves 9 via your account.
    You won't lose any of your presets..... Because this is simply an update and not an upgrade

  • Please help with Logic 9 crashing! this is a deal breaker

    I have all but given up on Logic as i have never been able to get it to open and stay stable, spinning ball of death at start up, hangs etc I am relatively new to mac and have been using Pro tools as a main DAW program. Given the continual costs of upgrading Pro tools i would love to give Logic a shot as an alternative. The issue is that i have never been able to get it to run long enough to give it a shot!
    Please help
    Process:         Logic Pro [170]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.8 (1700.67)
    Build Info:      Logic-17006700~2
    App Item ID:     459578486
    App External ID: 10394291
    Code Type:       X86 (Native)
    Parent Process:  launchd [128]
    Date/Time:       2013-11-29 23:34:36.302 +1000
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000518ffffc
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x913d0c5a __kill + 10
    1   libSystem.B.dylib                       0x913d0c4c kill$UNIX2003 + 32
    2   libSystem.B.dylib                       0x914635a5 raise + 26
    3   libSystem.B.dylib                       0x91479679 __abort + 124
    4   libSystem.B.dylib                       0x914796f5 abort_report_np + 0
    5   com.apple.logic.pro                     0x003e6729 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3842985
    6   libSystem.B.dylib                       0x913d605b _sigtramp + 43
    7   ???                                     0x0000000b 0 + 11
    8   com.apple.logic.pro                     0x0003e97d std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 9725
    9   com.apple.logic.pro                     0x00297d06 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 2472326
    10  com.apple.logic.pro                     0x005d2714 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5858196
    11  com.apple.logic.pro                     0x005adccd std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5708109
    12  com.apple.logic.pro                     0x0029908e std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 2477326
    13  com.apple.logic.pro                     0x001cd0c7 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1641799
    14  com.apple.logic.pro                     0x00616967 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6137319
    15  com.apple.logic.pro                     0x00613735 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6124469
    16  com.apple.Foundation                    0x92788484 __NSFireTimer + 141
    17  com.apple.CoreFoundation                0x92dbca3b __CFRunLoopRun + 8059
    18  com.apple.CoreFoundation                0x92dba3c4 CFRunLoopRunSpecific + 452
    19  com.apple.CoreFoundation                0x92dba1f1 CFRunLoopRunInMode + 97
    20  com.apple.HIToolbox                     0x94bd5e04 RunCurrentEventLoopInMode + 392
    21  com.apple.HIToolbox                     0x94bd5bb9 ReceiveNextEventCommon + 354
    22  com.apple.HIToolbox                     0x94bd5a3e BlockUntilNextEventMatchingListInMode + 81
    23  com.apple.AppKit                        0x94001595 _DPSNextEvent + 847
    24  com.apple.AppKit                        0x94000dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    25  com.apple.AppKit                        0x93fc31f3 -[NSApplication run] + 821
    26  com.apple.prokit                        0x00fa23f6 NSProApplicationMain + 326
    27  com.apple.logic.pro                     0x0002bad5 DummyConnection::DummyConnection() + 193
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x91396382 kevent + 10
    1   libSystem.B.dylib                       0x91396a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x91395f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x91395cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x91395781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x913955c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x9136fafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91370267 mach_msg + 68
    2   com.apple.CoreFoundation                0x92dbb2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x92dba3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x92dba1f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x92793224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x9275a4c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x9275a474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x9139d259 _pthread_start + 345
    9   libSystem.B.dylib                       0x9139d0de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x91395412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x913959a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x913955c6 start_wqthread + 30
    Thread 4:
    0   libSystem.B.dylib                       0x9136fc0e mach_wait_until + 10
    1   libSystem.B.dylib                       0x913f7429 nanosleep + 345
    2   libSystem.B.dylib                       0x913f72ca usleep + 61
    3   ...ess-music.virus_ti.util.hal          0x3bb1a321 PGOSXDevice::threadRun() + 391
    4   libSystem.B.dylib                       0x9139d259 _pthread_start + 345
    5   libSystem.B.dylib                       0x9139d0de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x9139daa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9139d75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x9139f3f8 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02b233a9 MDFileIOThread_IsBusy + 3593
    4   libSystem.B.dylib                       0x9139d259 _pthread_start + 345
    5   libSystem.B.dylib                       0x9139d0de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x9136fafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91370267 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x0136a0c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI           0x0138897a MIDIProcess::RunMIDIInThread() + 150
    4   com.apple.audio.midi.CoreMIDI           0x0136b2d9 XThread::RunHelper(void*) + 17
    5   com.apple.audio.midi.CoreMIDI           0x0136aca6 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x9139d259 _pthread_start + 345
    7   libSystem.B.dylib                       0x9139d0de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x9136fb5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x9139d6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x913cc5a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x90049b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x900498ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x9006db8b TimerThread + 97
    6   libSystem.B.dylib                       0x9139d259 _pthread_start + 345
    7   libSystem.B.dylib                       0x9139d0de thread_start + 34
    Thread 8:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x9138eac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x92dfac53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x9139d259 _pthread_start + 345
    3   libSystem.B.dylib                       0x9139d0de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x91395412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x913959a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x913955c6 start_wqthread + 30
    Thread 10:
    0   libSystem.B.dylib                       0x9139daa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x913c99c5 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib                       0x913c9903 usleep$UNIX2003 + 61
    3   com.apple.AppKit                        0x9416ae2d -[NSUIHeartBeat _heartBeatThread:] + 2039
    4   com.apple.Foundation                    0x9275a4c4 -[NSThread main] + 45
    5   com.apple.Foundation                    0x9275a474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x9139d259 _pthread_start + 345
    7   libSystem.B.dylib                       0x9139d0de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x9139daa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x913c99c5 nanosleep$UNIX2003 + 188
    2   com.apple.Foundation                    0x927e45cc +[NSThread sleepForTimeInterval:] + 123
    3   com.apple.logic.pro                     0x00883190 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 8678928
    4   com.apple.Foundation                    0x9275a4c4 -[NSThread main] + 45
    5   com.apple.Foundation                    0x9275a474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x9139d259 _pthread_start + 345
    7   libSystem.B.dylib                       0x9139d0de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x91479609  ecx: 0xbfffe0fc  edx: 0x913d0c5a
      edi: 0x00cc0a9c  esi: 0x3ae1d630  ebp: 0xbfffe118  esp: 0xbfffe0fc
       ss: 0x0000001f  efl: 0x00000286  eip: 0x913d0c5a   cs: 0x00000007
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x002b4000
    Binary Images:
        0x1000 -   0xbeafff  com.apple.logic.pro 9.1.8 (1700.67) <D8F173FC-C08A-5AF3-A7DD-ECFFDB6A8877> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe85000 -   0xeb8fe7  com.apple.music.apps.MAAudioUnitSupport 9.1.8 (233.53) <4A75EC0F-CD9B-99B7-187C-FAD6560734D7> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xec7000 -   0xef8ff3  com.apple.musicaudiodataservices 1.1 (251.4) <0265F317-13AB-6CF1-A171-7D5853442E75> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf08000 -   0xf66ff3  com.apple.music.apps.MALoopManagement 9.1.8 (219.66) <A1CB744D-B391-438C-28DE-2CABB594E4A9> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xf7e000 -  0x11b6fff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12be000 -  0x1338fff  com.apple.music.apps.MACore 9.1.8 (477.58) <53D4EB61-BFD7-ADA1-217C-BBEA1F38DA80> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x135a000 -  0x13a6ffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13cb000 -  0x1421ff7  com.apple.music.apps.MAHarmony 9.1.8 (199.72) <D93A5C62-91A1-2D04-A715-5805EBEF693B> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x143a000 -  0x1854feb  com.apple.music.apps.MAPlugInGUI 9.1.8 (424.79) <D98859D6-BA99-5073-49B7-44B57F4FE211> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a7b000 -  0x1b5dfeb  com.apple.music.apps.OMF 9.1.8 (109.7) <869B8C49-7726-C45F-E301-A21EAE7A3B3B> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b74000 -  0x21c5fe3  com.apple.music.apps.MADSP 9.1.8 (588.98) <7BEB4983-28A6-8808-2B8D-A48F0A3F0111> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28bc000 -  0x28ddff7  com.apple.music.apps.LogicFileBrowser 9.1.8 (1700.67) <FEEA3128-4A7E-7FDD-0E7E-BFC9554CA78B> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28e7000 -  0x2960ff7  com.apple.music.apps.LogicLoopBrowser 9.1.8 (1700.67) <3396D969-32DF-0446-8E3D-F2FE82B23CD8> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x2976000 -  0x2997ff7  com.apple.music.apps.MAApogeeSupport 9.1.8 (313.26) <D058F550-BB20-ABD6-51E8-3001AE32A6E1> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x299e000 -  0x29a3ff7  com.apple.music.apps.MAResources 9.1.8 (212.66) <985579E4-F9E5-F7C6-39C8-FC294A330A2A> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29a8000 -  0x29d1fe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29e2000 -  0x29f2ff7  com.apple.AERegistration 1.2 (401) <4FEFA52A-BF2E-2BCC-0124-4E3653B88D95> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a08000 -  0x2a14ff3  com.apple.music.apps.MAUnitTest 9.1.8 (97.27) <FB0DE08A-CFEB-7039-796A-F05E8FE0DA11> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a1e000 -  0x2ad4fff  com.apple.music.apps.MAFiles 9.1.8 (144.87) <FF7A5441-B41F-B937-9269-29C589FE6BFF> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2aef000 -  0x2b67fe3  com.apple.music.apps.MAAudioEngine 9.1.8 (158.42) <77E17BDE-E079-7A68-621C-2947475D0402> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bd0000 -  0x2bdbff7  com.apple.music.apps.MAToolKit 9.1.8 (359.28) <77A2C3F7-3530-3D65-4247-D520A1C1F487> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2be1000 -  0x2bf5ff7  com.apple.music.apps.MAVideo 9.1.8 (12.70) <74AD8812-DB1B-1845-B389-ACB0FC255ECB> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2c09000 -  0x2ca5ffc  com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2d05000 -  0x2dbafe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x3f00000 -  0x3f35ff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <FF2667E3-621B-071C-77D4-9C3125A9298C> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x3ff0000 -  0x3ff4ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x3ff9000 -  0x3ffaffb  com.solid-state-logic.driver.plugin.MadiXtreme ??? (1.3) <F2871053-0F4E-EDB6-BD0E-3B7C05BECFB3> /System/Library/Extensions/MadiXtreme.kext/Contents/Resources/MadiXtreme.bundle /Contents/MacOS/MadiXtreme
    0x3abd9000 - 0x3abdfff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x3abec000 - 0x3abf4ff7  com.apple.proapps.mrcheckpro 1.4 (397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x3afc4000 - 0x3aff1fe3 +com.avid.avid.AvidCoreAudioPlugIn 10.3.2.47 (10.3.2f47) <3F322BF6-2A98-355B-D644-429A62B71F72> /Library/Audio/Plug-Ins/HAL/Avid CoreAudio.plugin/Contents/MacOS/Avid CoreAudio
    0x3bb00000 - 0x3bb20ffb +de.access-music.virus_ti.util.hal ??? (2.2.0) <159B115F-4C56-2B1B-615C-47A4BF388CDA> /Library/Audio/Plug-Ins/HAL/de.access-music.virus_ti.plugin/Contents/MacOS/de.a ccess-music.virus_ti
    0x3bc65000 - 0x3bc67ff3  com.apple.music.apps.anvil.resources 9.1.8 (280.4) <232E095C-4B63-5F35-5A7A-0CF691EB1101> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x3bc92000 - 0x3bc94ff3  com.apple.music.apps.common.resources 9.1.8 (280.4) <1D975834-BD71-B0D0-D8CF-1BA760AA9488> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x3bfea000 - 0x3bfecff3  com.apple.music.apps.ebp.resources 9.1.8 (280.4) <191CB44E-25E3-0BAA-6E45-E4FC625432A0> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x3bff1000 - 0x3bff3ff3  com.apple.music.apps.efx.resources 9.1.8 (280.4) <2EEB43AB-D405-62D0-140B-0B887CE18A70> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x3bff8000 - 0x3bffaff3  com.apple.music.apps.egt.resources 9.1.8 (280.4) <2E91FDD0-709D-AF8A-02C1-169C401D9A9D> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x3e57d000 - 0x3e5a1fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x3e5cd000 - 0x3e5cfff3  com.apple.music.apps.emx.resources 9.1.8 (280.4) <CFDBF0D9-083A-F0A9-DA2E-7D5F6A6D249A> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x3e5d4000 - 0x3e5d6ff3  com.apple.music.apps.es1.resources 9.1.8 (280.4) <3257B0C1-B4F6-E276-56E4-E226736A1371> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x3e5db000 - 0x3e5ddff3  com.apple.music.apps.es2.resources 9.1.8 (280.4) <53480C20-F2F1-A2D5-BDA6-E70F6B281A5F> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x3e5e2000 - 0x3e5e4ff3  com.apple.music.apps.esp.resources 9.1.8 (280.4) <8F63A05D-3A14-004C-246F-3D6B5EBEEA7E> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x3e5e9000 - 0x3e5ebff3  com.apple.music.apps.evb3.resources 9.1.8 (280.4) <BE781A59-67E2-FB1E-3F4E-B99D0D30C61C> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x3e5f0000 - 0x3e5f2ff3  com.apple.music.apps.evd6.resources 9.1.8 (280.4) <D80EB53C-5AFC-7AC6-44E8-7A23AEF023C3> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x3e5f7000 - 0x3e5f9ff3  com.apple.music.apps.evoc.resources 9.1.8 (280.4) <80760949-9342-4C9F-CF3D-4C6333D024FE> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x3e94e000 - 0x3eac7ff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x3eaf9000 - 0x3eefefe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x3f383000 - 0x3f385ff3  com.apple.music.apps.evp88.resources 9.1.8 (280.4) <F5393D5E-8BF1-6C37-ED93-5FACFD419DEB> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x3f38a000 - 0x3f38cff3  com.apple.music.apps.exs24.resources 9.1.8 (280.4) <AE07C5E6-1D57-D2BB-4942-80AACD51CD44> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x3f391000 - 0x3f393ff3  com.apple.music.apps.guitaramp.resources 9.1.8 (280.4) <40F8A885-63FA-D784-78D9-9958EF4EEBF3> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x3f398000 - 0x3f39aff3  com.apple.music.apps.guitarcontrols.resources 9.1.8 (280.4) <C6EB6C33-138E-C992-14D1-B03D9EFEFB49> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x3f39f000 - 0x3f3a1ff3  com.apple.music.apps.mutapdel.resources 9.1.8 (280.4) <BCF98464-A2C8-D71F-87D5-FEFF35404932> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x3f3a6000 - 0x3f3a8ff3  com.apple.music.apps.pedalboard.resources 9.1.8 (280.4) <199A76D9-1086-BC6C-68D0-B74431FAF415> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x3f3ad000 - 0x3f3afff3  com.apple.music.apps.revolver.resources 9.1.8 (280.4) <2C6B75C7-E32A-B021-7119-E830E7F2E853> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x3f3b4000 - 0x3f3b6ff3  com.apple.music.apps.sphere.resources 9.1.8 (280.4) <E8D4E3E6-8C6F-5D10-57DA-B7C0F71C35F9> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x472c3000 - 0x4734affb +se.propellerheads.rewire.library 1.8.1 build 124 (1.8.1) <79A1E240-4153-9288-475D-697D84C94343> /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x473a9000 - 0x473e5fe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1800) <25649FE4-15B7-A90F-8238-9F7D370C45DA> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x47549000 - 0x47553ff7  com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x4d186000 - 0x4dd96ff3 +com.motu.BPMSamplerAU 1.5.1 (1.5.1) <C5B21F53-946C-4EBF-7ACE-AE446CE23976> /Library/Audio/Plug-Ins/Components/BPMSampler.component/Contents/MacOS/BPMSampl er
    0x4e3d6000 - 0x4e425fe7 +libsndfile.dylib ??? (???) <05CA7F72-4EB4-5699-2E89-F3C9435A50E6> /Library/Audio/Plug-Ins/Components/BPMSampler.component/Contents/Frameworks/lib sndfile.dylib
    0x4f09f000 - 0x4f0adfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <B408E41B-D90F-4A04-DB72-D61C8C52BFBC> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld
    0x90003000 - 0x90323ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90324000 - 0x90326ff7  libRadiance.dylib ??? (???) <090420B3-CB65-9F7B-5349-D42F2F9693B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90396000 - 0x903e6fe7  libTIFF.dylib ??? (???) <AB182CEC-188A-F2BC-21E1-0059FD3B2598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x903e7000 - 0x903e9fe7  com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x903ea000 - 0x9040cfef  com.apple.DirectoryService.Framework 3.6 (621.16) <5566E769-6459-78A7-DD2C-1D3068BD3932> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90514000 - 0x90557ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90558000 - 0x90558ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90559000 - 0x9056aff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9056b000 - 0x9066dfe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <EB34F049-D9E1-BF19-CF03-B26A0352D40C> /usr/lib/libcrypto.0.9.8.dylib
    0x9066e000 - 0x90674fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x90675000 - 0x9067bfff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9067c000 - 0x90788fe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x907f9000 - 0x90856ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90857000 - 0x9086bffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9086c000 - 0x9086cff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9086d000 - 0x909b0fef  com.apple.QTKit 7.7 (1800) <9DD27495-3020-0928-B3F2-D418C336E163> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x909b1000 - 0x90a59ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90aa2000 - 0x90c24fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <60FF302E-5FAE-749B-BC70-0496DC2FBF2D> /usr/lib/libicucore.A.dylib
    0x90c78000 - 0x90cb3ffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x90cdb000 - 0x90ce0ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90ce1000 - 0x90ceeff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x90cef000 - 0x90e31ff7  com.apple.syncservices 5.2 (578.3) <17A876CF-DAB1-1A88-6811-64AF8BFDE508> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x90e32000 - 0x90e35ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90e52000 - 0x90ea5ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90ea6000 - 0x90f15ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90f16000 - 0x90f34fe7  libPng.dylib ??? (???) <6C0B95D7-9634-E044-0B79-F1DD56961C33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90f3b000 - 0x90f3cff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9101c000 - 0x91086fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x91087000 - 0x910abff7  libJPEG.dylib ??? (???) <50E17B4D-63D6-24D3-702F-6A6E912A55EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x910ac000 - 0x910cbff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x910cc000 - 0x9119dfe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9119e000 - 0x911d9fe7  com.apple.DebugSymbols 1.1 (70) <1D0447CB-C221-A112-AA68-372951672A3D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x911da000 - 0x911e5ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x911e6000 - 0x911f6ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x911f7000 - 0x9126bfef  com.apple.CoreSymbolication 2.0 (23) <8C63D09A-6DF5-082A-553B-3E7610604C5D> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x91276000 - 0x91292fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x912ae000 - 0x912b1ff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x912b2000 - 0x9136efff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9136f000 - 0x91516ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x91517000 - 0x91551ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x91552000 - 0x91734fff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91735000 - 0x91812fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x91813000 - 0x9181dffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9195e000 - 0x91968fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91969000 - 0x926e1fe7  com.apple.WebCore 6534.59 (6534.59.6) <5C71C61C-0657-1B0E-397F-4D0A81872C93> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x926e2000 - 0x92743fe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92744000 - 0x929b5fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x929b6000 - 0x929b6ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92a6e000 - 0x92b1bfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x92b23000 - 0x92ba0ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x92ba1000 - 0x92baefe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x92be5000 - 0x92cc5fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92cc6000 - 0x92d72fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92d7e000 - 0x92ef9fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92efa000 - 0x92f0aff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x92f0b000 - 0x92f4eff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92f4f000 - 0x93112feb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <AE641FAD-DF38-AE31-B45B-85AEE7AF3A45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93113000 - 0x93902557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93925000 - 0x93de0ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x93de1000 - 0x93dedff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x93e0c000 - 0x93e86fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93e87000 - 0x93e8eff7  com.apple.agl 3.0.12 (AGL-3.0.12) <37255DC6-9FD1-45CC-AC80-A84FD2B5450A> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93e8f000 - 0x93fb8fe7  com.apple.WebKit 6534.59 (6534.59.10) <73348DE8-9C7D-3BD9-8E9D-86E5BE67B1D1> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93fb9000 - 0x9489cff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x948e6000 - 0x948eeff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x948ef000 - 0x9492dff7  com.apple.QuickLookFramework 2.3 (327.7) <6387A103-C7EF-D56B-10EF-5ED5FC7F33A5> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x949dc000 - 0x94a36fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x94a6a000 - 0x94ab7feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x94ab8000 - 0x94abcff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x94abe000 - 0x94aefff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94ba1000 - 0x94ec5fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94ec6000 - 0x94ee7fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x94ee8000 - 0x94eeaff7  com.apple.securityhi 4.0 (36638) <FC01BFC4-04DB-96F3-2412-A86CC4F94CB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94eeb000 - 0x94eebff7  com.apple.Carbon 150 (152) <BFDDA394-0F01-A3A3-A226-ED3A45975A56> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94f05000 - 0x94f49fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94f4a000 - 0x94f4dffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94f4e000 - 0x94fbcff7  com.apple.QuickLookUIFramework 2.3 (327.7) <7F89C0A1-310F-ACF1-AA6E-4ADFA4DC98DC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x94fc8000 - 0x94fd5ff7  com.apple.AppleFSCompression 24.4 (1.0) <DC313FD8-B697-8311-65DD-EFBAD99ABBDC> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x94fd6000 - 0x95084ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95085000 - 0x950c5ff3  com.apple.securityinterface 4.0.1 (40418.0.1) <2141A924-748E-CE6F-2D75-D82BC265BD30> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x950fb000 - 0x9512bff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x95322000 - 0x9545ffe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9546d000 - 0x954b2ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x954b3000 - 0x956deff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95864000 - 0x958b4ff7  com.apple.Symbolication 1.1 (67) <A173E87D-4F8D-C1F1-891C-48981656F84C> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x958f9000 - 0x95bf3fef  com.apple.QuickTime 7.6.6 (1800) <D3538A45-5F4B-262A-06AB-64C1EBAC4A33> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95c55000 - 0x95c92ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95f8d000 - 0x95fb3ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95fb4000 - 0x9600cfe7  com.apple.datadetectorscore 2.0 (80.7) <18C2FB6A-BF60-F838-768C-0306151C21DA> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9600d000 - 0x96214feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x962bf000 - 0x962cdff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x962ce000 - 0x962d7ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x962d8000 - 0x962d9ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x962da000 - 0x9633effb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9633f000 - 0x96381ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96382000 - 0x963d2ff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x963d3000 - 0x96465fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x964f9000 - 0x96504ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96505000 - 0x96633fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96634000 - 0x966b6ffb  SecurityFoundation ??? (???) <BFE377A4-C830-3ECA-E69F-8A8094CDA0A6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x966b7000 - 0x966f0fe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x966f1000 - 0x9699efff  com.apple.JavaScriptCore 6534.59 (6534.59.11) <7F623AA5-A11B-4C26-D2FD-EB5B9DE73F85> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9699f000 - 0x969b1ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x969b2000 - 0x969e5ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x969ee000 - 0x96c54ff7  com.apple.security 6.1.2 (55002) <E88E133F-5FB3-446F-B753-2B8AD577B46A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x972bd000 - 0x972bdff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x972be000 - 0x972ffff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97300000 - 0x97356ff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9735a000 - 0x973a1ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x973a2000 - 0x973c2fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x973c3000 - 0x973f6fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x973f7000 - 0x97477feb  com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x97478000 - 0x97497fe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x97498000 - 0x97498ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97499000 - 0x97b14ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x97b15000 - 0x97ceefff  libType1Scaler.dylib ??? (???) <04AF2B34-81D4-97E9-BD56-387D37C16F46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x97d0e000 - 0x97dd9fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97dda000 - 0x97e72fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97f6f000 - 0x98481feb  com.apple.RawCamera.bundle 3.14.0 (646) <27962422-EA30-43CF-2B3E-E662BB4C46C7> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x98482000 - 0x9851dfe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x985d2000 - 0x986d2fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x986d3000 - 0x98770fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x98771000 - 0x98778ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x98779000 - 0x987f2ff7  com.apple.PDFKit 2.5.5 (2.5.5) <85AA9E1C-D946-863A-823E-32F2AAF314CB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x987f3000 - 0x9880bff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x98870000 - 0x988ebfff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x988ec000 - 0x98924ff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9896d000 - 0x9896eff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9896f000 - 0x989b3ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x989b4000 - 0x989b4ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x989ce000 - 0x989f5ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x989f6000 - 0x989faff7  IOSurface ??? (???) <F9E6DFC1-8DD9-7C7E-CA85-B80735586E05> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x989fb000 - 0x98ab4fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x98ab5000 - 0x98e20ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x98e4b000 - 0x98f25fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x98f26000 - 0x99028fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x99029000 - 0x99f7cffb  com.apple.QuickTimeComponents.component 7.6.6 (1800) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99f7d000 - 0x99fa5ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x99fa6000 - 0x99fa6ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x99fa7000 - 0x99fabff7  libGIF.dylib ??? (???) <2251F789-B187-0837-6E38-A0E5C7C4FA3C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x99fae000 - 0x99ff4ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x99ff5000 - 0x9a000ff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9a001000 - 0x9a004fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9a005000 - 0x9a013fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x9a014000 - 0x9a449ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9a44a000 - 0x9a502feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9a503000 - 0x9a919ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9a91a000 - 0x9a92efe7  libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x9a92f000 - 0x9a944fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9aa86000 - 0x9aac3ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9aac4000 - 0x9aad3fe7  libxar.1.dylib ??? (???) <2FC317EB-7AC2-CD6C-8C09-E06B2DF02929> /usr/lib/libxar.1.dylib
    0x9aad4000 - 0x9aad4ff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9aad5000 - 0x9ab11fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <CEE95B62-8F1C-2013-6ED3-42EB8A1018DF> /usr/lib/libssl.0.9.8.dylib
    0x9ab1e000 - 0x9ab95ff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9ab96000 - 0x9acc3ffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0xba100000 - 0xba101fe7  libArabicConverter.dylib 49.0.0 (compatibility 1.0.0) <3B5A444B-D37C-32C4-6438-6EF902C90AB7> /System/Library/CoreServices/Encodings/libArabicConverter.dylib
    0xba300000 - 0xba301fe7  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <B3B08EB5-0B0C-54C1-7D48-5F713E821DAC> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <A6FD4184-1017-59F6-990E-785BDF6202BE> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <59936EB5-5FA4-EEEB-9858-E9BF50AB1776> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb300000 - 0xbb301fe7  libSymbolConverter.dylib 49.0.0 (compatibility 1.0.0) <953181DB-D5EE-2466-81BC-1766E1D25909> /System/Library/CoreServices/Encodings/libSymbolConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib

    Unfortunately you didn't post up the full crash log (You cut off the end) but typically such crashes are caused by either...
    1) Old/incompatible Drivers for your Midi/Audio interface or buggy drivers for certain Digidesign Audio./Midi interfaces..
    2) Old/buggy AudioUnit Plugins that need updating...
    3) Corrupted Logic preferences... See this link on how to troublehooting tips.. in particular how to delete user preferences!
    4) Avid/Digidesign Midi drivers.....  which you could try deleting to see if that fixes things..
    I'd look at deleting your prefs first and then look at your Avid/Digidesign stuff... given you have been running PT...
    and then check any/all plugins you are using are up to date...
    There are a few other possibilities but for now, try the above...

  • Please help with iChat Video connection problem

    Hi,
    I'm having problems getting iChat video to connect with other users. Is there anyone here who can interpret the log for me to diagnose the problem?
    I'm using iChat 4.0.2 (604) on OSX 10.5.2. I'm able to make a test call to the appleu3test01 account but not to anyone else. My computer is behind a firewall/nat that allows all outgoing connections.
    Thanks in advance,
    Charley
    log follows ----
    Date/Time: 2008-04-25 10:54:51.252 -0700
    OS Version: 10.5.2 (Build 9C31)
    Report Version: 4
    iChat Connection Log:
    2008-04-25 10:54:20 -0700: AVChat started with ID 3060103232.
    2008-04-25 10:54:20 -0700: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2008-04-25 10:54:20 -0700: 0x18c33f90: State change from AVChatNoState to AVChatStateInvited.
    2008-04-25 10:54:24 -0700: 0x18c33f90: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-04-25 10:54:24 -0700: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-04-25 10:54:46 -0700: 0x18c33f90: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-04-25 10:54:46 -0700: 0x18c33f90: Error -8 (Did not receive a response from 0x18c33f90.)
    2008-04-25 10:54:46 -0700: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-04-25 10:54:46 -0700: [email protected]: Error -8 (Did not receive a response from 0x18c33f90.)
    Video Conference Error Report:
    19.849386 @SIP/SIP.c:2719 type=4 (900A0015/22)
    [SIPConnectIPPort failed]
    21.879238 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    23.907981 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    207.554386 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    209.556562 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    211.558538 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    6.351586 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    11.806939 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    11.807668 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    17.848706 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6eea23d52f630510
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=284603095
    Call-ID: 37c81fe0-12f0-11dd-bc88-c28afda54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    18.348973 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6eea23d52f630510
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=284603095
    Call-ID: 37c81fe0-12f0-11dd-bc88-c28afda54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    19.349225 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6eea23d52f630510
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=284603095
    Call-ID: 37c81fe0-12f0-11dd-bc88-c28afda54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    19.879528 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6ebc186f3e3a806c
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=1250365544
    Call-ID: 38fdfe34-12f0-11dd-bc88-ea4fb53e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    20.379800 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6ebc186f3e3a806c
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=1250365544
    Call-ID: 38fdfe34-12f0-11dd-bc88-ea4fb53e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    21.380078 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK6ebc186f3e3a806c
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=1250365544
    Call-ID: 38fdfe34-12f0-11dd-bc88-ea4fb53e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    21.908295 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK1ddd3b8a34918b59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=849327933
    Call-ID: 3a339b2e-12f0-11dd-bc88-8397d3164012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    22.408547 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK1ddd3b8a34918b59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=849327933
    Call-ID: 3a339b2e-12f0-11dd-bc88-8397d3164012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    23.408840 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:17297;branch=z9hG4bK1ddd3b8a34918b59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=849327933
    Call-ID: 3a339b2e-12f0-11dd-bc88-8397d3164012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:17297>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 728
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 17297 RTP/AVP 110 121 12 3 0
    a=rtcp:17297
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3795671230
    m=video 17297 RTP/AVP 123 126 34
    a=rtcp:17297
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 17297 VIDEO 17297
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2844954058
    48.126971 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    48.345373 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    137.223416 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 4 returns 1
    137.745518 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    137.746141 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    138.114296 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK0588d22c3bf22e51
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:1156>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 1156 RTP/AVP 110 121 12 3 0
    a=rtcp:1156
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:4082181242
    m=video 1156 RTP/AVP 123 126 34
    a=rtcp:1156
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 1156 VIDEO 1156
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:1988964481
    138.155760 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK0588d22c3bf22e51
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    138.155978 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK0588d22c3bf22e51
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    138.225275 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK0588d22c3bf22e51
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 446
    [v=0
    o=vcm39 0 0 IN IP4 rip
    s=0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:889957869
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:813658281
    138.225465 @SIP/Transport.c:2362 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK1897dab876cdecb4
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    138.459642 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from rip:16402]
    138.773635 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=100948.20, NSDev=0.65%]
    138.939768 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=865686.00, NSDev=5.40%]
    139.050190 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=3148358.00, NSDev=2.29%]
    145.812543 @SIP/Transport.c:2362 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK4dbf685912e73246
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    145.850321 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:1156;branch=z9hG4bK4dbf685912e73246
    To: "u0" <sip:user@rip:16402>;tag=1599155684
    From: "0" <sip:user@lip:16402>;tag=1374840277
    Call-ID: 7f77f770-12f0-11dd-bc88-d4dead114012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    195.109331 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 5 returns 1
    199.541174 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    199.542189 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    205.554461 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK0f6792db59552bff
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=881601401
    Call-ID: a7aaffda-12f0-11dd-bc88-d9783e6e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    206.054777 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK0f6792db59552bff
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=881601401
    Call-ID: a7aaffda-12f0-11dd-bc88-d9783e6e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    207.055212 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK0f6792db59552bff
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=881601401
    Call-ID: a7aaffda-12f0-11dd-bc88-d9783e6e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    207.556084 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK6a49d97471a25260
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=617856270
    Call-ID: a8dc537c-12f0-11dd-bc88-db9bbace4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    208.056452 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK6a49d97471a25260
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=617856270
    Call-ID: a8dc537c-12f0-11dd-bc88-db9bbace4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    209.057386 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:34793 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK6a49d97471a25260
    Max-Forwards: 70
    To: "u0" <sip:user@rip:34793>
    From: "0" <sip:user@lip:16402>;tag=617856270
    Call-ID: a8dc537c-12f0-11dd-bc88-db9bbace4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    209.558360 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK16cf618234ae3133
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=474934580
    Call-ID: aa0dda7c-12f0-11dd-bc88-98d03de04012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    210.058639 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK16cf618234ae3133
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=474934580
    Call-ID: aa0dda7c-12f0-11dd-bc88-98d03de04012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    211.059368 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:2960;branch=z9hG4bK16cf618234ae3133
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=474934580
    Call-ID: aa0dda7c-12f0-11dd-bc88-98d03de04012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:2960>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 731
    v=0
    o=charley 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:8:2800
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 2960 RTP/AVP 110 121 12 3 0
    a=rtcp:2960
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1185780439
    m=video 2960 RTP/AVP 123 126 34
    a=rtcp:2960
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 2960 VIDEO 2960
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:2643597519
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    23.939323 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    139.188758 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 868 up, 868 down. (00000000)
    139.210929 @Video Conference/VideoConferenceMultiController.m:1958 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    211.591419 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    Binary Images Description for "iChat":
    0x1000 - 0x239fff com.apple.iChat 4.0.2 (604) /Applications/iChat.app/Contents/MacOS/iChat
    0x2ae000 - 0x31cfff com.apple.Bluetooth 2.1 (2.1f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4b9fff com.apple.viceroy.framework 363.1 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x527000 - 0x566fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x588000 - 0x5a1fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bb000 - 0x5f5fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x605000 - 0x619fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x629000 - 0x647fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64f000 - 0x6c1fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6ff000 - 0x730fff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x759000 - 0x75cfff com.apple.BezelServicesFW 1.4.624 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x777000 - 0x779fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x7c7000 - 0x7ccfff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7db000 - 0x7defff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7e5000 - 0x7ebfff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x1489e000 - 0x1498cfff com.apple.RawCamera.bundle 2.0.2 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14aab000 - 0x14ab0fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16254000 - 0x1625dfff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x1626e000 - 0x16271fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x16277000 - 0x1627cfff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a19) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x162de000 - 0x162e1fff com.apple.LiveType.component 2.1.3 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x162e6000 - 0x1634bfff com.apple.LiveType.framework 2.1.3 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x1636b000 - 0x163b1fff com.apple.motion.component 1.0 /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x163b6000 - 0x163b9fff com.apple.motion.framework 3.0 /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x163be000 - 0x163f9fff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x16404000 - 0x16431fff com.apple.QuickTimeIIDCDigitizer 7.4.5 (67) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x1643c000 - 0x16486fff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x164ad000 - 0x164c8fff de.access-music.virus_ti.util.hal ??? (1.4.0) /Library/Audio/Plug-Ins/HAL/de.access-music.virusti.plugin/Contents/MacOS/de.access-music.virusti
    0x164f7000 - 0x1654dfff com.apple.DVCPROHDAudio 1.3 /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x1657d000 - 0x165c7fff com.apple.DVCPROHDMuxer 1.3 /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x165eb000 - 0x16607fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x16705000 - 0x16895fff com.apple.audio.codecs.Components 1.6.2 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x16923000 - 0x16aa4fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16ad2000 - 0x16d21fff com.apple.ATIRadeonX2000GLDriver 1.5.20 (5.2.0) /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x17e76000 - 0x17e76fff liblangid.dylib /usr/lib/liblangid.dylib
    0x183b3000 - 0x183b3fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x183b9000 - 0x183c0fff com.apple.JavaVM 12.0.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x183ca000 - 0x183cbfff com.apple.iChat.PersonIconPlugIn 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x189a1000 - 0x189c0fff com.apple.speech.SpeechDictionary 3.5.51 /System/Library/PrivateFrameworks/SpeechDictionary.framework/Versions/A/SpeechD ictionary
    0x18fbd000 - 0x19051fff com.apple.speech.synthesis.MacinTalkSynthesizer 3.6.59 /System/Library/Speech/Synthesizers/MacinTalk.SpeechSynthesizer/Contents/MacOS/ MacinTalk
    0x1deff000 - 0x1df11fff com.apple.DVCPROHDVideoDigitizer 1.3 /Library/QuickTime/DVCPROHDVideoDigitizer.component/Contents/MacOS/DVCPROHDVide oDigitizer
    0x1e43a000 - 0x1e4adfff com.apple.audio.units.Components 1.5.1 /System/Library/Components/CoreAudio.component/Contents/MacOS/CACodecs
    0x1e654000 - 0x1e654fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x1e6fc000 - 0x1e718fff com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1e7a0000 - 0x1e7bdfff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1e815000 - 0x1e822fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x1e82a000 - 0x1e82ffff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1e9b2000 - 0x1e9c4fff com.apple.FCP Uncompressed 422.component 1.5 /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x1e9ea000 - 0x1ea1ffff com.apple.AppleProRes422 1.0 (36) /Library/QuickTime/AppleProRes422.component/Contents/MacOS/AppleProRes422
    0x1ea89000 - 0x1eacdfff com.apple.DVCPROHDCodec 1.4 (231) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x1eb30000 - 0x1eb8bfff com.apple.AppleHDVCodec 1.3 (211) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x1eb96000 - 0x1ebd2fff com.apple.AppleVAFramework 4.0.16 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x1ebd9000 - 0x1ebf3fff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1ec18000 - 0x1ec38fff com.apple.IMXCodec 1.3 (143) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x1ec6f000 - 0x1ec89fff com.apple.applepixletvideo 1.2.10 (1.2d10) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x21557000 - 0x218d5fff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x70000000 - 0x700e3fff com.apple.audio.units.Components 1.5.1 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90041fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x90042000 - 0x900f4fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x900f5000 - 0x90133fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90134000 - 0x90544fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90545000 - 0x9057ffff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90580000 - 0x906a4fff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x906b2000 - 0x906e4fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x906e5000 - 0x90734fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x90735000 - 0x90737fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90738000 - 0x90738fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9073f000 - 0x907effff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x907f0000 - 0x907f4fff com.apple.CoreMediaAuthoringPrivate 1.3 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x907ff000 - 0x9082efff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9082f000 - 0x9087ffff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90880000 - 0x90909fff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9093a000 - 0x90ab8fff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90ab9000 - 0x90ab9fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90aba000 - 0x90b31fff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90b32000 - 0x90b32fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90b33000 - 0x91330fff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91331000 - 0x9138efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x9146f000 - 0x9154efff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x9154f000 - 0x9156dfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9156e000 - 0x9192cfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9192d000 - 0x919f8fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x919f9000 - 0x91c73fff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91c74000 - 0x91e3ffff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91e40000 - 0x91ebcfff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91ebd000 - 0x91f17fff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91f18000 - 0x91f1afff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91f1b000 - 0x91f65fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91f66000 - 0x91f7cfff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91f7d000 - 0x920c2fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x920c3000 - 0x920cafff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x920cb000 - 0x920e3fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x920e4000 - 0x920f0fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x920f1000 - 0x92229fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x92297000 - 0x9229efff libbsm.dylib /usr/lib/libbsm.dylib
    0x9229f000 - 0x92938fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92939000 - 0x9293efff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9293f000 - 0x92e55fff com.apple.WebCore 5523.15.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92e56000 - 0x93176fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x93177000 - 0x9318afff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x9318b000 - 0x931ccfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93436000 - 0x9344afff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93457000 - 0x934c9fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x934ca000 - 0x9355dfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9355e000 - 0x9460efff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94768000 - 0x94811fff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94812000 - 0x948a5fff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x948a6000 - 0x948affff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x948b0000 - 0x948cbfff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x948cc000 - 0x9491cfff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9491d000 - 0x9491ffff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x94920000 - 0x94920fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94921000 - 0x94930fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94931000 - 0x949f8fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x949f9000 - 0x949fafff libffi.dylib /usr/lib/libffi.dylib
    0x949fb000 - 0x94b2dfff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94b2e000 - 0x94b45fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x94b7b000 - 0x94b86fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94b87000 - 0x94c68fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x94c69000 - 0x94cc2fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94d66000 - 0x94d6efff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94d6f000 - 0x94d85fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94d86000 - 0x95259fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9525a000 - 0x9529ffff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x952a0000 - 0x952e4fff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x952e5000 - 0x952e5fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x952e6000 - 0x95304fff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95305000 - 0x9532bfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9532c000 - 0x95333fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95334000 - 0x95358fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95359000 - 0x95368fff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95369000 - 0x9539ffff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x953a0000 - 0x953a0fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x953a1000 - 0x954a2fff com.apple.PubSub 1.0.2 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x954a3000 - 0x954fffff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95531000 - 0x95531fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95532000 - 0x95551fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95552000 - 0x955ddfff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x955de000 - 0x95609fff libauto.dylib /usr/lib/libauto.dylib
    0x9560a000 - 0x95611fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x95612000 - 0x9568cfff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9568d000 - 0x9570cfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9570d000 - 0x95794fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x95795000 - 0x957bdfff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x957be000 - 0x9591dfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9591e000 - 0x959e6fff com.apple.QuickTimeMPEG4.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x959e7000 - 0x959f7fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x959f8000 - 0x95acbfff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x95acc000 - 0x95ae9fff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x95aea000 - 0x95af8fff libz.1.dylib /usr/lib/libz.1.dylib
    0x95af9000 - 0x95b1dfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95b1e000 - 0x95b23fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95b24000 - 0x95bb0fff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95bb1000 - 0x95c58fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95c59000 - 0x95e14fff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95f0a000 - 0x961e3fff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x961e4000 - 0x961e4fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x961e5000 - 0x9621cfff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9621d000 - 0x96220fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96221000 - 0x96252fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96253000 - 0x96259fff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9625a000 - 0x962d7fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x962d8000 - 0x962dcfff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x962dd000 - 0x962ddfff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x962de000 - 0x965e6fff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x965e7000 - 0x965f3fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x965f4000 - 0x965f4fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96603000 - 0x9662dfff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x9662e000 - 0x96765fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96766000 - 0x96770fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96771000 - 0x967b0fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x967b1000 - 0x967b5fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x967b6000 - 0x967c1fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x967c2000 - 0x967defff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x967df000 - 0x96b75fff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96b76000 - 0x96b86fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96b87000 - 0x96b8cfff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96b8d000 - 0x96b9efff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96b9f000 - 0x96b9ffff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96ba0000 - 0x96c5bfff com.apple.WebKit 5523.15.1 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x96c5c000 - 0x96cc1fff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96d00000 - 0x96d39fff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96d3a000 - 0x96d3efff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96d3f000 - 0x96d6cfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96d6d000 - 0x96daffff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96db0000 - 0x96e6afff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96e6b000 - 0x96f50fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96f51000 - 0x96fddfff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96fde000 - 0x9702cfff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore

    Does this firewall allow Incoming Connections ?
    8:12 PM Sunday; April 27, 2008

  • Please help with (long) error message upon launch of final cut 7

    Hello. I have just installed final cut 7 and when opening, it asks for serial number/name etc...I enter that information then it crashes giving this error message (sorry if this is so long, but wasn't sure what to put)
    Process: Final Cut Pro [215]
    Path: /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier: com.apple.FinalCutPro
    Version: 7.0 (7.0)
    Build Info: FCPApp-906181654~22
    Code Type: PPC (Native)
    Parent Process: launchd [165]
    Interval Since Last Report: 1220 sec
    Crashes Since Last Report: 2
    Per-App Interval Since Last Report: 383 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2010-02-27 17:21:50.684 -0500
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: F2735926-CF71-49A6-9CAF-CBE82AF568D0
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 8
    Thread 0:
    0 libSystem.B.dylib 0x96e3df3c sem_wait + 12
    1 com.celemony.melodynebridge.au 0x107f32f4 GNAudioUnitWrapperViewEntry + 504568
    2 com.celemony.melodynebridge.au 0x107f9d9c GNAudioUnitWrapperViewEntry + 531872
    3 com.celemony.melodynebridge.au 0x10779ae0 GNAudioUnitWrapperViewEntry + 6884
    4 com.celemony.melodynebridge.au 0x10773a50 0x10772000 + 6736
    5 com.celemony.melodynebridge.au 0x1078c240 GNAudioUnitWrapperViewEntry + 82500
    6 com.celemony.melodynebridge.au 0x10774a3c GNAudioUnitWrapperEntry + 1656
    7 com.celemony.melodynebridge.au 0x10a407e4 0x10772000 + 2942948
    8 ...ple.CoreServices.CarbonCore 0x015b550c CallComponentOpen + 36
    9 ...ple.CoreServices.CarbonCore 0x015b399c OpenAComponent + 536
    10 ...ple.CoreServices.CarbonCore 0x015b376c OpenComponent + 16
    11 ...ple.CoreServices.CarbonCore 0x015b55f0 CallComponent + 188
    12 ...ple.CoreServices.CarbonCore 0x015d3534 GetComponentVersion + 32
    13 com.apple.FinalCutPro 0x0030ccd8 AddAUEffect(ComponentRecord*, ComponentDescription const&, char*, char*, KGDictInt*) + 804
    14 com.apple.FinalCutPro 0x0030e254 AudioRegisterAUEffects + 1456
    15 com.apple.FinalCutPro 0x003668e4 AudioInitialize + 148
    16 com.apple.FinalCutPro 0x0029cd08 KGSoundLibAction + 780
    17 com.apple.FinalCutPro 0x00270578 CallLibs(KGLibActionCode, unsigned char) + 320
    18 com.apple.FinalCutPro 0x00270758 KGFinishLibraries + 112
    19 com.apple.FinalCutPro 0x002708e0 KGInit() + 180
    20 com.apple.FinalCutPro 0x0044202c OpenApplication(AEDesc const*, AEDesc*, long) + 64
    21 com.apple.AE 0x926d0ce0 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 164
    22 com.apple.AE 0x926d0be8 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 40
    23 com.apple.AE 0x926d09ec aeProcessAppleEvent + 212
    24 com.apple.HIToolbox 0x92f5d40c AEProcessAppleEvent + 52
    25 com.apple.HIToolbox 0x92fbc7c8 AEProcessEvent + 148
    26 com.apple.HIToolbox 0x92fbc714 HIStdAppHandler::HandleEvent(OpaqueEventHandlerCallRef*, TCarbonEvent&) + 224
    27 com.apple.HIToolbox 0x92fb96b4 TEventHandler::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 64
    28 com.apple.HIToolbox 0x92f31c48 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484
    29 com.apple.HIToolbox 0x92f30de0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464
    30 com.apple.HIToolbox 0x92f30bfc SendEventToEventTargetWithOptions + 52
    31 com.apple.HIToolbox 0x92f60b88 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 308
    32 com.apple.HIToolbox 0x92f3209c DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2592
    33 com.apple.HIToolbox 0x92f30de0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464
    34 com.apple.HIToolbox 0x92f4dd04 SendEventToEventTarget + 52
    35 com.apple.HIToolbox 0x92fbc4a8 ToolboxEventDispatcher + 84
    36 com.apple.HIToolbox 0x92fb89e4 RunApplicationEventLoop + 164
    37 com.apple.FinalCutPro 0x001709d4 KGMainEvent(void*) + 52
    38 com.apple.FinalCutPro 0x002f9180 main + 56
    39 com.apple.FinalCutPro 0x0000389c _start + 744
    40 com.apple.FinalCutPro 0x000035ac start + 44
    Thread 1:
    0 libSystem.B.dylib 0x96dac278 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x96def368 pthread_condwait + 1320
    2 com.apple.Foundation 0x92c791a0 -[NSCondition waitUntilDate:] + 384
    3 com.apple.Foundation 0x92c78fcc -[NSConditionLock lockWhenCondition:beforeDate:] + 268
    4 com.apple.AppKit 0x900fb9cc -[NSUIHeartBeat _heartBeatThread:] + 664
    5 com.apple.Foundation 0x92c3bd84 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x96e0fd74 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x96afb808 __CFSocketManager + 764
    Thread 3:
    0 libSystem.B.dylib 0x96db2c0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x96def46c pthread_condwait + 1580
    2 libGLProgrammability.dylib 0x90806b68 glvmDoWork + 120
    3 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x96dac258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x96def378 pthread_condwait + 1336
    2 com.apple.FinalCutPro 0x0046eb10 Synchronizable::Wait() + 44
    3 com.apple.FinalCutPro 0x00458684 DisplayQueue::Run() + 720
    4 com.apple.FinalCutPro 0x0049a460 Thread::RunHelper(void*) + 28
    5 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x96dac258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x96def378 pthread_condwait + 1336
    2 com.apple.FinalCutPro 0x0046eb10 Synchronizable::Wait() + 44
    3 com.apple.FinalCutPro 0x00515468 WorkUnitPerformer::Run() + 68
    4 com.apple.FinalCutPro 0x0049a460 Thread::RunHelper(void*) + 28
    5 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 6:
    0 libSystem.B.dylib 0x96dac1f8 machmsgtrap + 8
    1 libSystem.B.dylib 0x96db311c mach_msg + 56
    2 com.apple.CoreFoundation 0x96af0394 CFRunLoopRunSpecific + 1812
    3 com.apple.audio.CoreAudio 0x91d50fa8 HALRunLoop::OwnThread(void*) + 212
    4 com.apple.audio.CoreAudio 0x91d50de4 CAPThread::Entry(CAPThread*) + 104
    5 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x96ded904 kevent + 12
    1 com.apple.CoreFoundation 0x96ac7a48 _monitor_file_descriptor_ + 240
    Thread 8 Crashed:
    0 ??? 0000000000 0 + 0
    1 com.celemony.melodynebridge.au 0x107f9a68 GNAudioUnitWrapperViewEntry + 531052
    2 com.celemony.melodynebridge.au 0x107fe20c GNAudioUnitWrapperViewEntry + 549392
    3 libSystem.B.dylib 0x96dee0c8 pthreadstart + 320
    4 ??? 0000000000 0 + 0
    Thread 8 crashed with PPC Thread State 32:
    srr0: 0x00000000 srr1: 0x4000d030 dar: 0xf032cee4 dsisr: 0x40000000
    r0: 0x0ef84750 r1: 0xf032ce00 r2: 0x00000000 r3: 0x0ef84750
    r4: 0x00000000 r5: 0x0ef848c4 r6: 0x96ad0114 r7: 0x01002c88
    r8: 0x00000000 r9: 0x000000b0 r10: 0x00000004 r11: 0xa0addf18
    r12: 0x00000000 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00000000 r25: 0xa0b2df98 r26: 0x00024f1b r27: 0x0ef84850
    r28: 0x0ef845c0 r29: 0x10a8e120 r30: 0x0ef848c0 r31: 0x107f9a2c
    cr: 0x44000022 xer: 0x20000000 lr: 0x107f9a68 ctr: 0x00000000
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x865ffd com.apple.FinalCutPro 7.0 (7.0) <6e3b6ccfc37d1f3a6667e9691d0ea1b5> /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    0xc11000 - 0xc11fff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0xc15000 - 0xc1afff +KGCore ??? (???) <cda58a9c90ccd27eb7afe15273d5f2e0> /Applications/Final Cut Pro.app/Contents/Frameworks/KGCore.framework/Versions/A/KGCore
    0xc21000 - 0xc22fff com.apple.iokit.dvcomponentglue 1.9.5 (1.9.5) <143d5a0b230245035fb6364b29f6b76b> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0xc26000 - 0xc36fff com.apple.AERegistration 1.2 (77) <a414e04adc8d3707b024759d8836bee1> /Applications/Final Cut Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0xc4a000 - 0xc52fff com.apple.AEProfiling 1.2 (22) <abe7eb329c8ac259cf01e1aae9a7389a> /Applications/Final Cut Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0xc5b000 - 0xe44fff com.apple.security 5.0.6 (37592) <75e10021fca58a7274de9a365010049e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0xf84000 - 0x1149ffb com.apple.prokit 5.0 (883) <eb781a0ac241037a05d240696a5b040e> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1244000 - 0x12b6fff com.apple.ProFX 1.2.3 (1.2.3) <3f561013ae61fb92b5683f27d070805b> /Library/Application Support/ProApps/SharedA/Frameworks/ProFX.framework/Versions/A/ProFX
    0x12d5000 - 0x13d7ffd com.apple.DiskImagesFramework 10.5.8 (201) <e85883f76eda4cfa37e6d3f6b53db310> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x143a000 - 0x1493ffb com.apple.proapps.MIO 1.0 (498) <d3fc34331aac931041ee6d1188690015> /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x14ce000 - 0x14d9ffb com.apple.finalcutstudio.prometadatasupport 0.6 (1.0) <848659e5de39081af860e6394174a4bd> /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
    0x14e2000 - 0x1517fff com.apple.FWAVCPrivate 1.46 (46) /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x152e000 - 0x154cffb com.apple.XSKey 1.0.0 (52) <eb878ce4313af544efbfb43a1724339d> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x155a000 - 0x157bff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x1583000 - 0x1885ffb com.apple.CoreServices.CarbonCore 786.11 (786.14) <4da8e0984e333f8cea32a24ba4364e8c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x1908000 - 0x199ffff com.apple.LaunchServices 292 (292) <06cb373fd960fbc2b4a0201f55c7dd6d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x19ec000 - 0x1b34ff3 libicucore.A.dylib ??? (???) <bdab570d90979c4f601131d442f84720> /usr/lib/libicucore.A.dylib
    0x1b86000 - 0x1c70fff libxml2.2.dylib ??? (???) <c16d0fbbf8fd6b30695cd3c930355066> /usr/lib/libxml2.2.dylib
    0x1c9b000 - 0x1d35ff7 com.apple.ApplicationServices.ATS 3.8 (???) <61c7a66473c16fce3d1eac4d09d401d7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x1d61000 - 0x1e31fff com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x1e73000 - 0x23efff7 com.apple.CoreGraphics 1.409.5 (???) <5055e3621c3a2239851bd7e829e94ea1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x24bb000 - 0x2607fff com.apple.ImageIO.framework 2.0.7 (2.0.7) <c466caa621b9fa7431877610c21e39a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x265e000 - 0x270efff com.apple.QD 3.11.57 (???) <e74b370c6f81fc00e8936f5cf7c8ebe0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x2742000 - 0x27fcfff libcrypto.0.9.7.dylib ??? (???) <1d82e65c85d65367f3b6b06355c89c9b> /usr/lib/libcrypto.0.9.7.dylib
    0x284a000 - 0x286aff7 libJPEG.dylib ??? (???) <bcc63fc19e0a5fa3d4b411f0de1d5851> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x2871000 - 0x28b2ffb libTIFF.dylib ??? (???) <a4fac1b78bf536e570841166630ff642> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x28bc000 - 0x28c0ffe libGIF.dylib ??? (???) <cc34b3a44618a0e1ccc1c5b1cf28b5bb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x28c5000 - 0x28e1ffb libPng.dylib ??? (???) <036c49544cb7b1d09d5e0185a1e26f7d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x28e8000 - 0x28eaffd libRadiance.dylib ??? (???) <304e574d5de8d26630c4c516cc6e47fb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x28ee000 - 0x2915fff libcups.2.dylib ??? (???) <640068d6a91267e0d6e31afdac1c4a03> /usr/lib/libcups.2.dylib
    0x2920000 - 0x2a67ffb com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x2ad8000 - 0x2af3ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <408eb07010ed69f4c94353cac76c84c6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x2afe000 - 0x2b33ff3 com.apple.LDAPFramework 1.4.5 (110) <0cf1d114abaf598355afb6537b76874e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x2b3e000 - 0x2b68ff7 libssl.0.9.7.dylib ??? (???) <2aafe2efc0fb9868cb630ac50b5892b4> /usr/lib/libssl.0.9.7.dylib
    0x2b77000 - 0x2baaffb com.apple.MediaKit 9.1 (401) <1e0e8c007a642dff76454b81bb554c88> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x2bba000 - 0x2c88ff5 com.apple.DiscRecording 4.0.7 (4070.4.1) <73f6a269ffb9718fa9f165da9f2a5eb1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x2cef000 - 0x2d1cffb libcurl.4.dylib ??? (???) <bd94f6417b93e0174fa282255dd6d6d1> /usr/lib/libcurl.4.dylib
    0x2d43000 - 0x2d87fff com.apple.vmutils 4.1 (104) <ea4bd764588ed4625099564b5e253eb1> /System/Library/PrivateFrameworks/vmutils.framework/vmutils
    0x80b6000 - 0x80bafff com.apple.coretech.AELicensingAquaPro 1.4 (359) <3f3691c9aa37d02c090a79d906dbf71b> /Applications/Final Cut Pro.app/Contents/Resources/AELicensingAquaPro.bundle/Contents/MacOS/AELicensing AquaPro
    0x80e1000 - 0x811efff libRIP.A.dylib ??? (???) <a710b7ef58700a54a39e7738dd804e57> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x812b000 - 0x8138fff libCSync.A.dylib ??? (???) <7ccecf2b36209e1196c42c635938519e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x8140000 - 0x8148ffb libCGATS.A.dylib ??? (???) <72ecb94f23cdc622a277671b4976a7d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0xaa6e000 - 0xaa70fff com.apple.FinalCutPro.Plugins.Text Window 7.0 (7.0) <3d6dd1bda1778170c67dc446329ef575> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Text Window.bundle/Contents/MacOS/Text Window
    0xb6ce000 - 0xb8b5ff3 com.apple.RawCamera.bundle 2.1.1 (508) <43747f42347f4d5db7a26942587b3b4d> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xbeda000 - 0xbee1fff com.apple.proapps.mrcheckpro 1.4 (359) <986b9225b761ef5aa33b349717ef474b> /Applications/Final Cut Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0xbf3f000 - 0xc0b7ffb GLEngine ??? (???) <ad5267f50a418511daf9f5f237d7f852> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xc0e9000 - 0xc3b5ff1 com.apple.ATIRadeonX1000GLDriver 1.5.48 (5.4.8) <a24b8c9e1170ef467bfed436980bdd08> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xc40b000 - 0xc427fff GLRendererFloat ??? (???) <020c309b1f0a3109fbf8f76764e9ad69> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xd54c000 - 0xd579ffb com.apple.FinalCutPro.Plugins.AfterEffects 7.0 (7.0) <5c9c9e9fb87af0483e4145a290a521e9> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AfterEffects.bundle/Contents/MacOS/AfterEffects
    0xd580000 - 0xd584ffb com.apple.FinalCutPro.Plugins.AudioGroupsExport 7.0 (7.0) <31853eb9061606dd571c25ec47cab1d7> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioGroupsExport.bundle/Contents/MacOS/AudioGro upsExport
    0xd588000 - 0xd5a1ffb com.apple.FinalCutPro.Plugins.AudioMixer 7.0 (7.0) <f4557ef8f7a5a1201a4f1193b51bfa80> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioMixer.bundle/Contents/MacOS/AudioMixer
    0xd5ab000 - 0xd5c7ffb com.apple.audio.midi.CoreMIDI 1.6.1 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xd5dd000 - 0xd5e3fff com.apple.FinalCutPro.Plugins.Cache Manager 7.0 (7.0) <0d2b36ac42fb603a9140708245824589> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cache Manager.bundle/Contents/MacOS/Cache Manager
    0xd5e7000 - 0xd5f2fff com.apple.FinalCutPro.Plugins.CTHelper 7.0 (7.0) <0b2a26efbb2b42aced5f7adb590cc0d9> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/CTHelper.bundle/Contents/MacOS/CTHelper
    0xd700000 - 0xd721fff libexpat.1.dylib ??? (???) <e955fbf7296287c4d40694cf7dffd64f> /usr/lib/libexpat.1.dylib
    0xd728000 - 0xd7f6ffb com.apple.FinalCutPro.Plugins.Browser 7.0 (7.0) <dc7cc0aa0df7f3317c1410b6854d301b> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Browser.bundle/Contents/MacOS/Browser
    0xd814000 - 0xd82cfff com.apple.FinalCutPro.CinemaTools 5.0 (5.0) <c8a38b265f2c8ea3ac9f66b454418b4a> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cinema Tools.bundle/Contents/MacOS/Cinema Tools
    0xd838000 - 0xd85fffb com.apple.FinalCutPro.Plugins.EditTape 7.0 (7.0) <41203e7bbf2f4df98ca870fbab07728f> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EditTape.bundle/Contents/MacOS/EditTape
    0xd86d000 - 0xd8ccffd com.apple.FinalCutPro.Plugins.EDL Export 7.0 (7.0) <3cadb04d199fd22d8ee35082081c10ba> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EDL Export.bundle/Contents/MacOS/EDL Export
    0xd8e1000 - 0xd8e9ffb com.apple.FinalCutPro.Plugins.Effect Builder 7.0 (7.0) <c3adf611a925c666fe3fea86c314a58a> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Effect Builder.bundle/Contents/MacOS/Effect Builder
    0xd8ed000 - 0xd8fafff com.apple.FinalCutPro.Plugins.FCPExtPluginSupport 7.0 (7.0) <1a7ff286381399c163c989f26ea52771> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCPExtPluginSupport.bundle/Contents/MacOS/FCPExt PluginSupport
    0xd901000 - 0xd933fff com.apple.FinalCutPro.Plugins.FCS Engine 7.0 (7.0) <6c6f49b70583c84ffc3f0e616d1af130> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCS Engine.bundle/Contents/MacOS/FCS Engine
    0xd93b000 - 0xd94cffb com.apple.FinalCutPro.Plugins.FilterCustomEd 7.0 (7.0) <2c8e6c331d6b6874d05f39131fb7f831> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterCustomEd.bundle/Contents/MacOS/FilterCusto mEd
    0xd951000 - 0xd966ffb com.apple.FinalCutPro.Plugins.FilterViewer 7.0 (7.0) <2d5b030c83ab066fcfa3975bd7996e6d> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterViewer.bundle/Contents/MacOS/FilterViewer
    0xd96b000 - 0xd96efff com.apple.FinalCutPro.Plugins.FinalTouchExport 7.0 (7.0) <783be9d544683916a408b14c514d8fa5> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FinalTouchExport.bundle/Contents/MacOS/FinalTouc hExport
    0xd973000 - 0xd993fff com.apple.FinalCutPro.Plugins.Flash 7.0 (7.0) <8997558d06a18a4b905567c0141b6d4c> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Flash.bundle/Contents/MacOS/Flash
    0xd99e000 - 0xd9abffb com.apple.FinalCutPro.Plugins.GenViewer 7.0 (7.0) <fb029dbec1d875f85a4b8a3f8ef5fcf9> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/GenViewer.bundle/Contents/MacOS/GenViewer
    0xd9b0000 - 0xd9b5ffb com.apple.FinalCutPro.Plugins.LayerFileReader 7.0 (7.0) <ca6fa98278f6ac344a95e384d37d4d85> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/LayerFileReader.bundle/Contents/MacOS/LayerFileR eader
    0xd9b9000 - 0xda05ffb com.apple.FinalCutPro.Plugins.Media Manager 7.0 (7.0) <9bd2b1ae86c3e1493ed668a74068fd12> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Media Manager.bundle/Contents/MacOS/Media Manager
    0xda0f000 - 0xda23ffb com.apple.FinalCutPro.Plugins.MolokiniSupport 7.0 (7.0) <50b9367c5afa61f131627b6da6ec726d> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/MolokiniSupport.bundle/Contents/MacOS/MolokiniSu pport
    0xda32000 - 0xda44fff com.apple.FinalCutPro.Frameworks.MolokiniTranslation 1.0 (1.0) <b97968d83cb88f81549d41039b1ca6f5> /Applications/Final Cut Pro.app/Contents/Frameworks/MolokiniTranslation.framework/Versions/A/MolokiniTr anslation
    0xda51000 - 0xda84fff com.apple.FinalCutPro.Plugins.Motion Viewer 7.0 (7.0) <5105d5d05cf659b42bc2e85684624e9b> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Motion Viewer.bundle/Contents/MacOS/Motion Viewer
    0xda95000 - 0xdab3fff com.apple.FinalCutPro.Plugins.Movie Analyzer 7.0 (7.0) <8c70cc7d97eb7bb6f1eaf93e33d01640> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Analyzer.bundle/Contents/MacOS/Movie Analyzer
    0xdac1000 - 0xdad9fff com.apple.FinalCutPro.Plugins.Movie Viewer 7.0 (7.0) <0f77952ad039492cf44736421c8c16dc> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Viewer.bundle/Contents/MacOS/Movie Viewer
    0xdae5000 - 0xdae9fff com.apple.FinalCutPro.Plugins.NuggetExport 7.0 (7.0) <1ad9d5f008e6e80482e36451513ae370> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/NuggetExport.bundle/Contents/MacOS/NuggetExport
    0xdaed000 - 0xdb94fff com.apple.FinalCutPro.Plugins.OMF Audio Export 7.0 (7.0) <38fc8086a441ce8003fb3fa9951039ed> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/OMF Audio Export.bundle/Contents/MacOS/OMF Audio Export
    0xdba6000 - 0xdbaffff com.apple.FinalCutPro.Plugins.Perf Analyzer 7.0 (7.0) <1af03373c399490d5a8c99bf699a2c9a> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Perf Analyzer.bundle/Contents/MacOS/Perf Analyzer
    0xdbb4000 - 0xdbcbffb com.apple.FinalCutPro.Plugins.ProAppsIntegration 7.0 (7.0) <3da6b50898df8a3c1c059e362d86ea75> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration
    0xdbda000 - 0xdbe8ffb com.apple.FinalCutPro.Plugins.Pulldown Support 7.0 (7.0) <fa27e19bd82463ffb8aae55a5fd4b75c> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Pulldown Support.bundle/Contents/MacOS/Pulldown Support
    0xdbef000 - 0xdc2dffb com.apple.FinalCutPro.Plugins.QTM Reader 7.0 (7.0) <8bb075f03126012bd93782f394bf0d25> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QTM Reader.bundle/Contents/MacOS/QTM Reader
    0xdc3a000 - 0xdc43ffb com.apple.FinalCutPro.Plugins.QuickView 7.0 (7.0) <aa36d5474889e87e8efc334e47a1ce49> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QuickView.bundle/Contents/MacOS/QuickView
    0xdc47000 - 0xdc58ffb com.apple.FinalCutPro.Plugins.Relink Media 7.0 (7.0) <df91097575fea9655157352af7d1339f> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Relink Media.bundle/Contents/MacOS/Relink Media
    0xdc5e000 - 0xdcf2fff com.apple.FinalCutPro.Plugins.Timeline Editor 7.0 (7.0) <dfa47fc36cfad46b1b246d85b02a1f82> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Timeline Editor.bundle/Contents/MacOS/Timeline Editor
    0xdd00000 - 0xdd12fff com.apple.FinalCutPro.Plugins.Transcoder 7.0 (7.0) <d4baee531e60f586e7ad29486e84a289> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transcoder.bundle/Contents/MacOS/Transcoder
    0xdd1b000 - 0xdd2dfff com.apple.FinalCutPro.Plugins.Transition Viewer 7.0 (7.0) <da0dfe7c925e98e052a29a1dfa12df6e> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transition Viewer.bundle/Contents/MacOS/Transition Viewer
    0xdd32000 - 0xdd48ffb com.apple.FinalCutPro.Plugins.Trimming 7.0 (7.0) <b3caddaa25c688c1a5e12565f3a9a535> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Trimming.bundle/Contents/MacOS/Trimming
    0xdd4d000 - 0xdd54fff com.apple.FinalCutPro.Plugins.VDUSupport 7.0 (7.0) <9b97e3bcfd20f3c2b2d489e05ff14f13> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VDUSupport.bundle/Contents/MacOS/VDUSupport
    0xdd59000 - 0xdd9affb com.apple.FinalCutPro.Plugins.Vector Accelerator 7.0 (7.0) <35e699b7d7496cb3a3177fe64d95bddd> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Vector Accelerator.bundle/Contents/MacOS/Vector Accelerator
    0xdd9f000 - 0xddb1ffb com.apple.FinalCutPro.Plugins.VideoLog 7.0 (7.0) <14d423f3f50c01a1020ffaf817266ba8> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VideoLog.bundle/Contents/MacOS/VideoLog
    0xddb5000 - 0xddcefff com.apple.FinalCutPro.Plugins.VoiceOver 7.0 (7.0) <2e47b1e5cd7899f55bb56bb48e6e9d56> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VoiceOver.bundle/Contents/MacOS/VoiceOver
    0xddd4000 - 0xde4effd com.apple.FinalCutPro.Plugins.XML Support 7.0 (7.0) <a6887a9919b3f27bf074cac3dfafd3d3> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/XML Support.bundle/Contents/MacOS/XML Support
    0xdf3a000 - 0xdf4eff3 com.apple.FCP Uncompressed 422.component 1.6 (1.6) <0bd250c3d641d5f10a52ae0295913399> /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xdfbe000 - 0xdfc1ffb com.apple.LiveType.component 2.1.4 (2.1.4) <7cd39a180f41e0a33aa85283d2960a81> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0xdfc6000 - 0xe028fff com.apple.LiveType.framework 2.1.4 (2.1.4) <2f9be5cbcd81d21841eeb6b677606614> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0xe047000 - 0xe08eff3 com.apple.motion.component 1.0 (687) <084ddfae408b48c58b6a98f3ab12a66d> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0xe094000 - 0xe096ffb +Motion ??? (???) <9167acca95cdc7e2ffc1ddc5b4c31bb4> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xe09b000 - 0xe139ff7 com.apple.procore.framework 4.0 (712) <7c7e4298ad4f6e2b3afa5d54fce4f794> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0xe177000 - 0xe18dffb com.apple.fcp.DVOutputUnit 1.3 (1.3) <9bf79a33b066e48a51e1ac7d8b584001> /Applications/Final Cut Pro.app/Contents/Resources/DVOutputUnit.bundle/Contents/MacOS/DVOutputUnit
    0xe33c000 - 0xe3c5fbf com.apple.AppleProResCodec 2.0 (224) <f243fd6cd0abef23b1c03879dbe63433> /Library/QuickTime/AppleProResCodec.component/Contents/MacOS/AppleProResCodec
    0xe3cc000 - 0xe4fdffb QuickTimeH264.altivec ??? (???) <bfb7e7a6b6b996de5a4cfcafb49fdf35> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0xe510000 - 0xe540fef com.apple.DVCPROHDCodec 1.5 (237) <085da018614927e20ddc696de8da87e2> /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0xe547000 - 0xe592fff com.apple.viceroy.codec 32.1 (32.1) /System/Library/Components/VCH263Codec.component/VCH263Codec
    0xe59b000 - 0xe636ff7 com.apple.AppleHDVCodec 1.5 (228) <ff8d7fef027554675b19d00d0750f91b> /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0xe643000 - 0xe664ffb com.apple.AppleVAFramework 4.1.16 (4.1.16) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0xe66a000 - 0xe685ff7 com.apple.AppleIntermediateCodec 1.3 (151) <9b9b7f37a81cc0b1f191ace9e04f5157> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xe68b000 - 0xe69efef com.apple.IMXCodec 1.4 (155) <c94656c54650501f04caee50453f07c9> /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0xe6a3000 - 0xe6e3ff7 com.apple.applepixletvideo 1.2.18 (1.2d18) <2373b6000acc27dcbdae6f6dc45ea88a> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xe6e8000 - 0xe726ff7 com.apple.QuickTimeFireWireDV.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe8c7000 - 0xe9c8ff3 com.apple.soundtrackpro.integration 3.0 (3.0) <027ed7498eafedbe4957000e244791ed> /Library/Application Support/ProApps/Bundles/Soundtrack Pro Integration.bundle/Contents/MacOS/Soundtrack Pro Integration
    0xe9f9000 - 0xea27ffb com.apple.motion.MotionBundle 4.0.0 (687) <7d567c48d0176d8e5f0e15a0f1ae4c3b> /Library/Application Support/ProApps/Bundles/Motion.bundle/Contents/MacOS/Motion
    0xedc5000 - 0xedc9fff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <ac58ebbd8e1179ff891b7a60b2ba33cc> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xeddd000 - 0xeddeffd com.apple.aoa.halplugin 2.5.8 (2.5.8f1) <0d6be2c83d2f582060ba48293d283cdd> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0xf000000 - 0xf027fe7 +com.digidesign.digidesign.DigiCoreAudioPlugIn 7.3 (7.3f117) /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0xf07d000 - 0xf0a6ffb com.apple.fcp.FCPAudioUnits 0.0.8 (1.1) <c30c24edb034df2787954de6c5dcd23b> /Applications/Final Cut Pro.app/Contents/Resources/FCPAudioUnits.bundle/Contents/MacOS/FCPAudioUnits
    0xf1ab000 - 0xf1cafff com.apple.OpenTransport 3.0 (3.0) /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0xf700000 - 0xf8dafff +ACBoxCombo.MusicDevice.component 1.0.0.006 (1.0.0) /Library/Audio/Plug-Ins/Components/ACBoxCombo.component/Contents/MacOS/ACBoxCom bo
    0x10000000 - 0x1005cfff com.apple.proapps.AudioMixEngine 2.0 (68) <2d46083f7fecef7dfbcb75d8f635cc86> /Applications/Final Cut Pro.app/Contents/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEngine
    0x1008b000 - 0x10270fef +PlexiCombo.MusicDevice.component 1.0.0.006 (1.0.0) /Library/Audio/Plug-Ins/Components/PlexiCombo.component/Contents/MacOS/PlexiCom bo
    0x10402000 - 0x105e5fef +TwangCombo.MusicDevice.component 1.0.0.009 (1.0.0) /Library/Audio/Plug-Ins/Components/TwangCombo.component/Contents/MacOS/TwangCom bo
    0x10772000 - 0x10a42ff7 +com.celemony.melodynebridge.au 3.1.0.9 (3.1.0.9) /Library/Audio/Plug-Ins/Components/MelodyneBridge.component/Contents/MacOS/Melo dyneBridge
    0x11000000 - 0x11029ffb com.apple.proapps.ControlSurfaceSupport 2.0 (68) <bbaea886815ee1ce10f2ec3ccf30ee26> /Applications/Final Cut Pro.app/Contents/Frameworks/ControlSurfaceSupport.framework/Versions/A/ControlS urfaceSupport
    0x11049000 - 0x117c2fe3 +com.borisfx.TextScrambler ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Text Scrambler.bundle/Contents/MacOS/Text Scrambler
    0x12215000 - 0x1298cfeb +com.borisfx.Title3D ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title 3D.bundle/Contents/MacOS/Title 3D
    0x133de000 - 0x13b53fff +com.borisfx.TitleCrawl ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title Crawl.bundle/Contents/MacOS/Title Crawl
    0x145a4000 - 0x14d1dffb +com.borisfx.VectorShape ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Vector Shape.bundle/Contents/MacOS/Vector Shape
    0x70000000 - 0x700cdff3 com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe30c23 dyld 97.1 (???) <89a0055b0e7ea2db881b73c6e63bc774> /usr/lib/dyld
    0x9000d000 - 0x9000dffc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9000e000 - 0x9000effb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9000f000 - 0x90010fff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x90011000 - 0x90018ffb com.apple.print.framework.Print 218.0.3 (220.2) <021d2263007c538fd9e6b52e66a2623d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90019000 - 0x9005dfff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9005e000 - 0x90063ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x90064000 - 0x907dafff com.apple.AppKit 6.5.9 (949.54) <687f1742c249d7c9268e2eb57713cef6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x907db000 - 0x907e0fff com.apple.CoreMediaAuthoringPrivate 1.6 (1.6) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x907e1000 - 0x90c0fffe libGLProgrammability.dylib ??? (???) <5d52750ec9e438b25d3a4db51361fa2b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90c10000 - 0x90c41fff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90ce9000 - 0x90cf4fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90d11000 - 0x90d7bfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90d7c000 - 0x90da9fff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90dea000 - 0x90df0fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <7f4de3ca234fdf3f06f25d47d7119e9b> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91814000 - 0x91817fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91818000 - 0x91b4aff7 com.apple.QuickTime 7.6.4 (1327.73) <2a47a570627b516ad5d7e2ee611c49fa> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91b4b000 - 0x91b4bff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91b8a000 - 0x91ba8fff com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91ba9000 - 0x91bbcffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <050180a659a3905ea38f2acddcdf7b40> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91bbd000 - 0x91c47fff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91d2f000 - 0x91db7ffb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <6fc8a8cb43506b57b951da899a55d3b9> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91db8000 - 0x91e87ffb com.apple.QuickTimeMPEG4.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x91e88000 - 0x91e98fff libsasl2.2.dylib ??? (???) <c0d4783f9b08dfd1bded5e0b5ffe37cb> /usr/lib/libsasl2.2.dylib
    0x91e99000 - 0x91e99ffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91fe3000 - 0x92002fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92003000 - 0x920e6fff libobjc.A.dylib ??? (???) <a1d4be2eed463c6799b6a1447fde72ba> /usr/lib/libobjc.A.dylib
    0x920e7000 - 0x92148fff com.apple.CoreText 2.0.4 (???) <ebcc2c7e9b0bc10016af530d82a11f03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92149000 - 0x921d1fff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x923ad000 - 0x923d6ffb com.apple.shortcut 1.0.1 (1.0) <8da20d176ab4cf71cdf4f79b477fe0e7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92526000 - 0x9252efff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x9252f000 - 0x92532ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92533000 - 0x92565fff com.apple.bom 9.0.1 (136.1.1) <1399341d4cd4b8d4c560e683bc81d73c> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92566000 - 0x925b0fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x925b1000 - 0x926cdff3 com.apple.JavaScriptCore 5530.19 (5530.19) <4dfec2404ff2e05424de2c6ac3181161> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x926ce000 - 0x92703fff com.apple.AE 402.3 (402.3) <75725936d014fd3ca2553d18b784b99b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92a07000 - 0x92a64ffb com.apple.HIServices 1.7.1 (???) <a6c5c0bf2d68aeb453dbc493b7d0c8d9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92b26000 - 0x92b26ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92b27000 - 0x92b2dffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92b2e000 - 0x92b46ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92b47000 - 0x92b8efff com.apple.NavigationServices 3.5.2 (163) <453fd79dd63debad4908dcc726f9aa04> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92c32000 - 0x92e78ffb com.apple.Foundation 6.5.9 (677.26) <c30e4aea51bbae480d4550cd53abb441> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92e79000 - 0x92e79fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92e7a000 - 0x92e94ffb com.apple.CoreVideo 1.6.0 (20.0) <2bc359d0334aa51fcf0534320dee89e9> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92e95000 - 0x92f10fff com.apple.SearchKit 1.2.2 (1.2.2) <a9d0033a5e1e55b5e382e52fe578d734> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92f2a000 - 0x93263ff7 com.apple.HIToolbox 1.5.6 (???) <a3b713a77c16da495c886463985f1e39> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93264000 - 0x932e9fff libsqlite3.0.dylib ??? (???) <daf55b073488086ef5b9a3781be53f14> /usr/lib/libsqlite3.0.dylib
    0x932ea000 - 0x93315ff7 libauto.dylib ??? (???) <a64d088b2d17e013b9ee5a08d3a20d33> /usr/lib/libauto.dylib
    0x9331b000 - 0x933ceffc com.apple.CFNetwork 438.14 (438.14) <6e213ab40eabfc276ca46a7c7cfad01a> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93411000 - 0x93420fff com.apple.DSObjCWrappers.Framework 1.3 (1.3) <305892aafaceb4e31915f0d759ef7e6d> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93421000 - 0x93436fff com.apple.IMUtils 4.0.8 (584) <798e21f99606c71cc5998dc473c8652b> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x93588000 - 0x941b3fef com.apple.QuickTimeComponents.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x941b4000 - 0x941c4ffb com.apple.agl 3.0.9 (AGL-3.0.9) <e751a9e491c3a9ef82c6405466106726> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94742000 - 0x94749fff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94767000 - 0x94a90fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94a91000 - 0x94a9ffff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x94d1d000 - 0x94d73fff libGLU.dylib ??? (???) <3418ce7ca0863162847f553c15d08674> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94d74000 - 0x94d74fff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94d75000 - 0x94d80ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94dd0000 - 0x94e52fff com.apple.print.framework.PrintCore 5.5.4 (245.6) <3cde2550ec10348b7162d2b6cb0dfc67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94e53000 - 0x94ee8ff7 com.apple.framework.IOKit 1.5.2 (???) <ced0a498252f76a2d2ba9f2a0ae02160> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94ee9000 - 0x94ef2fff com.apple.DiskArbitration 2.2.1 (2.2.1) <682f5c45591e8c4a89c79e384e2c49af> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95054000 - 0x95096fff com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95097000 - 0x950a4fff libbz2.1.0.dylib ??? (???) <03227e92407191ff8e754461e842201b> /usr/lib/libbz2.1.0.dylib
    0x951b9000 - 0x95325ff9 com.apple.AddressBook.framework 4.1.2 (702) <00009729166ef5c0294f864e1c4e54c9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95326000 - 0x953b5ffb com.apple.DesktopServices 1.4.8 (1.4.8) <efaf20fbcdf58c7da37ddbcf190bba75> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95430000 - 0x9543bffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x9543c000 - 0x95458fff com.apple.IMFramework 4.0.8 (584) <c700ba51b41e931a186ebff34b250f15> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x95459000 - 0x954a8fff com.apple.Metadata 10.5.8 (398.26) <1a261534027b9d1518327d1fabe1182b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x954a9000 - 0x954f8fff libGLImage.dylib ??? (???) <2e1f2a2625064149d209ec19e52d0384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9552b000 - 0x95553fff libxslt.1.dylib ??? (???) <bb985380f353bbc7ce694d56884ea156> /usr/lib/libxslt.1.dylib
    0x95554000 - 0x955edfc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x955ee000 - 0x9560affb com.apple.openscripting 1.2.8 (???) <01f86cdb8f7347d2f3f13066e954acb6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9560b000 - 0x9561efff com.apple.LangAnalysis 1.6.5 (1.6.5) <2a661ad6e432dd62dd831e234904061f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95708000 - 0x95709ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9570a000 - 0x958ccff4 com.apple.CoreAUC 3.08.0 (3.08.0) <9d8d7368e2d3b11318a3556c6d4902a1> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x95b4e000 - 0x95b6dfff libresolv.9.dylib ??? (???) <c5c72e1cf61cb844163156956a1d8407> /usr/lib/libresolv.9.dylib
    0x95bd6000 - 0x95be2ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95be3000 - 0x95f48ffe com.apple.QuartzCore 1.5.8 (1.5.8) <60e54cfb861dc5e66bb4f263a192d558> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95f49000 - 0x9601cfff com.apple.CoreServices.OSServices 228 (228) <8610aed4edbd5d21e887a68c32b5c216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9601d000 - 0x961beff7 com.apple.QuartzComposer 2.1 (106.13) <6dd1df71cb588b1b9ceb0c5bbf32e842> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96235000 - 0x96254fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96255000 - 0x962bcffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x962fb000 - 0x968b5fff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x968b6000 - 0x969caffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x969cb000 - 0x96a82fff com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96a83000 - 0x96a86ff3 com.apple.QuickTimeH264.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x96a87000 - 0x96bacff3 com.apple.CoreFoundation 6.5.7 (476.19) <dee0f0024f3bf976cfa0a0816e8aa338> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96cfa000 - 0x96daafff edu.mit.Kerberos 6.0.13 (6.0.13) <2ed20a450576465ee4f9c317b8ce8c44> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96dab000 - 0x96f4bff3 libSystem.B.dylib ??? (???) <900415cd2c829b2de9a6cdcdaa6307e3> /usr/lib/libSystem.B.dylib
    0x96f4c000 - 0x97042ffc libiconv.2.dylib ??? (???) <05ae1fcc97404173b2f9caef8f8be797> /usr/lib/libiconv.2.dylib
    0x97043000 - 0x9705affb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9705b000 - 0x97084fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x97085000 - 0x9714dffb com.apple.CoreData 100.2 (186.2) <be912ff41bd4506438a71d5665e89069> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9714e000 - 0x97187fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <21dee7ffd93306032f911b5ef3fdbab3> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97188000 - 0x971eaffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x971eb000 - 0x97310ffb com.apple.imageKit 1.0.2 (1.0) <50dfcbe41b384bd71761c761c3fbfd5e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x973e1000 - 0x973efff3 com.apple.opengl 1.5.10 (1.5.10) <54bae289e544387ce7997a4a05e70aa9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    For "Could not open key/write value" errors when reinstalling try b noir's user tip:
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\
    [LongStringOfLettersAndNumbers]" error messages when installing iTunes for Windows.
    The technique can be applied to the branch of the registry mentioned in the error message.
    If you still have issues see Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Premiere Pro Freezing on "Scanning Audio Plug-ins"

    Hi All,
    Adobe Premiere Pro freezes as I wait for "Scanning Audio Plug-Ins." The program "dvaaudiovideoscan" program has opened, but nothing is happening.
    -I have uninstalled and reinstalled.
    -Deleted my "8.0" user folder in documents.
    My iMac has run and has enough power to run Premiere Pro past and present.
    I don't know what to do. I also appreciate that Adobe has no number that I can call even though I'm paying for this service.
    Please help community!
    Peter

    Resolved. Called 1-877-722-7088.

  • Audio plug ins (stillwell audio) appear even after deleted

    I had some stillwell audio plug ins, they didnt ned them anymore so i deleted them, did a system search and deleted all the files that have to relate to stillwell plug ins, then went on to ableton and logic(I installed logic after the start of the iusse) and they still appeared and are still fully functional, so I went on searching for these files even deeper and couldent find them, they dont exist when i search them. so i contacted stillwell customer service and they listed how to find the files and i did all what they said and it still shows up, so now im asking the apple community, DO YOU GUYS KNOW WHATS GOING ON!!
    thanks, teliik

    Hello TELIIK,
    It sounds like you just did a search for the plug-ins, but I found an article that tells you exactly where to look for these plug-ins:
    Finding Audio Units plug-ins on your computer
    http://support.apple.com/kb/HT1295
    The important part of this article states:
    The Apple Audio Units plug-ins are built into the operating system and do not appear as discrete files. Plug-ins from other manufacturers appear as individual components on your hard disk. They may be found in two places:
    /Library/Audio/Plug-Ins/Components
    ~/Library/Audio/Plug-Ins/Components ("~" represents your home directory.)
    The ~/Library is a hidden folder in Lion and Mountain Lion.  You can find instructions for accessing it here:
    OS X Mountain Lion: What is the Library folder?
    http://support.apple.com/kb/PH11395
    The Library folder is hidden. If you need to open it, make sure you are in the Finder, hold down the Option key, and then choose Go > Library.
    I hope this helps you locate those those plug-ins!
    Best,
    Sheila M.

  • Compressor Audio plug-ins (can you add third party audio plug-ins?)

    Compressor Audio plug-ins
    Can you add third party audio plug-ins? Just need a simple audio compressing/mastering solution for a lot of non-technically minded producers. So trying to avoid using soundtrack.
    cheers
    steve

    Hi B
    Really sure You are looking into Your "user" folder ?
    In this there is a folder with in my case "my account" eg "Bengt"
    in this ther IS a library folder
    and in this ther should be an iMovie folder. If not I would make one
    and into this put a folder "Plug-ins" and in this put Your plug-ins.
    Restart Your Mac and open iMovie and see if it found the new plug-ins.
    Yours Bengt W

  • How to fix permissions in /Library/Audio/Plug-ins in Lion

    I noticed that very annoyingly, Lion comes with the following default permissions for /Library/Audio/Plug-ins:
    drwxr-xr-x  9 root  wheel  306 Oct  7 07:37 Plug-Ins
    That means that you the user cannot drag a plug-in in and out as you wish. What a pain in the butt!
    Simple fix:
    sudo chown -R myusername:wheel /Library/Audio/Plug-Ins
    sudo chmod -R 775 /Library/Audio/Plug-Ins
    Now it's like it should be: you own your own darn folder!
    Does anyone have a better way to do this? Like would you recommend just doing the chmod without the chown? Just curious. Also, I wonder why Apple made this curious modification to the system in Lion... it feels like they're increasing the level of restriction upon the owner of the computer from being able to use it themselves.

    1.Click on finder
    2. Look for GO menu at the top of the screen
    3. Click on it and select go to folder option
    4. Paste  or type /Library/Audio/Plug-Ins/Components there
    5. Navigate to this folder
    6. Copy and paste the component to that folder. It should ask if you want to replace the original file(files). Click on yes
    Hope this will help

  • UPGRADING from TIGER to LEOPARD causes audio plug ins scan WAVES PROBLEMS

    I have upgraded my G5 from Tiger to Leopard and am now running 10.5.8. I am using LOGIC PRO 8 and have upgraded that to 8.0.2. When i open LOGIC PRO and it starts to scan the audio plug ins-it causes a problem that sends me to PACE-the Interlok site for my WAVES-it says this:
    IMPORTANT!
    If you're running Mac OS X 10.5 or above and your software keeps driving you back to this site, even after installing the latest extensions, then you need to update your software, not the extensions. Contact the publisher of the software you're trying to use regarding a 10.5 compatible update. Please don't contact PACE. Only the publisher of your software can resolve this issue.
    SO-i downloaded their latest extension and i keep getting brought back to their site. My software IS updated -from 8 to 8.0.2
    PLEASE HELP

    You provided almost all information except the waves version. Most probably Waves are outdated.

  • Audio Plug-Ins Won't Let FCP Open

    Does anybody know how to disable audio plug-ins within FCP? I have a Waves bundle for use with Pro Tools on the same computer. The Waves plugs are authorized with an iLok. If that iLok isn't present, FCP closes during launch because it can't open the waves plugs.

    Nick Holmes wrote:
    Move the plugs out of the FCP Plugins folder.
    It's really that simple.
    Sorry to resurrect this thread, but its really *not that simple*.
    You see FCP will load 3rd party AU's that are in a shared folder - Library -> Audio -> Plug-Ins -> Components. If I want the AU's to show up in Soundtrack for example they have to be in that folder, but then FCP will load them as well.
    I have a Powercore that I don't want to use in FCP, but want to use in Soundtrack. It causes FCP's load time to triple and it's really annoying. I've found no trace of a plug-ins folder that is just for soundtrack either.
    I suppose that AudioUnit Manager will do the trick but I really did not want to install yet another app to sort this out but that seems to be the only option at this time.

  • Finding Library/Audio/Plug-Ins/Components folder???

    I am having the hardest time finding this folder...can someone please guide me in the right direction?
    I tried using the Finder and Spotlight but to no avail.
    Thanks!!

    You may want to go to two different folders:
    /Library/Audio/Plug-Ins/Components
    ~/Library/Audio/Plug-Ins/Components (~ is your user folder)
    To go to that folder, just open a Finder window, select the Go menu (on the menu bar) > Go to Folder, and type /Library/Audio/Plug-Ins/Components or ~/Library/Audio/Plug-Ins/Components, and you will go to the folder

Maybe you are looking for

  • Not able to change UOM in material master for a material

    Hi all , I have a issue with changing of the UOM in the material master , IN MMO2  after changing the UOM , in Display error , its showing the error as : The base unit of                                      The reasons for                           

  • How do I turn on Safari Java functionality?

    How do I enable java functionality on the iPhone's Safari applet?

  • Installing/uninstalling application

    i hope i am not asking some stupid question, but there are a few burning question in my chest and i can't find answer in Mac Help.I am completely new to Mac and its architecture. I just owned one for a few days and I am loving it :P. I am used to be

  • Install error for Adobe flash 11.8

    I work at a school that uses Smart Tech (smartboard interactive). With the new version of Adobe Flash, the animation will not work. I need to downgrade Adobe Flash to 11.8 version in order for the Smarttech (smartboard) to use the animation portion o

  • HELP! Firefox keeps randomly switching windows.

    Every time I open a new window link from a current window, the new window will pop up like normal. But after I click on anything inside the new window, Firefox randomly switches to the previous window and I have to reclick the new window to get it ba