Parsing binary file- unsigned longs

Hello everyone.
I'm currently trying to write a quick parser for a binary file format (ASF). However, java's handling of bit shifting and lack of unsigned types is driving me completely mad.
How can I represent an unsigned long?
How can I set the bits for it anyway? It seems that the shift operator can't shift more than an int's worth (it just loops around and starts adding to the other bits- weird).
Thanks in advance.
Simon

ejp wrote:
But why in the world does the following code also do nothing?
long x = 45 << 32;
Try long x = 45L << 32;
The answer appears to be that java uses ints to represent all constants, but this presents some serious problems- namely- how on earth do you get a number bigger than an int into a long?With 'L'. Same as in C or C++. In Visual Basic it's '&'. There's generally something.Where did that come from? Why have I never seen anything like that before?
If I do long x = 0x7FFFFFFF; all is well, but if I do long x = 0x80000000; I get FFFFFFFF80000000, which isn't what I asked for.Actually it is exactly what you asked for. You've overlooked several facts: (i) Java longs are 64 bits; (ii) you specified a negative 32-bit constant; (iii) the rules of every programming language I can think of provide for sign-extension when going from a shorter to a longer type.Right. It makes sense now that I know how to specify long constants.
As someone pointed out signed/unsigned is actually the same, so long as you interpret it correctly. So to avoid the total stupidity of using twice as much memory for everything I've decided that I am actually going to use the correct types.They're not the correct types. As I pointed out in an earlier post, your 'unsigned longs' must be coming from C or C++ where they are generally 32 bits, so using a 64-bit Java long is incorrect.Where they came from doesn't matter. The spec doesn't say it's a "long"- it says that this particular value is 64bit, and that all values are unsigned. So I do need a Java long.
WHY IN THE WORLD IS JAVA "INTELLIGENT" WHEN DOING THINGS BITWISE? WHICH BRAIN DEAD IDIOT THOUGHT THAT UP? That is broken and is asking for trouble.It is you who is asking for trouble here. The rules of Java are consistent and in conformity with the practice in other programming languages. You've just overlooked several relevant facts.I think I've worked out where I was going wrong here. When doing something like
int i;
long x;
x = x | i;The i is converted to a long before the bitwise operation, so it's not the bitwise operation that's the problem, it's the conversion between int and long?
It's not Java whose stupidity is the issue here ;-)That wouldn't surprise me.
Thanks.

Similar Messages

  • How to parse binary files

    Hi All,
    I have one binary file (abc.dat) file I want to parse that file and need it in text format.
    Can anyone tell me how can I achieve that? is there any third party tools available?
    lines are like below:
    00000000h: 76 04 00 01 00 FF 0F 11 FF 09 07 03 15 ; v....
    can anyone have idea how can i resolve this?
    Thanks!!!

    Hi
    thanks for reply...
    actually what I want is a line that I have posted in first conversation the whole file has lines like that. Now, I want to convert that file in to text format.
    right now I am reading lines with the below code...
    try{
                   FileInputStream fstream = new FileInputStream("test.dat");
                   DataInputStream in = new DataInputStream(fstream);
                   BufferedReader br = new BufferedReader(new InputStreamReader(in));
                   //BufferedInputStream bufferedInputStream = new BufferedInputStream(in);
                   String strLine;
    //               Read File Line By Line
                   while ((strLine = br.readLine()) != null) {
    //                Print the content on the console
                   System.out.println (strLine);
    //               Close the input stream
                   in.close();
                   }catch (Exception e){//Catch exception if any
                   System.err.println("Error: " + e.getMessage());
                   }and I don't get output in the text format.
    So, after doing this can anyone please tell me how can I get decoded format file?
    what are the next steps I should go?
    For, example we can go for (index.dat) file.
    Thanks!!!

  • Signature: FSUpdateOperationStatus(void const*, TCountedPtr TCFURLInfo const&, long long, long long, long long, long long, unsigned long). No support Docs on file for this problem. Multiple crashes on opening Firefax. Running OSX 10.6.4.

    Signature:
    FSUpdateOperationStatus(void const*, TCountedPtr<TCFURLInfo> const&, long long, long long, long long, long long, unsigned long)
    No Support Docs on File.
    Firefox crashes every time it is opened.
    UUID 38fc1438-492f-4ce3-91d4-5ef922101027
    Time 2010-10-27 11:19:32.620395
    Uptime 11
    Last Crash 110 seconds before submission
    Install Age 610295 seconds (1.0 weeks) since version was first installed.
    Product Firefox
    Version 3.6.11
    Build ID 20101012104758
    Branch 1.9.2
    OS Mac OS X
    OS Version 10.6.4 10F569
    CPU x86
    CPU Info GenuineIntel family 6 model 15 stepping 11
    Crash Reason EXC_BAD_ACCESS / KERN_PROTECTION_FAILURE
    Crash Address 0x8
    User Comments
    Processor Notes
    EMCheckCompatibility Fal

    Looking at the crash log it looks like AE might be crashing in:
    net.telestream.wmv.export 
    Can you try uinstalling Flip4Mac (or whatever you have installed from http://www.telestream.net/telestream-products/desktop-products.htm)? You may need to manually go deep into /System to remove them.
    --c

  • The first binary file write operation for a new file takes progressively longer.

    I have an application in which I am acquiring analog data from multiple
    PXI-6031E DAQ boards and then writing that data to FireWire hard disks
    over an extended time period (14 days).  I am using a PXI-8145RT
    controller, a PXI-8252 FireWire interface board and compatible FireWire
    hard drive enclosures.  When I start acquiring data to an empty
    hard disk, creating files on the fly as well as the actual file I/O
    operations are both very quick.  As the number of files on the
    hard drive increases, it begins to take considerably longer to complete
    the first write to a new binary file.  After the first write,
    subsequent writes of the same data size to that same file are very
    fast.  It is only the first write operation to a new file that
    takes progressively longer.  To clarify, it currently takes 1 to 2
    milliseconds to complete the first binary write of a new file when the
    hard drive is almost empty.  After writing 32, 150 MByte files,
    the first binary write to file 33 takes about 5 seconds!  This
    behavior is repeatable and continues to get worse as the number of
    files increases.  I am using the FAT32 file system, required for
    the Real-Time controller, and 80GB laptop hard drives.   The
    system works flawlessly until asked to create a new file and write the
    first set of binary data to that file.  I am forced to buffer lots
    of data from the DAQ boards while the system hangs at this point. 
    The requirements for this data acquisition system do not allow for a
    single data file so I can not simply write to one large file.  
    Any help or suggestions as to why I am seeing this behavior would be
    greatly appreciated.

    I am experiencing the same problem. Our program periodically monitors data and eventually save it for post-processing. While it's searching for suitable data, it creates one file for every channel (32 in total) and starts streaming data to these files. If it finds data is not suitable, it deletes the files and creates new ones.
    On our lab, we tested the program on windows and then on RT and we did not find any problems.
    Unfortunately when it was time to install the PXI on field (an electromechanic shovel on a copper mine) and test it, we've come to find that saving was taking to long and the program screwed up. Specifically when creating files (I.E. "New File" function). It could take 5 or more seconds to create a single file.
    As you can see, field startup failed and we will have to modify our programs to workaround this problem and return next week to try again, with the additional time and cost involved. Not to talk about the bad image we are giving to our costumer.
    I really like labview, but I am particularly upset beacuse of this problem. LV RT is supposed to run as if it was LV win32, with the obvious and expected differences, but a developer can not expect things like this to happen. I remember a few months ago I had another problem: on RT Time/Date function gives a wrong value as your program runs, when using timed loops. Can you expect something like that when evaluating your development platform? Fortunately, we found the problem before giving the system to our costumer and there was a relatively easy workaround. Unfortunately, now we had to hit the wall to find the problem.
    On this particular problem I also found that it gets worse when there are more files on the directory. Create a new dir every N hours? I really think that's not a solution. I would not expect this answer from NI.
    I would really appreciate someone from NI to give us a technical explanation about why this problem happens and not just "trial and error" "solutions".
    By the way, we are using a PXI RT controller with the solid-state drive option.
    Thank you.
    Daniel R.
    Message Edited by Daniel_Chile on 06-29-2006 03:05 PM

  • Writing binary files & trouble with no unsigned byte type

    I've got a fair amount of Java experience, enough to know what I'm doing most of the time but I do have a vast experience with C & C++ which helps my Java. I've stumbled across a problem when trying to write out files in binary.
    If I was to write out a binary file, I would always choose C/C++ to do this because simply because I'm at ease with the implementation.
    I've now written a Java program which needs to output a file in binary and I'm having real issues doing the most simple things because of no unsigned support.
    I want to write out elements byte-by-byte and make use of the 8-bits provided in the byte type in Java.
    Let's assume I've done my processing and I end up with an int. I know that this int is 0-255 in value. I now want to pack it into a byte and write it to my file. How do I go about assigning the byte without Java 'converting' it to a signed byte? I simply want to copy the lower 8-bits of the int and duplicate them into the byte variable - no conversion.
    In C you would do something like this:
    char mySignedChar = *( (char*)&(unsigned char)myInt ) );
    What's the Java equivalent? Am I going about this the right way?

    Whether a byte is signed or unsigned only matters if one is doing arithmetic on it. If the int is 0-255 then you just cast to a byte using
    byte theByte = (byte)theIntValue;When reading back you just use
    int theByteAsAnInt = theByte & 0xff;

  • Read an avi file using "Read from binary file" vi

    My question is how to read an avi file using "Read from binary file" vi .
    My objective is to create a series of small avi files by using IMAQ AVI write frame with mpeg-4 codec of 2 second long (so 40 frames in each file with 20 fps ) and then send them one by one so as to create a stream of video. The image are grabbed from USB camera. If I read those frames using IMAQ AVI read frame then compression advantage would be lost so I want to read the whole file itself.
    I read the avi file using "Read from binary file" with unsigned 8 bit data format and then sent to remote end and save it and then display it, however it didnt work. I later found that if I read an image file using "Read from binary file" with unsigned 8 bit data format and save it in local computer itself , the format would be changed and it would be unrecognizable. Am I doing wrong by reading the file in unsined 8 bit integer format or should I have used any other data types.
    I am using Labview 8.5 and Labview vision development module and vision acquisition module 8.5
    Your help would be highly appreciated.
    Thank you.
    Solved!
    Go to Solution.
    Attachments:
    read avi file in other data format.JPG ‏26 KB

    Hello,
    Check out the (full) help message for "write to binary file"
    The "prepend array or string size" input defaults to true, so in your example the data written to the file will have array size information added at the beginning and your output file will be (four bytes) longer than your input file. Wire a False constant to "prepend array or string size" to prevent this happening.
    Rod.
    Message Edited by Rod on 10-14-2008 02:43 PM

  • How to convert proprietary binary file

    Hi All,
    I've got a problem that i can only tell you a little about due to the fact that i've signed a non-disclosure agreement which prevents me from telling you all the information that i have. I know my way around LV reasonably well but have no experience of programming C or C++. I have a data capture device that saves files in a properitary binary format.
    I've got partially there - i have a Read From Binary File.vi working to read in a string. I then typecast this to U8 and hey presto i get out most of the data that i am looking for. The problem is that there is a mix of ints, chars, and others and i don't have access to that data (which is what i want).
    The manufacturer has given me a bit of code that explains the file format, but the problem is that i cannot quite understand it (nor can i post it). However, it goes something like this:
    #define blah blah
    struct blah blah
          union
                  unsigned char blah;
                  struct
                           unsigned char blah     :1;
                           unsigned char blah     :3;
                           unsigned char blah     :2;
                  }    blah;
           }blah;
          unsigned char blah;
          double blah;
          int blah;
          int blah;
    Blah stand for various variables.
    Could someone have a stab at explaining what is going on. I am guessing that if i use some sort of cluster (=struct??) then i might be able to get the info that i need.
    Thanks.
    Phil

    Easy part out of the way first: You do not need to read the file into a string and then typecast to a U8. You can simply read as a byte array by just doing this:
    OK. Next part. What's probably stumbling you is the use of struct and union. Yes, a struct is basically a cluster. A structure is an ordered set of items. Each member is located in memory one after the other (I'm ignoring memory alignment here for the sake of illustration). A union, on the other hand describes an object in which all of the members start at the same memory location. However, only one member is actually present in terms of value. The amount of storage is the size of the largest member. In the example you provided what's being described is the following (again, ignoring memory alignment considerations here for the sake of illustration):
    "something" that is 3 bytes long (since the struct member is longer than the single unsigned char)
    a 1 byte unsigned char
    a double (8 bytes - most likely)
    an int (4 bytes - most likely)
    an int (4 bytes - most likely)
    The "something" is the union, and it can be represent either a single 1 byte value (with the other 2 bytes being meaningless), or a structure of 3 separate 1 byte values. Which one it is depends on the variable values that were written to file, so you need to know something about what was written. 
    Now I said that I was ignoring memory alignment issues for illustration. Well, you can't.  This just means that the amount of memory used will be larger than a simple addition of the size of each datatype. Let's take a simple example:
    struct y {
       char a;
       short b;
       char c;
    How many bytes is y? The direct addition would tell you 4 (1 + 2 + 1). However, the more likely answer is 6 since memory alignment consideration dictate that you need to start on an "even" memory address. A C compiler will tell you the correct answer because this is platform dependent.
    So what does all this mean to you? Well, my suggestion is that you write a wrapper DLL to convert the file since you will be able to cast the data you read from file directly into a variable of the type of the overall struct. Trying to deal with this in LabVIEW is probably not worth the effort.
    Caveat: I'm no C expert, so I hope that I didn't say anything that was outrageously wrong. If I did, someone please correct me!
    Message Edited by smercurio_fc on 11-07-2008 10:00 AM
    Attachments:
    Example_VI_BD.png ‏1 KB

  • Fulltext search of binary files outside of database in SQL 2012/Server 2012

    This may be more of a Windows Server 2012 question but I'm not sure.
    I have a system that holds large amounts of binary files (pdf, doc, etc.).  The files themselves are held outside the database in a folder and a SQL table holds the metadata.  I used the Indexing Service available through Windows Server 2008 to
    create a catalog called "EFCATALOG" to index the contents of the external folder, then created a linked server called MYIDXS which allowed me to query that external indexing catalog from within SQL with a query like this:
    EXEC sp_addlinkedserver MYIDXS, 'Internal App', 'MSIDXS', 'EFCATALOG'
    SELECT * FROM MYDOCS
    LEFT JOIN OPENQUERY(MYIDXS,'SELECT FILENAME FROM SCOPE() WHERE CONTAINS (''test'')') AS MYTBL
    ON MYDOC_FILE_NAME = MYTBL.[FILENAME]
    With Windows Server 2012, I'm missing the functionality to create the indexing service catalog.  I've added the Windows Search Service and see how I can configure folders for searching, but there is no naming functionality for this and I don't see how
    I can get the above query/structure to work in Windows Server 2012/SQL Server 2012 environment.  In fact, there isn't much at all online regarding the search service or the relationship back to the older versions in 2008 and before.
    Is there any way to continue this structure in 2012?  I would like to avoid recoding my application to work with a different structure.  I'm afraid that changing everything to work with the FILETABLE/FILESTREAM functionality added in SQL 2012
    will be necessary which is fine long term, but not convenient right now.
    Thanks in advance for any suggestions/help.

    Thank you Fanny Liu, based on your link the syntax has changed dramatically. I need to query SYSTEMINDEX now and the structure is very different.    It still seems that this new syntax requires creating a linked server of a different type. 
    I've tried:
    EXEC sp_addlinkedserver @server = 'TEST', @provider = 'Search.CollatorDSO.1', @datasrc = 'SYSTEMINDEX', @srvproduct = '', @provstr='Application=Windows'
    SELECT FileName FROM OPENQUERY("TEST", 'SELECT Filename FROM SYSTEMINDEX')
    Msg 7302, Level 16, State 1, Line 1
    Cannot create an instance of OLE DB provider "Search.CollatorDSO.1" for linked server "TEST".
    I've also tried using just "Search.CollatorDSO"as the provider since that is the provider name listed in management studio but basically the same error comes back.
    So I have 2 questions:
    1) Is it possible for my original process to work in Windows Server 2012 in any way (meaning that the OPENQUERY example I provided can remain relatively unchanged)?
    2) If change is necessary using this new SYSTEMINDEX and linked server combination, why is my linked server definition failing?  I'm using SQL Server 2012....Microsoft SQL Server 2012 - 11.0.2100.60 (X64)
     Feb 10 2012 19:39:15
     Copyright (c) Microsoft Corporation
     Express Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    Thank you.

  • How can I read a binary file stream with many data type, as with AcqKnowledge physio binary data file?

    I would like to read in and write physiological data files which were saved by BioPac�s AcqKnowledge 3.8.1 software, in conjunction with their MP150 acquisition system. To start with, I�d like to write a converter from different physiodata file format into the AcqKnowledge binary file format for version 3.5 � 3.7 (including 3.7.3). It will allow us to read different file format into an analysis package which can only read in file written by AcqKnowledge version 3.5 � 3.7 (including 3.7.3).
    I attempted to write a reader following the Application Note AS156 entitled �AcqKnowledge File Format for PC with Windows� (see http://biopac.com/AppNotes/ app156Fi
    leFormat/FileFormat.htm ). Note the link for the Mac File format is very instructive too - it is presented in a different style and might make sense to some people with C library like look (http://biopac.com/AppNotes/ app155macffmt/macff.htm).
    I guess the problem I had was that I could not manage to read all the different byte data stream with File.vi. This is easy in C but I did not get very far in LabView 7.0. Also, I was a little unsure which LabView data types correspond to int, char , short, long, double, byte, RGB and Rect. And, since it is for PC I am also assuming the data to be written as �little endian� integer, and thus I also used byte swap vi.
    Two samples *.acq binary files are attach to this post to the list. Demo.acq is for version 3.7-3.7.2, while SCR_EKGtest1b.acq was recorded and saved with AcqKnowledge 3.8.1, which version number is 41.
    I would be grateful if you someone could explain how to handle such binary file stream with LabView and send an example to i
    llustrate it.
    Many thanks in advance for your help.
    Donat-Pierre
    Attachments:
    Demo.acq ‏248 KB
    SCR_EKG_test1b.acq ‏97 KB

    The reading of double is also straight forward : just use a dble float wired to the type cast node, after inverting the string (indian conversion).
    See the attached example.
    The measure of skin thickness is based on OCT (optical coherent tomography = interferometry) : an optical fiber system send and received light emitted to/back from the skin at a few centimeter distance. A profile of skin structure is then computed from the optical signal.
    CC
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Read_AK_time_info.vi.zip ‏9 KB

  • .m2v files no longer work in DVD studio pro 4

    Everything worked fine until about a month ago and now, dvdsp wont do anything but crash when I try to bring up an m2v in it, here is the latest report... The wierd thing is it works perfectly fine in mpeg streamclip. and in quicktime 7.6 but no go for studio pro... help please?
    Process: DVD Studio Pro [930]
    Path: /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro
    Identifier: com.apple.dvdstudiopro
    Version: 4.1.2 (431.6.2)
    Build Info: DSP-4310602~4
    Code Type: X86 (Native)
    Parent Process: launchd [107]
    Date/Time: 2010-10-27 16:54:31.955 -0500
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 114059 sec
    Crashes Since Last Report: 9
    Per-App Interval Since Last Report: 8347 sec
    Per-App Crashes Since Last Report: 9
    Anonymous UUID: 3054805F-D8EC-465F-90BC-790C32FFF541
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 19
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x91937142 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91964cbc pthread_condwait + 1089
    2 libSystem.B.dylib 0x919ad203 pthreadcondwait + 48
    3 com.apple.dvdbase 0x00787fa0 MPLThreadSignalPosixImpl::wait(unsigned long) + 322
    4 com.apple.dvdbase 0x0077a88a MPLFilter::waitForStateChangeComplete() const + 28
    5 com.apple.dvdbase 0x0077fc9a MPLGraph::internalChangePlayState(MPLiGraph::PlayState const&) + 228
    6 com.apple.dvdbase 0x0077fe8a MPLGraph::changePlayState(MPLiGraph::PlayState const&) + 46
    7 com.apple.dvdbase 0x00775ce7 -[DSPMediaPipeline setPlayState:] + 51
    8 com.apple.dvdbase 0x0083837c -[MSDPipelineAdapter getDisplayedImage:atSCR:thumbnailSize:image:displayMode:useOriginal:] + 352
    9 com.apple.dvdbase 0x0088057a -[DVDAssetArray processThumbnailCreation:atTime:thumbnailSize:displayField:] + 396
    10 com.apple.dvdbase 0x0090ad4b -[DVDVideoAsset createThumbnailAtTime:withSize:displayField:] + 153
    11 com.apple.CoreFoundation 0x98888a8d _invoking__ + 29
    12 com.apple.CoreFoundation 0x988889f8 -[NSInvocation invoke] + 136
    13 com.apple.dvdbase 0x0081abe1 -[ThumbnailCache getThumbnail:atTime:objectID:withChecksum:withSize:creationCallback:notificatio nObjectID:project:] + 540
    14 com.apple.dvdbase 0x00819abe -[ThumbnailCache getThumbnail:atTime:objectID:withChecksum:withSize:creationCallback:] + 127
    15 com.apple.dvdbase 0x00819a39 -[ThumbnailCache getThumbnailForImagePath:withObjectID:atTime:withSize:creationCallback:] + 105
    16 com.apple.dvdbase 0x0090b018 -[DVDVideoAsset getThumbnailAtTime:withSize:displayField:useCache:] + 436
    17 com.apple.dvdbase 0x0087a581 -[DVDAsset(MethodsFromInterfaceLayer) getThumbnailWithAt:size:useCache:] + 77
    18 com.apple.dvdbase 0x00842338 -[DSPAssetThumbnailExporter getThumbnailWith:at:bgColor:useCache:] + 216
    19 com.apple.dspinterface 0x000ad471 -[DSPXInspectorVideoAssetViewModule refreshPreviewImage] + 282
    20 com.apple.dspinterface 0x000ac6a8 -[DSPXInspectorVideoAssetViewModule awakeFromNib] + 268
    21 com.apple.AppKit 0x94797580 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1646
    22 com.apple.AppKit 0x94a2a7ad old_loadNib + 295
    23 com.apple.AppKit 0x94794bdb +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 959
    24 com.apple.AppKit 0x94794811 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    25 com.apple.AppKit 0x948244c3 -[NSWindowController loadWindow] + 223
    26 com.apple.dvdbase 0x00a2774e -[PBXModule loadView] + 75
    27 com.apple.dvdbase 0x00a277db -[PBXModule loadWindow] + 33
    28 com.apple.AppKit 0x947bb28e -[NSWindowController window] + 89
    29 com.apple.dvdbase 0x00a2754a -[PBXModule view] + 74
    30 com.apple.dspinterface 0x000b8682 -[DSPXInspectorMainCategoryViewModule buildCategoryView:project:] + 785
    31 com.apple.dspinterface 0x000b770e -[DSPXInspectorMainCategoryViewModule loadCategory:subCategoryID:document:] + 999
    32 com.apple.dspinterface 0x000b731f -[DSPXInspectorMainCategoryViewModule updateWithSelectionNotification:] + 253
    33 com.apple.Foundation 0x98b2926c nsnotecallback + 345
    34 com.apple.CoreFoundation 0x9886a3c3 __CFXNotificationPost + 947
    35 com.apple.CoreFoundation 0x98869dca _CFXNotificationPostNotification + 186
    36 com.apple.Foundation 0x98b1e090 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    37 com.apple.dspinterface 0x0005f54b -[DSPXProjectDocument(DSPXProjectDocumentNotificationCategory) postProjectNotificationName:userInfo:] + 573
    38 com.apple.dspinterface 0x00013c82 -[DSPXProjectBinModule postSelectionNotification:] + 292
    39 com.apple.dspinterface 0x00018a7b -[DSPXProjectBinModule outlineViewSelectionDidChange:] + 153
    40 com.apple.Foundation 0x98b2926c nsnotecallback + 345
    41 com.apple.CoreFoundation 0x9886a3c3 __CFXNotificationPost + 947
    42 com.apple.CoreFoundation 0x98869dca _CFXNotificationPostNotification + 186
    43 com.apple.Foundation 0x98b1e090 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    44 com.apple.Foundation 0x98b2b46d -[NSNotificationCenter postNotificationName:object:] + 56
    45 com.apple.AppKit 0x94870732 -[NSTableView _enableSelectionPostingAndPost] + 509
    46 com.apple.AppKit 0x9487be2f -[NSTableView selectRowIndexes:byExtendingSelection:] + 168
    47 com.apple.dspinterface 0x00016aa1 -[DSPXProjectBinModule _selectItems:byExtendingSelection:scrollToVisible:] + 356
    48 com.apple.dspinterface 0x00015f63 -[DSPXProjectBinModule _importFilesAfterDelay] + 657
    49 com.apple.Foundation 0x98b579f5 __NSFireTimer + 282
    50 com.apple.CoreFoundation 0x9884d70b __CFRunLoopRun + 8059
    51 com.apple.CoreFoundation 0x9884b094 CFRunLoopRunSpecific + 452
    52 com.apple.CoreFoundation 0x9884aec1 CFRunLoopRunInMode + 97
    53 com.apple.HIToolbox 0x961fcf9c RunCurrentEventLoopInMode + 392
    54 com.apple.HIToolbox 0x961fcd51 ReceiveNextEventCommon + 354
    55 com.apple.HIToolbox 0x961fcbd6 BlockUntilNextEventMatchingListInMode + 81
    56 com.apple.AppKit 0x947d7a89 _DPSNextEvent + 847
    57 com.apple.AppKit 0x947d72ca -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    58 com.apple.AppKit 0x9479955b -[NSApplication run] + 821
    59 com.apple.prokit 0x003f2fbc NSProApplicationMain + 326
    60 com.apple.dvdstudiopro 0x00003474 0x1000 + 9332
    61 com.apple.dvdstudiopro 0x00002c46 0x1000 + 7238
    62 com.apple.dvdstudiopro 0x00002b61 0x1000 + 7009
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x9195d942 kevent + 10
    1 libSystem.B.dylib 0x9195e05c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x9195d519 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x9195d2be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x9195cd41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x9195cb86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x91965066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x91964d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x919669b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.CoreGraphics 0x974f5fcd layerblit_work_queuethread + 973
    4 libSystem.B.dylib 0x9196481d pthreadstart + 345
    5 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x91965066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x91964d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x919669b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.CoreGraphics 0x974f5fcd layerblit_work_queuethread + 973
    4 libSystem.B.dylib 0x9196481d pthreadstart + 345
    5 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x91965066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x91964d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x919669b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.CoreGraphics 0x974f5fcd layerblit_work_queuethread + 973
    4 libSystem.B.dylib 0x9196481d pthreadstart + 345
    5 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9193715a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x91964ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x91993848 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x98b65a80 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x98b1e7f1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x98b1e6d4 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.dvdbase 0x0072f1e1 -[ThreadSafeQueue headItem] + 46
    7 com.apple.dvdbase 0x00732b4c -[MPEGEncoderManager generateMPEG_ThreadProc:] + 154
    8 com.apple.Foundation 0x98b298d4 -[NSThread main] + 45
    9 com.apple.Foundation 0x98b29884 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x9196481d pthreadstart + 345
    11 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x91965066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x91990c64 nanosleep$UNIX2003 + 188
    2 com.apple.Foundation 0x98b5196d +[NSThread sleepUntilDate:] + 147
    3 com.apple.dvdbase 0x00732dd0 -[MPEGEncoderManager checkEncoderServer] + 87
    4 com.apple.Foundation 0x98b298d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x98b29884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x9196481d pthreadstart + 345
    7 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9193715a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x91964ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x91993848 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x98b65a80 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x98b1e7f1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x98b1e6d4 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.dvdbase 0x0072f1e1 -[ThreadSafeQueue headItem] + 46
    7 com.apple.dvdbase 0x00735ddf -[AIFFEncoderManager generateAIFF_ThreadProc:] + 109
    8 com.apple.Foundation 0x98b298d4 -[NSThread main] + 45
    9 com.apple.Foundation 0x98b29884 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x9196481d pthreadstart + 345
    11 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x91956086 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x9888b80d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x9196481d pthreadstart + 345
    3 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x91937142 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91964cbc pthread_condwait + 1089
    2 libSystem.B.dylib 0x919ad203 pthreadcondwait + 48
    3 com.apple.dvdbase 0x0094cc63 -[DVDAssetScheduler mainLoop:] + 191
    4 com.apple.Foundation 0x98b298d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x98b29884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x9196481d pthreadstart + 345
    7 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x919370fa machmsgtrap + 10
    1 libSystem.B.dylib 0x91937867 mach_msg + 68
    2 com.apple.CoreFoundation 0x9884bfaf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x9884b094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x98850fd4 CFRunLoopRun + 84
    5 com.apple.DesktopServices 0x94518e13 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 643
    6 ...ple.CoreServices.CarbonCore 0x91fd4dee PrivateMPEntryPoint + 68
    7 libSystem.B.dylib 0x9196481d pthreadstart + 345
    8 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x9195c9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x9195cf68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x9195cb86 start_wqthread + 30
    Thread 12:
    0 libSystem.B.dylib 0x9195c9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x9195cf68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x9195cb86 start_wqthread + 30
    Thread 13:
    0 libSystem.B.dylib 0x9193715a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x91964ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x91993848 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x91ff53b5 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x91ff50f3 TSWaitOnSemaphoreCommon + 511
    5 ...ickTimeComponents.component 0x9336b8bd ReadSchedulerThreadEntryPoint + 4698
    6 libSystem.B.dylib 0x9196481d pthreadstart + 345
    7 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x9193715a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x91964ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x91993848 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x91ff53b5 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x91ff50f3 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x9204f900 AIOFileThread(void*) + 1127
    6 libSystem.B.dylib 0x9196481d pthreadstart + 345
    7 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x919370fa machmsgtrap + 10
    1 libSystem.B.dylib 0x91937867 mach_msg + 68
    2 com.apple.CoreFoundation 0x9884bfaf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x9884b094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x98850fd4 CFRunLoopRun + 84
    5 com.apple.DVCPROHDMuxer 0x254bf507 AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 285
    6 libSystem.B.dylib 0x9196481d pthreadstart + 345
    7 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x9195c9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x9195cf68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x9195cb86 start_wqthread + 30
    Thread 17:
    Thread 18:
    0 libSystem.B.dylib 0x91937142 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91964cbc pthread_condwait + 1089
    2 libSystem.B.dylib 0x919ad203 pthreadcondwait + 48
    3 com.apple.dvdbase 0x00787fa0 MPLThreadSignalPosixImpl::wait(unsigned long) + 322
    4 com.apple.dvdbase 0x0083332f MPLVideoRenderInputPin::process(MPLVideoRenderInputPin::Command) + 257
    5 com.apple.dvdbase 0x00b1b644 MSDPipelineAdapterRenderInputPin::process(MPLVideoRenderInputPin::Command) + 1436
    6 com.apple.dvdbase 0x00832d36 MPLVideoRenderInputPin::threadProc() + 286
    7 com.apple.dvdbase 0x007877b2 posixthread_startroutine(void*) + 20
    8 libSystem.B.dylib 0x9196481d pthreadstart + 345
    9 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 19 Crashed:
    0 com.apple.CoreFoundation 0x9881bc94 CFRelease + 196
    1 com.apple.AppleVAFramework 0x989a56ce AVAFLoadAllRenderers + 2030
    2 com.apple.AppleVAFramework 0x989a6b3c AVAFQTInitLibrary + 92
    3 com.apple.dvdbase 0x00790abd AVADecoder::CreateContext(unsigned char*, unsigned long) + 757
    4 com.apple.dvdbase 0x007a2067 M2VDecoderFilter::process() + 451
    5 com.apple.dvdbase 0x00788459 MPLTransformFilter::threadProc() + 83
    6 com.apple.dvdbase 0x007877b2 posixthread_startroutine(void*) + 20
    7 libSystem.B.dylib 0x9196481d pthreadstart + 345
    8 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x91937142 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91964cbc pthread_condwait + 1089
    2 libSystem.B.dylib 0x919ad203 pthreadcondwait + 48
    3 com.apple.dvdbase 0x0078137f MPLMediaSampleAllocator::getMediaSample(MPLiMediaSample*&, unsigned long) + 93
    4 com.apple.dvdbase 0x007c89cf DVDVideoAssetSourceOutputPin::process() + 615
    5 com.apple.dvdbase 0x007c911e DVDVideoAssetSourceOutputPin::threadProc() + 112
    6 com.apple.dvdbase 0x007877b2 posixthread_startroutine(void*) + 20
    7 libSystem.B.dylib 0x9196481d pthreadstart + 345
    8 libSystem.B.dylib 0x919646a2 thread_start + 34
    Thread 19 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x9881bbdd ecx: 0xa01e14c0 edx: 0x00000000
    edi: 0x00000002 esi: 0x00000000 ebp: 0xb0983a28 esp: 0xb0983a10
    ss: 0x0000001f efl: 0x00000246 eip: 0x9881bc94 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x86b28000
    Binary Images:
    0x1000 - 0x3fff com.apple.dvdstudiopro 4.1.2 (431.6.2) /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro
    0x8000 - 0x27dffb com.apple.dspinterface 4.1.2 (431.6.2) /Applications/DVD Studio Pro.app/Contents/Frameworks/DSPInterface.framework/Versions/A/DSPInterface
    0x3d0000 - 0x5f6fe7 com.apple.prokit 6.0.1 (1176) <7F8A965A-3159-4B0C-D52C-0F51854FB3FD> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x6fa000 - 0xbc9fef com.apple.dvdbase 4.1.2 (468.21) /Applications/DVD Studio Pro.app/Contents/Frameworks/DVDBase.framework/Versions/A/DVDBase
    0xe8c000 - 0xea0ff7 com.apple.oxygene.layers 2.0.0 (425) /Applications/DVD Studio Pro.app/Contents/Frameworks/OxygeneLayers.framework/Versions/A/OxygeneLayers
    0xeb2000 - 0xeb2ff7 com.apple.iokit.dvcomponentglue 1.9.9 (1.9.9) <2BA05DB9-D847-CBC7-42D6-A9D96D7E1ED2> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0xf00000 - 0xf0eff7 com.apple.mediarenderingserver 4.1.0 (324) /Applications/DVD Studio Pro.app/Contents/Frameworks/MediaRenderingServer.framework/Versions/A/MediaRend eringServer
    0xf19000 - 0x1151ff7 com.apple.dvdauthoring 4.1.2 (428.30.3) /Applications/DVD Studio Pro.app/Contents/Frameworks/DVDAuthoring.framework/Versions/A/DVDAuthoring
    0x1239000 - 0x1279ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x1300000 - 0x1324ff7 com.apple.oxygene.engine 2.0.0 (427) /Applications/DVD Studio Pro.app/Contents/Frameworks/Oxygene.framework/Versions/A/Oxygene
    0x1400000 - 0x140fff7 com.apple.oxygenetransitions 4.1.0 (304) /Applications/DVD Studio Pro.app/Contents/Frameworks/OxygeneTransitions.framework/Versions/A/OxygeneTran sitions
    0x1783000 - 0x1786fff com.apple.LiveType.component 2.1.2 (2.1.2) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x178b000 - 0x178eff7 com.apple.motion.component 1.0 (1.0) /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x2d00000 - 0x2d65ffe com.apple.LiveType.framework 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x71b5000 - 0x71eaff7 com.apple.prokit.SnowLeopardPanels 6.0.1 (1176) <E4B1257D-7E29-25DE-ABDF-CF363937B6F9> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0xabf0000 - 0xabf4fdf com.apple.oxygene.datadefevent 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/DataDefEvent.oxygene/Contents/MacOS/DataDefEvent
    0xabf9000 - 0xabfcfff com.apple.oxygene.filemanager 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/FileManager.oxygene/Contents/MacOS/FileManager
    0xb7ed000 - 0xb7fbfdf com.apple.oxygene.datadefcontroller 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/DataDefController.oxygene/Contents/MacOS/DataDefContro ller
    0xdf74000 - 0xdf80fd7 com.apple.oxygene.datadefimage 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/DataDefImage.oxygene/Contents/MacOS/DataDefImage
    0xdf84000 - 0xdf88fef com.apple.oxygene.dvdsupport 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/DVDSupport.oxygene/Contents/MacOS/DVDSupport
    0xdf8c000 - 0xdf94ff7 com.apple.oxygene.fraktalzoom 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/FraktalZoom.oxygene/Contents/MacOS/FraktalZoom
    0xdf98000 - 0xdf9aff7 com.apple.oxygene.imagecapture 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/ImageCapture.oxygene/Contents/MacOS/ImageCapture
    0xdf9e000 - 0xdfbafcf com.apple.oxygene.imagedistort 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/ImageDistort.oxygene/Contents/MacOS/ImageDistort
    0xe188000 - 0xe1affef com.apple.oxygene.imageeffects 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/ImageEffects.oxygene/Contents/MacOS/ImageEffects
    0xe1ba000 - 0xe1cafdf com.apple.oxygene.imagefilters 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/ImageFilters.oxygene/Contents/MacOS/ImageFilters
    0xe1d0000 - 0xe1d9fc7 com.apple.oxygene.imagegenerator 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/ImageGenerator.oxygene/Contents/MacOS/ImageGenerator
    0xe1ed000 - 0xe1f3fc7 com.apple.oxygene.imagemodulation 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/ImageModulation.oxygene/Contents/MacOS/ImageModulation
    0xf1db000 - 0xf1f9fd3 com.apple.oxygene.imagetransitions 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/ImageTransitions.oxygene/Contents/MacOS/ImageTransitio ns
    0xf54e000 - 0xf551fd7 com.apple.oxygene.mpegImporter 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/MPEGImporter.oxygene/Contents/MacOS/MPEGImporter
    0xf555000 - 0xf56afe3 com.apple.oxygene.multimediaimporter 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/MultiMediaImporter.oxygene/Contents/MacOS/MultiMediaIm porter
    0xf571000 - 0xf576fff com.apple.oxygene.oldfilm 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/OldFilm.oxygene/Contents/MacOS/OldFilm
    0xf57a000 - 0xf57dfc7 com.apple.oxygene.remoteControl 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/RemoteControl.oxygene/Contents/MacOS/RemoteControl
    0xf581000 - 0xf585fdf com.apple.oxygene.textimporter 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/TextImporter.oxygene/Contents/MacOS/TextImporter
    0xf58a000 - 0xf590fcf com.apple.oxygene.timemanager 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/TimeManager.oxygene/Contents/MacOS/TimeManager
    0xf594000 - 0xf59efdf com.apple.oxygene.trackrecorder 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/TrackRecorder.oxygene/Contents/MacOS/TrackRecorder
    0xf5a2000 - 0xf5cefc7 com.apple.oxygene.wirelessVideoOutput 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/WirelessVideoOutput.oxygene/Contents/MacOS/WirelessVid eoOutput
    0xf700000 - 0xf7c8fcf com.apple.oxygene.imagebasics 2.0.0 (643.2) /Applications/DVD Studio Pro.app/Contents/PlugIns/ImageBasics.oxygene/Contents/MacOS/ImageBasics
    0xf7d8000 - 0xf94ffe7 GLEngine ??? (???) <0FC1F7CA-5C84-A7F6-105B-169383B50A94> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xfa29000 - 0xfa4cfe7 GLRendererFloat ??? (???) <D71788AA-645A-02CF-201F-E44F073F98D7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x111ab000 - 0x11257fe7 com.apple.GeForceVADriver 1.6.18 (6.1.8) <F995AAB1-ED96-DB35-C1BA-91D2CAFD99DC> /System/Library/Extensions/GeForceVADriver.bundle/Contents/MacOS/GeForceVADrive r
    0x112bf000 - 0x112c5ff7 com.apple.qldisplay.Movie 2.2 (327.4) <88C458D4-ED37-5344-3784-561634959352> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/DisplayBundles/Movie.qldisplay/Contents/MacOS/Movi e
    0x11306000 - 0x1136dfe7 com.apple.QuickTimeMPEG.component 7.6.6 (1742) <FC520DE9-3A17-FAF2-F009-5B2278BD3991> /System/Library/QuickTime/QuickTimeMPEG.component/Contents/MacOS/QuickTimeMPEG
    0x11381000 - 0x113bdff7 com.apple.QuickTimeMPEG2.component 7.6 (1290) /System/Library/QuickTime/QuickTimeMPEG2.component/Contents/MacOS/QuickTimeMPEG 2
    0x113ec000 - 0x113f0ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <5570694E-039D-7970-6083-1C8A7B7C937B> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x113f5000 - 0x113fbffb com.apple.audio.AppleHDAHALPlugIn 1.8.7 (1.8.7f1) <0FE8B697-6D19-69C6-FA94-E18064ACFAEC> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x21443000 - 0x21495fc3 com.apple.DVCPROHDAudio 1.2 (1.2) /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x21500000 - 0x21502fff Motion ??? (???) /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x254ae000 - 0x254f5fef com.apple.DVCPROHDMuxer 1.2 (1.2) /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x269ea000 - 0x26c79feb +org.perian.Perian 1.2 (1.2) <567E0964-BE09-D272-AAF0-27453650867C> /Users/macpro/Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x26f43000 - 0x27134fd2 +net.telestream.wmv.import 2.3.0.14 (2.3.0.14) <A01045FC-4804-4F90-B312-01DE7F90C587> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x2716a000 - 0x27177fff +net.telestream.license 1.0.3.4-GC (1.0.3.4-GC) <0B4D5758-8A9B-958D-1406-12377A1D9E23> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x27180000 - 0x27235fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x2727b000 - 0x2743bff2 +net.telestream.wmv.advanced 2.3.0.14 (2.3.0.14) <125E7162-2457-453D-9707-5902DEB4D32E> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x27480000 - 0x274d5fef com.apple.AppleProResDecoder 2.0 (223) <793BA98A-2E7D-1C39-998D-805B60034DF4> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x2750d000 - 0x2750dff7 libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x27510000 - 0x27589fe7 com.apple.AppleVAH264HW.component 2.0 (1.0) <4FD6FDD7-8791-CEA2-9E5A-1628492A98B2> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x2774c000 - 0x27788fe3 com.apple.QuickTimeFireWireDV.component 7.6.6 (1742) <1FFC5B3D-78E8-4902-7886-7EC84B574481> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x27794000 - 0x277d8fdf com.apple.DVCPROHDCodec 1.3 (228) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x277ef000 - 0x27843ff6 com.apple.AppleHDVCodec 1.2 (206) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x2784c000 - 0x27866fc3 com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x2786b000 - 0x27870ff7 com.apple.AppleMPEG2Codec 1.0.1 (220) <6FDFF3C8-7ECE-CB74-1374-9C0230C54F78> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x27876000 - 0x27895fe7 com.apple.IMXCodec 1.2 (140) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x278ad000 - 0x278c6fe7 com.apple.applepixletvideo 1.2.19 (1.2d19) <4A68731C-8071-6CF5-012C-40F00CD1333A> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x3e000000 - 0x3e046ff7 com.apple.glut 3.4.4 (GLUT-3.4.4) <DF15FD36-E1F5-D745-1BF6-DD3AEA2897E4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x700caffb com.apple.audio.units.Components 1.6.1 (1.6.1) <AEC44B68-A209-4093-36B0-7B740361249B> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x7fff0000 - 0x80001fff com.apple.AERegistration 1.2 (58) /Applications/DVD Studio Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x8f749000 - 0x8faedfff com.apple.GeForce7xxxGLDriver 1.6.18 (6.1.8) <23D58976-E678-6AB5-F7A4-5B3C5DB28A87> /System/Library/Extensions/GeForce7xxxGLDriver.bundle/Contents/MacOS/GeForce7xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90003ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90074000 - 0x90111fe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90125000 - 0x901d3ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x901d4000 - 0x90281fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x902b8000 - 0x902ecff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0B900F26-51C1-7639-346F-24B080AEDAF3> /usr/lib/libssl.0.9.8.dylib
    0x902ed000 - 0x9032aff7 com.apple.CoreMedia 0.484.11 (484.11) <0346F9E5-AEFE-B751-7D85-88D156C01385> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x90336000 - 0x90340ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90341000 - 0x90538feb com.apple.JavaScriptCore 6533.18 (6533.18.1) <EE3897A8-E1C0-DE28-A631-4B0C32DF737B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90539000 - 0x9057cff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9057d000 - 0x905bbff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x905bc000 - 0x905bcff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x905cd000 - 0x9061afeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x906a2000 - 0x9074affb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9074b000 - 0x9076dfef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9076e000 - 0x907e5ff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x907e6000 - 0x90b4eff7 com.apple.QuartzCore 1.6.2 (227.22) <4288F0D2-0C87-F054-C372-8764B44DE024> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90b4f000 - 0x90b5dfe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x90b5e000 - 0x90b7efe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x90b7f000 - 0x90bbcff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <398BB007-41FD-1A30-26D8-CB86ED5E467E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90bbd000 - 0x90c3dfeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90dcc000 - 0x90dd9fe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x90dda000 - 0x90dddffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91045000 - 0x91146fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x91147000 - 0x9114afe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x91277000 - 0x914dbfef com.apple.security 6.1.1 (37594) <3F68A006-6B30-85D5-1A75-8D748F72A6D5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x914dc000 - 0x91546fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9183e000 - 0x91862ff7 libJPEG.dylib ??? (???) <5CE96981-6B2A-D15B-4A17-E7BD329095B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91863000 - 0x91881ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91887000 - 0x91897ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x91898000 - 0x918d9ff7 libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <8BAE1FC1-A478-F151-17C7-2D5DE470AC4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x918da000 - 0x918daff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x918db000 - 0x91935fe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91936000 - 0x91adcfeb libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    0x91ae5000 - 0x91af0ff7 libGL.dylib ??? (???) <B87E0676-F5EF-8DA3-6DEE-13C43B3832A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91af1000 - 0x91b55ffb 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
    0x91b56000 - 0x91b7cfff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91b7d000 - 0x91b80ff7 libCoreVMClient.dylib ??? (???) <CA0BA8DC-0159-A808-A300-750358A6970C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x91ba0000 - 0x91bd1ff3 libTrueTypeScaler.dylib ??? (???) <7601D717-236D-8F4E-91F5-E69BB2920478> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x91bd2000 - 0x91d54fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2314BD12-0821-75BB-F3BC-98D324CFD30A> /usr/lib/libicucore.A.dylib
    0x91d6e000 - 0x91d70ff7 com.apple.QuickTimeH264.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x91e8a000 - 0x91efdfff com.apple.iLifeMediaBrowser 2.1.5 (368) <30261504-7533-5424-DD15-32739DED6FB0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91efe000 - 0x91efeff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x91eff000 - 0x91f01ff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91f02000 - 0x91f1aff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91f1b000 - 0x91fadfe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91fae000 - 0x922cefeb com.apple.CoreServices.CarbonCore 861.13 (861.13) <52803668-3669-36BD-57DD-078FBA835081> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x922cf000 - 0x9230afeb libFontRegistry.dylib ??? (???) <A102F61F-25D5-001A-20C3-56304C585072> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9230b000 - 0x92327fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92328000 - 0x923c3ff7 com.apple.ApplicationServices.ATS 275.11.1 (???) <5FF65EC7-F512-530A-7771-3DE240EE6E43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x924c0000 - 0x925b2ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D2C86308-F998-C83D-F49B-CD484D4EFE6A> /usr/lib/libcrypto.0.9.8.dylib
    0x925b3000 - 0x925bcff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x925bd000 - 0x9260eff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9260f000 - 0x926e0fe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <8FDB4C40-D453-DA53-2A66-9A53998AB23C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x926e9000 - 0x926edff7 IOSurface ??? (???) <66E11D8E-CF4B-EFD0-37F9-20177C647021> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x926ee000 - 0x9281afff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9281b000 - 0x92c50ff7 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
    0x92db2000 - 0x93d02fe3 com.apple.QuickTimeComponents.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93d03000 - 0x93d7efe7 com.apple.audio.CoreAudio 3.2.2 (3.2.2) <51D0E2DC-B15F-AF6C-70D8-026DDAD4E2A5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93d7f000 - 0x93dc1ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93dc2000 - 0x93de9ff7 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
    0x93dea000 - 0x93e30ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x93e72000 - 0x93e7cfe7 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
    0x93f77000 - 0x93f7bff7 libGIF.dylib ??? (???) <3ECD4D2C-40FE-E9A0-A2D2-E36D1C00D3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93f7c000 - 0x93fccff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93fcd000 - 0x94011ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x94012000 - 0x9401cff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9401d000 - 0x94023ff7 libCGXCoreImage.A.dylib 543.50.0 (compatibility 64.0.0) <94F66BA6-A4E8-63A4-1B70-EFAA4C75D668> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x94024000 - 0x94038fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x94080000 - 0x940a8ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x940a9000 - 0x940befff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x940bf000 - 0x94120fe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94121000 - 0x9424ffe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9425d000 - 0x9425dff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9425e000 - 0x9425eff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9425f000 - 0x94271ff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <F91A4E32-01AA-49DB-2205-3DBE1FEFFC43> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x94272000 - 0x94276ff7 libGFXShared.dylib ??? (???) <2D32BDBF-C941-93FD-E233-F03D28DB9E94> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x94277000 - 0x943aeff7 com.apple.CoreAUC 6.04.01 (6.04.01) <B6E035A9-8DA2-82FC-9C2F-F57B9B62BE5F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x943eb000 - 0x944dfff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <9EC28185-D26F-533F-90C4-FBAA13A15947> /usr/lib/libiconv.2.dylib
    0x944e0000 - 0x94516fff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x94517000 - 0x945f2fe7 com.apple.DesktopServices 1.5.7 (1.5.7) <A69072AD-C47E-A00D-4A69-6E46A7FB2119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x945f3000 - 0x94675ffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94676000 - 0x9472cffb libFontParser.dylib ??? (???) <067DC1A2-764B-41EA-B07E-4205472749B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x94732000 - 0x94763ff7 libGLImage.dylib ??? (???) <9340012D-595A-6243-9C97-7D30D76D9D9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9478f000 - 0x9506fff7 com.apple.AppKit 6.6.6 (1038.29) <6F28C335-6DC2-AE0E-B79A-F256DBD0BB45> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95070000 - 0x95084ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95085000 - 0x9553effb com.apple.VideoToolbox 0.484.11 (484.11) <6AB58081-F7C4-46F9-2C05-CFED9E38F0A0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9553f000 - 0x95560fe7 com.apple.opencl 12.1 (12.1) <DA2AC3FA-ED11-2D10-21E9-7BDF4778B228> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x95561000 - 0x95561ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95562000 - 0x95563ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x95564000 - 0x9562efef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9562f000 - 0x9563aff7 com.apple.CrashReporterSupport 10.6.3 (250) <981124CA-6E89-94C5-C7E9-4E0D6CA06F1D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9563b000 - 0x95673ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <76C02F5C-98FD-BD64-B5FB-C698FB76EA25> /usr/lib/libcups.2.dylib
    0x95674000 - 0x9587afeb com.apple.AddressBook.framework 5.0.2 (870) <3E9D6CF3-6C41-245D-5343-941A185C8384> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9587b000 - 0x9592bff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9592c000 - 0x9595fff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95960000 - 0x95970ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95971000 - 0x95b9cff3 com.apple.QuartzComposer 4.1 (156.16) <578A1842-8B62-00BF-B2E8-4C0AA8E6A938> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95bbf000 - 0x95bccff7 com.apple.AppleFSCompression 24.3 (1.0) <49782434-8CEE-CD5C-A953-E5EAD5765B48> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x95bcd000 - 0x95c25fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95c26000 - 0x95fd4fe3 com.apple.RawCamera.bundle 3.3.0 (533) <05A38D21-8556-434C-8BAA-850A6EC99B37> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95ff3000 - 0x9601dff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9601e000 - 0x96056ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96057000 - 0x960a0fe7 libTIFF.dylib ??? (???) <9CFF48CC-4852-4D06-17AC-3C947C824159> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x960a1000 - 0x960fcff7 com.apple.framework.IOKit 2.0 (???) <A013B850-6ECB-594A-CBD6-DB156B11871B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96103000 - 0x96103ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96130000 - 0x96174fe7 com.apple.Metadata 10.6.3 (507.10) <630494FA-3BB3-EDD3-E10B-8DAAF4831E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9618f000 - 0x9619dff7 com.apple.opengl 1.6.9 (1.6.9) <4F06C166-00CF-5ACF-77E3-5A960A5E8AD3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9619e000 - 0x961a0ff7 libRadiance.dylib ??? (???) <AB06F616-E3EA-5966-029A-8AA44BBE5B28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x961c8000 - 0x964ecfef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x964ed000 - 0x96508ff7 libPng.dylib ??? (???) <36A3D75E-5178-4358-7F02-444E276D61AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96509000 - 0x965a1fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9675d000 - 0x96760ff7 libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <3B49AED9-0DBA-9D21-F9AC-8784363AD762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x967a2000 - 0x967a8ff7 com.apple.DisplayServicesFW 2.2.2 (251) <6E4020F6-4DD0-F137-F226-F396807E3C3B> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x967a9000 - 0x968ecfef com.apple.QTKit 7.6.6 (1742) <98ECA8E3-73F0-D21B-8B7E-8FE651E29A7F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x968ed000 - 0x9691dff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x9691e000 - 0x9698cff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9698d000 - 0x96a36ff7 com.apple.CFNetwork 454.9.8 (454.9.8) <DB2A5C33-E833-1B3A-4DE0-5FF172B2048B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96a37000 - 0x96ab0ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96c8d000 - 0x96cc6fe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x96cce000 - 0x96cd9ff7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <4FA0CE4A-BDE5-0E3D-37F0-03B41F0C2637> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96cda000 - 0x970f0ff7 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
    0x970f1000 - 0x97147ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x97148000 - 0x97254ff7 libGLProgrammability.dylib ??? (???) <1B315838-F477-5416-7504-67EC3433AD4A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97288000 - 0x97299ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x972e9000 - 0x97329ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9732a000 - 0x97b19557 com.apple.CoreGraphics 1.545.0 (???) <DCED8E1A-7504-C31A-B6EF-98BFF1A61060> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x97b1a000 - 0x97b1fff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x97b20000 - 0x97e19fef com.apple.QuickTime 7.6.6 (1742) <89720F2A-F33B-FF09-3D81-F9F25A99F3EB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x97e1a000 - 0x97e27ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97e28000 - 0x97e28ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97e29000 - 0x97f06ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97f07000 - 0x97f0dfff 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
    0x97f0e000 - 0x97feaff3 com.apple.DiscRecording 5.0.5 (5050.4.3) <7BFF81A5-BBFA-5D2F-FFEE-65BEA7697134> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x97feb000 - 0x97fecff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97fed000 - 0x97ff4ff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x981d1000 - 0x98240ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98241000 - 0x98242ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98243000 - 0x98282ff7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <18E338B0-D82E-2ADC-FB9E-8909E765C41B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x98344000 - 0x98470ffb com.apple.MediaToolbox 0.484.11 (484.11) <B93B175A-2039-2FD2-FBE4-22C9F8C9E223> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x98471000 - 0x98653fff com.apple.imageKit 2.0.3 (1.0) <BF2ECA4D-FCD8-AD5D-E100-22370F2C7EE0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x98654000 - 0x9880efe3 com.apple.ImageIO.framework 3.0.3 (3.0.3) <A93A514B-C1BF-21D0-FB03-CB775DE4FFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9880f000 - 0x98989fe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9898a000 - 0x98a02fef com.apple.AppleVAFramework 4.9.20 (4.9.20) <D8B544CB-9E32-81C2-59BD-C5DDB66DA621> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98a03000 - 0x98a0fff7 libkxld.dylib ??? (???) <322A4B52-8305-3081-6B74-813C3A87A56D> /usr/lib/system/libkxld.dylib
    0x98a10000 - 0x98b12fef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x98b13000 - 0x98d83ffb com.apple.Foundation 6.6.3 (751.29) <E77D3906-99F4-FEF4-FBB0-86FB3C94073E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x997f3000 - 0x99839ffb com.apple.CoreMediaIOServices 130.0 (1035) <F5E6F93D-6844-9FD7-8769-44503DFD5363> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x99885000 - 0x9988cff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9988d000 - 0x99946fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x99947000 - 0x9998aff7 libGLU.dylib ??? (???) <2093A1FB-67BD-39E0-CDE5-A97A77BDDBCE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 16 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 0 MB
    Graphics: NVIDIA GeForce 8800 GT, NVIDIA GeForce 8800 GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: global_name
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-4
    PCI Card: NVIDIA GeForce 8800 GT, Display, Slot-1
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-2
    Serial ATA Device: WDC WD5000AAKS-00TMA0, 465.76 GB
    Serial ATA Device: WDC WD5000AAKS-00TMA0, 465.76 GB
    Serial ATA Device: WDC WD5000AAKS-00TMA0, 465.76 GB
    Serial ATA Device: Hitachi HDS725050KLA360, 465.76 GB
    Parallel ATA Device: SONY DVD RW DW-D150A
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd400000
    USB Device: Apple Optical USB Mouse, 0x05ac (Apple Inc.), 0x0307, 0xfd430000
    USB Device: USB2.0 Printer (Hi-speed), 0x04b8 (Seiko Epson Corp.), 0x0007, 0xfd410000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfd420000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: My Book, WD, Up to 400 Mb/sec

    Well, thanks a lot for your suggestions to date, but I have done what you've mentioned, yes I do have the two versions of the quick time, and I have the mpeg decoder installed, again, my mpegstreamclip will play the clips, it wouldn't do that without it, but I have verified it is there. I have done a pretty extensive search of the forums, and these problems have happened several times according to the forums, however, no one seems to have a solid answer on how to fix, I guess I am gonna do a fresh install of dvdsp and compressor and see if that helps... But again, I appreciate all your help and time!

  • Is there a better way to do this? Binary File + MERGE

    Version
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    Requirement
    I need to take binary files on a file system and a perform a MERGE in a destination table that has a blob column. This is a periodic task.
    My Version
    The following is a proof of concept that I've put together. I was wondering if anyone would be willing to critique this implementation or provide a better implementation to accomplish the same task.
    In reality the SOURCE table would be an external table that parses a control file that has a list of IDs and file names.
    DROP VIEW source_vw;
    DROP TABLE destination;
    DROP TABLE source;
    DROP FUNCTION get_blob;
    DROP PROCEDURE update_blobs;
    CREATE TABLE source
    ( id    NUMBER
    , fname VARCHAR2(255)
    INSERT INTO source
    ( id
    , fname
    SELECT rownum
         , 'Untitled.png'
    FROM   dual
    CONNECT BY level <= 5;
    CREATE TABLE destination
    ( id        NUMBER
    , file_data BLOB
    INSERT INTO destination(id, file_data) VALUES (1, EMPTY_BLOB());
    INSERT INTO destination(id, file_data) VALUES (3, EMPTY_BLOB());
    INSERT INTO destination(id, file_data) VALUES (5, EMPTY_BLOB());
    CREATE OR REPLACE FUNCTION get_blob
    ( p_dirname IN VARCHAR2
    , p_fname IN VARCHAR2
    RETURN BLOB
    AS
         b            BLOB;
         bf           BFILE;
         bfile_offset NUMBER :=1;
         blob_offset  NUMBER :=1;
    BEGIN
         DBMS_LOB.CREATETEMPORARY
         ( lob_loc => b
         , cache   => FALSE
         bf := BFILENAME(p_dirname,p_fname);
         DBMS_LOB.FILEOPEN(bf,DBMS_LOB.FILE_READONLY);
         DBMS_LOB.LOADBLOBFROMFILE(b,bf,DBMS_LOB.LOBMAXSIZE,bfile_offset,blob_offset);
         DBMS_LOB.FILECLOSE(bf);
         RETURN b;
    END get_blob;
    CREATE OR REPLACE VIEW source_vw
    AS
    SELECT id
         , GET_BLOB('SOME_DIR',fname) AS file_data
    FROM   source
    CREATE OR REPLACE PROCEDURE update_blobs
    AS
    BEGIN
         MERGE INTO destination
         USING source_vw
         ON    ( destination.id = source_vw.id )
         WHEN MATCHED THEN
             UPDATE SET destination.file_data = source_vw.file_data
         WHEN NOT MATCHED THEN
             INSERT
             ( id
             , file_data
             VALUES
             ( source_vw.id
             , source_vw.file_data
    END;
    /

    Because you are on 11.2, I would suggest switching to securefiles.
    CREATE TABLE destination
    ( id        NUMBER
    , file_data BLOB
    LOB(file_data) STORE AS SECUREFILE;

  • Advice on Binary File to RFC scenario

    I need to send contents of a binary file into an RFC which can accept unbound rows of 1024 bytes of data.
    I will also send filename to the RFC which I'll pull from ASMA.
    I have a simple data type set up with XSD type base64Binary and string field for the file name. Initial try through integration engine is unsuccessful because I think PI wants to see the payload parsed as XML and it is the pure binary, unchanged by the file adapter. (e.g. "Content is not allowed in prolog")
    I've found an example of how to do this via Java mapping, but I've never used that before. Is it required or is there a way to get this done with simple message mapping?

    I used this helpful Wiki article to help me get this Java map going. Thanks for the help everyone.
    http://wiki.sdn.sap.com/wiki/display/XI/HowtoSendBinaryDatatoRFCfromXI%28or%29PI
    Also to get going with NWDS
    http://techplay.plozzle.com/?p=21

  • How to read a certain range from binary file

    Dear all LabView experts!
    I've attempted to acquire data as fast as I can from TDS 2024 via GPIB interface. The data will be saved into one binary file and be used for later analysis.
    The program that is included here will perform continuous acquiring and save all the points into 1 file.
    I used WHILE loop to do this job and each loop will take 2500 points from the scope.
    After that, I would like to read the file such that every 2500 points will be read out and analyzed.
    can you please show me how to do this?
    I've acknowleged that 2 inputs: pos. mod and pos.offset should be able to provide random access to the binary at any point. However, I cannot have this done
    THank you very much
    Attachments:
    streaming-testing1.vi ‏66 KB

    Hi CSUEB,
          Thanks for your patience - and for the sample data.
    Here's a Reader VI that will work (as long as the byte-stream type length is 20004 elements.)
    Cheers!
    "Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)
    Attachments:
    streaming-testing_Reader_6i.vi ‏71 KB

  • Writing waveforms from Ch. 0 of niSCOPE to binary file in a multi-record setup?

    Hello,
    I am not very experienced with niSCOPE and writing waveform records, so I need some expert help here.
    Here is my application:
    I am generating a pulse train using a 6602 counter/timer. Each rising edge of this pulse train triggers an niFGEN to generate a single sawtooth waveform output to another device and, at the same time, acquiring data from Ch. 0 of an niSCOPE. I am fetching one record per rising edge of the pulse train for the niSCOPE (multi-record setup).
    The attached VI is where I am at thus far. All triggering and reading/fetching of the waveforms seems to be working just fine when testing with an oscilloscope. I now need to save each waveform record along with the timestamp of its rising edge trigger to a binary file. The bottom of the VI is where my attempt is at saving the waveforms to a binary file, so the attention should be there when looking at it.
    I am running LabVIEW from a computer connected to the NI PXI-Chassis using a cross-over cable.
    Questions:
    1.) Do I need to convert the data coming in on Ch. 0 of the niSCOPE to digital? Does it come in as analog from an oscilloscope? If I need to do this, how can I accomplish this?
    2.) When I try to run an example VI to write a waveform to a binary file by choosing "My Computer" in the bottom left of the VI window, it works it saves the file just fine. When I change this to run on "PXI2", a file is not even created and I get an error on File Dialog (code# 7, I think) each time the file is attempted to be closed. This may be a stupid question, but why can I not save data to a file on my computer if running the VI on "PXI2"?
    3.) Assuming the saving of each waveform to a binary file is working (read: (2) is successfully addressed), how can I also write the timestamp of the starting trigger for the waveform along with the waveform in the binary file? An example VI of how I can accomplish this would be fantastic, but I haven't been able to find one thus far.
    4.) When I was messing around and trying to accomplish this, it seemed that doing this writing may slow down the entire process too much. I need to record data to the extent of the sawtooth waveform generated by the niFGEN AWG for each trigger. Is there any changes I should make to my acquisition process in the niSCOPE section so that I can read each waveform, along with keeping the timestamp for each, and write this information to a binary file?
    I need to get this working quickly, so any help on this is greatly appreciated. Thanks in advance.
    Attachments:
    5124_update.vi ‏157 KB

    Thank you so much for your reply, David. Let me try and explain my
    situation and setup a little better, as well as discuss the points you
    made in your reply. Beware, you may want to refill your coffee as this
    post is long .
    I am using an embedded controller in a PXI-1044 chassis. I now have the
    chassis hooked up to our local network, and I am deploying my project
    to the chassis over the network as I am also connected to the local
    network. I have an oscilloscope next to me that takes as input the
    pulse train for a trigger and the generated sawtooth from the niFGEN
    for each trigger (rising edge of the pulse train from the 6602
    counter). Just to make sure synchronization is taking place, the
    sawtooth is also fed as input to the niSCOPE for acquisition.
    "PXI2" is what shows up when I choose to run a VI on the PXI chassis
    rather than "My Computer"; not sure why the 2 is there either, but that
    is what it says. I may have tracked down the issue I was having with
    writing, but more about that a little later...
    The attached VI is an update, although not much has changed. My
    application design is like this (keep in mind that some values for VI's
    are still constants in the block diagram while others are controls on
    the front panel): I am using the 6602 to generate a 1 KHz pulse train
    and routing this pulse train to PXI_Trigger0/RTSI0. I am also using the
    PXI_Clock (10) as a sample clock for this, and also using this same
    clock as the reference clock for both the 5422 and the 5124 (as per the
    synchronization help file mentioned for synchronizing multiple
    devices). Both the 5422 and the 5124 are triggered by a digital rising
    edge (from the pulse train) on PXI_Trigger0/RTSI0 (as it was routed
    there). For each trigger, the niFGEN generates a sawtooth waveform
    using a stepped trigger mode and outputs it. For each trigger, the
    niSCOPE acquires data. They are both synchronous, which is tough to see
    since one has its trigger source on the front panel and the other has
    its trigger source on the block diagram. All devices use PXI_Clock so
    they are synchronized.
    The expected behavior is to only generate a single sawtooth waveform
    per trigger with a certain number of sample points. I want to acquire
    the same number of samples using the niSCOPE, which is what I meant by
    "the extent of the waveform" in my previous post. So, should I change
    the 8192 to 1000 for the number of samples for the niSCOPE? What would
    you recommend for the sampling rate? I have been using 5 MHz for the
    niFGEN and 5 MHz for the niSCOPE...this is how it should be done,
    correct? If it is different in the VI, please let me know. For some
    reason, I have to adjust all of the values each time I open it since
    the default values are not the ones I want.
    I want to generate and acquire one waveform per trigger (one waveform
    per record). However, I want to be able to record a large number of
    records so I have enabled the circular buffer-like treatment of the
    acquired waveforms. The 100 or 1000 records is actually just a number I
    am giving it for now to make sure it is working before recording many
    more records.
    As for saving the niSCOPE data, I would like to save all data in a
    single file that is NOT ascii (to save space). I have been looking at
    the HWS file format, and would like to use it. I think the attached VI
    includes this at the bottom of the while loop. For each trigger, I
    would like to save the time (as accurate as possible) that the trigger
    occurred for the record/waveform, which appears to be (absoluteInitialX
    - relativeInitialX) as you said in your post (thanks!). I just need to
    store as much information about the waveform and time information for
    it as possible with the waveform in the file. So it looks like I will
    need to use the wfm info for that information, providing portions of it
    as waveform attributes in the HWS VI's?
    What format of data do you recommend I fetch, and will I be fetching a
    "Single waveform" or "Multiple waveforms"? Should I use I32, DBL, WDT,
    or other for the format? A balance between good precision in values and
    time it takes to fetch/record would be best.
    Given all of the above, I am having one troube with saving data to a
    file. As a reminder, I am deploying the project to the chassis over the
    network. When I choose a location and/or file to save the HWS data to,
    I only get choices that are on the PC's hard disk (such as C:\Documents
    and Settings\cgifford\...) NOT the chassis's hard disk. When I choose
    something other than "C:\" I get an error that the file could not be
    opened. However, when I choose "C:\" everything goes fine. The saved
    data is nowhere to be found on my PC though, so I am assuming that it
    is being stored on the internal 60G hard disk in the chassis that must
    be named "C" by default or something!?
    I have been told by phone support that I should be able to make a
    direct connection with the chassis just like another PC, and should be
    able to access the information on its internal hard disk in a drag and
    drop fashion. I however cannot directly connect to the PXI chassis to
    get the data that has been saved on the hard disk. We are running
    Windows XP on the PC. We did some poking around and noticed that the
    chassis is not running Windows file sharing, and only has ftp and http
    running. We tried to access it using ftp, but we didn't have a username
    and password to supply it. So, how can we enable Windows file sharing
    on the chassis? How can I connect to it to do drag and drop to get
    saved waveform data off of it? This is the main problem I am now
    facing. Eventually we would like to store data to an external hard disk
    connected to the chassis, which assumes that I can have access to the
    internal storage to tell it to save files to the external hard disk.
    For now saving it to the internal hard disk is just fine until
    everything is proven to work, but I would like to get the data off of
    the internal hard drive to put on another computer.
    Any answers/suggestions on my above questions are greatly appreciated.
    I also want to thank you for reading this long post . I eagerly await
    a reply. Thanks again in advance.
    Chris
    Attachments:
    5124_update.vi ‏143 KB

  • Word saving documents as binary files- can't send documents as attachments

    I've had my Macbook for about 9 months. During the first 6 months, I could send attachments via email perfectly fine. After about 6 months, something happened and the files could no longer be opened after being attached. I tried sending some attachments to myself and found out that the documents were being sent as binary files.
    I also backed up my documents onto an external hard drive. When I opened the documents on a Windows computer, the Word documents that I created during the first 6 months could be opened. However, the most recently created documents couldn't be opened by my computer.
    I decided to do an erase and install on Saturday. Afterwards, Word was working fine and I was able to send documents as attachments. This morning (Tuesday) I tried to send attachments again and it didn't work! Again, the documents were binary files.
    I'm not sure what to do because it was working fine for three days, but now it's not working anymore. I think something must have happened during those three days that corrupted my computer?
    Has anyone had a similar problem? Can anyone help?
    Sorry I know it was a long post but I wanted to give more information in case it would give some clues. I feel I should add that I've been having quite a few problems with my Macbook, e.g. screen freezing, DMGs not loading properly, getting some pop ups
    Message was edited by: MissIndecisive
    Also wanted to add that I've had my logicboard replaced recently because of problems such as freezing, so I don't think it should be a hardware problem.

    Since Word is not an Apple product, you'll get better response if you use a forum dedicated to Microsoft's Mac products such as <http://groups.google.com/groups/dir?sel=33607053> rather than an Apple forum that focuses on compatibility between Macs and Windows.
    Be sure to search the forum first in case someone has already had a similar question answered. You'll get your answer faster this way. Post your question in the forum if you don't find anything that helps you

Maybe you are looking for

  • Constant crashing with Flash CC in Windows 8.1

    Hello I am an avid Flash user who has worked in the program for roughly 10 years since before it was bought by Adobe and called Macromedia MX5. This most recent version of Flash CC is incredibly buggy with respect to the following areas.. I am consta

  • Cannot find the Person Object Class

    In Identity Server installation the Person object class is not accepting this recommended object "inetOrgPerson", "User" and Organizational Person" . What should be the person object class be supplied to make the installation continue? Is there anyth

  • Why is there no sound?

    Yesterday, my iPad mini was making sounds. I turn it on today, and no keyboard clicks, no notification sounds, no music, nothing comes through. I'm worried if it's something bad. If I do have to reset/restart it, does it get rid of all my games, phot

  • Updated iPhone 4 to new software. forgot to save the calendar. Is there a way to get my calendar and photos back?

    I updayed my Iphone 4 with the new software, but forgot to save my calender and photos. Is there any way to restore them?

  • Alternative to Report RCF_CREATE_USER

    Hi Friends   I am currently working to get the E-recruiting system up. Currently, I am using the report RCF_CREATE_USER to create the User Id and candidate. But in the documentation of the report, it is said as follows:   'Note that this report shoul