Aliasing when resizing 1080p to 720p

I can't wrap my head around this, maybe you can.
Original source video:
Prores 422
1920x1080 square pixels
29.97
Destination encoding:
H.264
1280x720 square pixels
29.97
3000kbps
When I do this, there is severe aliasing, especially on text. However if I use the exact same settings, but encode to 50% of original size (960x540) there aren't any problems at all.
My best guess is that because 1280x720 is 2/3 of 1920x1080 there is some weird calculating going on that causes this problem. To be honest, it doesn't even look like aliasing, it just looks crummy. Diagonal edges are jagged and uneven.
In fact, the same thing happens if I downsize using ProRes 422 HQ (same codec as original source).
Any ideas?
Message was edited by: revrevrev

Use the resize image command, set the resampling mode to "nearest neighbor".

Similar Messages

  • Problem when resizing round objects

    Hello,
    I encounter a problem with scaling down round objects.
    Here's the issue in a nutshell:
    As you see when I scale down a cirle from size A to size B, the top and left sides of the circle B are flat.
    Why does this happen and how to avoid it? It is really frustraiting when working with small objects.
    Cheers.

    Howdy.
    The flat spots on the small circles is caused by anti-aliasing an improper alignment with the pixel grid when the circle is resized. You will see it most often when resizing a shape with an odd number of pixels. You an see below that the center of the circle is forced off the pixel grid, and the anti-aliasing is off.
    Here it is actual size.
    What to do?
    Before you accept the transformation, move the circle until center point of the circle is on the pixel grid. Use the arrow key to move it around. Experiment. Move the center of the circle to different off grid locations before accepting the transform. You  will see all sorts of anti-aliasing permutations. Choose one that's  symmetric.The center point should be on the grid. Then the anti-aliasing should be symmetric. When the transformation is  applied, the anti-aliasing is baked in, and you can move the circle back to its original position if you need to.
    As Paulo and Noel have noted, the quality of the anti-aliasing of the original circle will become apparent when it is downsized to web icon size. Any asymmetry in the original may not be noticable at normal size, as it will only involve one or two rows of pixels at the perimeter of the circle. A small percentage of assymetry on a 300px circle. When the circle is downsized to 10 pixels, the asymmetry still affects one or two rows of pixels. And the circle goes pear shaped  because the assymmetry could be as much as 10%. My guess is that the OP is working with some images that are a little out of whack to start with.
    There's a lot more to this, but this might help.
    Peace,
    Lee

  • Exporting 1080p to 720p

    This is quite a basic question. I'm finding that when exporting my 1080p videos to 720p Premiere is cropping them. In the export window i'm selecting "scale to fit" but even the preview appears cropped from the original file. Is there an option I'm missing?

    I hope this will help, as I had a similar problem, but not exporting from 1080p to 720p.
    My problem: the videos I had was 1280x1024, when I export, is automatically cropped to 720x480, even if export settings is set to higher, it only shows 720x480 of the video
    Solution to it thanks to Harm Millaard and the_wine_snob: When you make a new sequence, go to the General tab, and set the resolution, FPS and such to your source video, using Desktop as your editing mode.
    Not sure if is the same problem, but maybe this will help.

  • How to preserve jagged (without anti-aliasing) when exporting to PDF?

    I created a jagged line drawing in Processing, than exported it to PDF. When I opened it in Illustrator it was fine (I turned anti-aliasing off). But after saving it to PDF and reviewing in Adobe Acrobat the anti-aliasing was back on.
    Is there any way to preserve it? Or is it just Acrobat, that applies anti-aliasing when previewing? Is it possible to print it on paper in it's jagged format?
    Thank you!

    The anti-aliasing preference setting in both Illustrator and Acrobat is just a preview on screen.
    If you're going to print it preserving the jagged nature you could apply Effect > Rasterize with appropriate settings in Illustrator, for example.

  • Feature Request: Maintain radius on rounded corner boxes when resizing

    Since I make a lot of "buttons" using the rounded rectangle tool it would be AMAZING if the corder radius is maintained when resizing using command-t.
    Currently the radius is squashed or stretched depending on which way I resize the box.
    Steps to see the incorrect behavior:
    Create a rounded rectangle box with a radius of any size (though the larger it is the easier the problem is to see eg: 8px)
    Observe that your corners are a nice 8px
    Select the layer with the rounded rectangle box and press command-t on mac.
    Make the rectangle narrower (a common function when the text in a button changes)
    observe that the corner radius is now <8px (the height is correct but the width is squashed narrower)
    Further, observe that if a box is downsized with constrained proportions (holding down shift key) the entire radius size is reduced
    Desired steps:
    Create a rounded rectangle box with a radius of any size
    Observe that the corner radius is N px
    Select the layer with the rounded rectangle box and press command-t on mac
    Make the rectangle narrower or resize in any arbitrary way
    observe that the corner radius of the box is still N px, as if the box had just been created
    THANKS!

    I second the motion!
    Someone else posted a request similar to this a few days ago as well, and it's a feature that would be very useful.
    It should be like the 'Rounded Corners' Effect in Illustrator, where you can drag and scale in any way without destroying the corner radius or changing it's actual radius.
    I too work with iOS and OSX developers creating UI graphics for mobile apps and web apps. Buttons and tool bars are common things I create every day now, and I'm sure a lot of us are moving in this direction.
    This would be a HUGE time saver!

  • Preview changes RGB values when resizing images

    Since I upgraded to snow leopard, preview increases the Red spectrum when resizing images (png). Is this a bug or do I need to change a setting to preserve the original RGB values?

    Figured it out. It seems that when you don't specify the BufferedImage that the operation will write too it changes the type to something it uses for the operation. This still seems like it should be a bug to me, but i got around it by doing this:
    BufferedImage tempIMG = new BufferedImage((int)(srcImg.getWidth()*scale),(int)(srcImg.getHeight()*scale),srcImg.getType());
    op.filter(srcImg, tempIMG);
    return tempIMG.

  • Apply transition when Resizing AIR Window Stage

    I am using FLEX and trying to resize the AIR Application's
    Stage - I have a desk app that I want to expand out when I change
    state:
    The problem I have is that none of the Transitions I have
    tried work - it would be nice to gracefully slide down.
    Or maybe I'm doing it wrong???
    [Code]
    <mx:states>
    <mx:State name="normal">
    <mx:SetProperty target="{this.stage.nativeWindow}"
    name="height" value="84"/>
    </mx:State>
    <mx:State name="expanded">
    <mx:SetProperty target="{this.stage.nativeWindow}"
    name="height" value="500"/>
    </mx:State>
    </mx:states>
    <mx:transitions>
    <mx:Transition id="transition1"
    fromState="normal" toState="expanded">
    <mx:Parallel targets="{[this.stage.nativeWindow]}">
    <mx:WipeDown duration="2000">
    </mx:WipeDown>
    </mx:Parallel>
    </mx:Transition>
    </mx:transitions>
    [/Code]

    This is a bug! I uninstalled AIR 16 and installed AIR 15.0.0.356, and there are no striped lines on window resize. What to do?
    EDIT: New information:
    Those lines appear and dissappear on mouse move/hover. It looks like lines disappear on "redraw region". Lines are always visible only on right side of window.
    EDIT: More info:
    I think I found that bug is if you have smoothingQuality="high" like in:
    <s:BitmapImage source="{imgCls}" smooth="true" smoothingQuality="high"/>
    If I set smoothingQuality to "default", then there are no horizontal lines flickering.
    What got wrong with latest AIR so I have this issue?
    EDIT: I filed a bug: Bug#3928797 - Display problem when resize a BitmapImage with smoothingQuality="high"
    It looks it is related to: Bug#3923037 - Corrupted display of resized images

  • What dpi & quality when resizing pics in PSE for use in PRE?

    For use in Premiere Elements 7:
    When resizing my digital camera pictures in Photoshop to the reduced sizes 1000 x 750 you recommend when panning & zooming, there are a couple of additional choices.
    One asks for the Resolution in dpi.  Should it be 600, 300, or less?
    The other thing is:  Convert files to ??? JPEG max quality or standard or what?
    I'm still a beginner at Premiere, so please don't get too technical!
    Thanks, Elisabeth.

    Do not worry about asking questions.
    As for the .PSD's, these are Photoshop's native file format. They are uncompressed, and can contain Layers of several sorts. Now, I do not use PSElements, so do not know how it would differ from the full version of PS that I use. PS also does NOT have a SlideShow feature, so there could be major differences here. [See, you asked a question that I cannot answer!] If PSE does not list .PSD files as sources for SlideShows, then totally disregard my earlier comments on that workflow. I do all of my SlideShows in PrPro, which does Import .PSD's and in more ways, than PrE does.
    Now, JPEG is a compressed file format. This means that some of the data is "thrown away," when the file is Saved_As JPEG. How much will depend on the "Quality" settings. The higher the Quality, the less data is discarded. The inverse is also true.
    Now, there are two considerations, regarding image files for Video. One applies only to .PSD, and both apply to JPEG. The main one is the Image Size. This will be the horizontal and the vertical sizes in pixels, say 720 (h) x 480 (v). This applies to both (actually to TIFF's, PNG's, GIF's, TGA's, etc, but we're talking about JPEG and PSD only for now) file types, and applies equally. The Quality setting is the degree of compression. Higher Quality = less compression. This is where PSE is saying to use the higher Quality - in the compression settings. PSD files are not compressed, so this does not apply to them.
    Hope that this clears things up a bit. I'll try to track down whether PSE can use .PSD files, but if you have the program, you might want to check the Help (F1) files, under File Formats, and also under SlideShows.
    Just for clarity sake, here are the "codes" in my post:
    PS = Photoshop
    PSE = Photoshop Elements
    PrPro = Premiere Pro
    PrE = Premiere Elements
    Good luck,
    Hunt

  • GIF and PNG aliased when placed over bg image

    When I use Save for Web/Devices in both Illustrator and
    Photoshop, the saved files look normal and display fine in browser
    and other image viewing programs. However, when I attempt to turn
    them into a navigation bar or rollover, they become severely
    aliased when placed into a table (which is the layout). I tried
    placing them just by themselves in a XHTML document and they do not
    alias, even when the body has a bg image (I am using CSS and have
    encounted no other problems). This is pretty frustrating and would
    appreciated any help.

    > When I use Save for Web/Devices in both Illustrator and
    Photoshop, the
    > saved
    > files look normal and display fine in browser and other
    image viewing
    > programs.
    > However, when I attempt to turn them into a navigation
    bar or rollover,
    > they
    > become severely aliased when placed into a table (which
    is the layout). I
    > tried
    > placing them just by themselves in a XHTML document and
    they do not alias,
    > even
    > when the body has a bg image (I am using CSS and have
    encounted no other
    > problems). This is pretty frustrating and would
    appreciated any help.
    Have a link for us?
    My guess is you either:
    a) are using gif or 8-bit png transparency, and then placing
    it on a
    background that is of a different color than the one in the
    original file
    or
    b) the image is scaled and you're seeing pixelization rather
    than aliasing.
    -Darrel

  • Why is Adobe Flash CS6 crashing sporadically when resizing MC's or shapes?

    Why is Adobe Flash CS6 crashing sporadically when resizing MC's or shapes?
    It doesn't happen all the time but when Flash crashes, it happens when i'm resizing a symbol or a shape.
    I'm using Flash CS6 v 12.0.0.481
    Processor  2.7 GHz Intel Core i7
    Memory  8 GB 1333 MHz DDR3
    Graphics  AMD Radeon HD 6630M 256 MB
    Software  OS X 10.8.1 (12B19)
    -Line

    I'm going to add my voice to this bug report. Adobe Flash CS6 crashes sporadically for me (numerous times per day), and it's almost always when I am editing a vector shape control point using the subselection tool. If I select a control point and nudge it with the keyboard arrow keys, I haven't encountered a problem. But if I select a control point, then click and drag it to reposition it, I often get the spinning wheel followed by a crash. Is this really a bug or a problem related to my own hardware/software configuration?
    I am working on a Mac Pro with 2 x 2.66 GHz 6-Core Intel Xeon processors, 24GB RAM running OS X 10.7.5. Here is the crash report from the most recent crash (about 10 minutes before I posted this):
    Process:         Adobe Flash CS6 [1424]
    Path:            /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/MacOS/Adobe Flash CS6
    Identifier:      com.adobe.flash
    Version:         12.0.2.529 (12.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [153]
    Date/Time:       2013-03-18 16:10:30.795 -0400
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
    VM Regions Near 0x14:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/MacOS/Adobe Flash CS6
        __TEXT                 0000000000001000-0000000001b83000 [ 27.5M] r-x/rwx SM=COW  /Applications/Adobe Flash CS6/Adobe Flash CS6.app/Contents/MacOS/Adobe Flash CS6
    Application Specific Information:
    objc[1424]: garbage collection is OFF
    Java information:
    Exception type: Bus Error (0xa) at pc=000000009c28de16
    Java VM: Java HotSpot(TM) Client VM (20.14-b01-445 mixed mode macosx-x86)
    Current thread (000000002b04fc00):  JavaThread "main" [_thread_in_native, id=-1407053120, stack(00000000bf800000,00000000c0000000)]
    Stack: [00000000bf800000,00000000c0000000]
    Java Threads: ( => current thread )
      00000000638b6000 JavaThread "Code Model Worker" daemon [_thread_blocked, id=-1283768320, stack(00000000b36b4000,00000000b37b4000)]
      00000000638b5800 JavaThread "Code Model Worker" daemon [_thread_blocked, id=-1284825088, stack(00000000b35b2000,00000000b36b2000)]
      000000006605d000 JavaThread "FelixPackageAdmin" daemon [_thread_blocked, id=-1285881856, stack(00000000b34b0000,00000000b35b0000)]
      000000006605c800 JavaThread "FelixStartLevel" daemon [_thread_blocked, id=-1286938624, stack(00000000b33ae000,00000000b34ae000)]
      000000002b44e400 JavaThread "FelixDispatchQueue" [_thread_blocked, id=-1287995392, stack(00000000b32ac000,00000000b33ac000)]
      000000002b405000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=-1290108928, stack(00000000b30a8000,00000000b31a8000)]
      000000002b404000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=-1291165696, stack(00000000b2fa6000,00000000b30a6000)]
      000000002b403000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=-1292222464, stack(00000000b2ea4000,00000000b2fa4000)]
      000000002b402000 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=-1293279232, stack(00000000b2da2000,00000000b2ea2000)]
      000000002b3fa000 JavaThread "Finalizer" daemon [_thread_blocked, id=-1294336000, stack(00000000b2ca0000,00000000b2da0000)]
      000000002b3f9000 JavaThread "Reference Handler" daemon [_thread_blocked, id=-1295392768, stack(00000000b2b9e000,00000000b2c9e000)]
    =>000000002b04fc00 JavaThread "main" [_thread_in_native, id=-1407053120, stack(00000000bf800000,00000000c0000000)]
    Other Threads:
      000000002b3f6400 VMThread [stack: 00000000b2a9c000,00000000b2b9c000] [id=-1296449536]
      000000002b406800 WatcherThread [stack: 00000000b31aa000,00000000b32aa000] [id=-1289052160]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    par new generation   total 14784K, used 6310K [00000000569d0000, 00000000579d0000, 00000000579d0000)
      eden space 13184K,  42% used [00000000569d0000, 0000000056f42ab0, 00000000576b0000)
      from space 1600K,  45% used [0000000057840000, 00000000578f7088, 00000000579d0000)
      to   space 1600K,   0% used [00000000576b0000, 00000000576b0000, 0000000057840000)
    concurrent mark-sweep generation total 49152K, used 0K [00000000579d0000, 000000005a9d0000, 000000005e9d0000)
    concurrent-mark-sweep perm gen total 12288K, used 6704K [000000005e9d0000, 000000005f5d0000, 00000000629d0000)
    Code Cache  [00000000549cf000, 0000000054a80000, 00000000569cf000)
    total_blobs=279 nmethods=150 adapters=73 free_code_cache=32844480 largest_free_block=0
    Virtual Machine Arguments:
    JVM Args: -Djava.awt.headless=true -Xmx128m
    Java Command: Launcher Type: generic
    Physical Memory: Page Size = 4k, Total = 24576M, Free = 17592186043894M
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation           0x9c28de16 blockForLocation + 6
    1   com.apple.CoreFoundation           0x9c28ddeb CFRunArrayGetValueAtIndex + 27
    2   com.apple.CoreFoundation           0x9c28ddc6 CFAttributedStringGetAttributes + 182
    3   com.apple.CoreText                 0x98c9fdc9 TTypesetterAttrString::Initialize(__CFAttributedString const*) + 217
    4   com.apple.CoreText                 0x98c9f9d9 CTLineCreateWithAttributedString + 47
    5   com.apple.HIToolbox                0x92854029 TCoreTextEngine::LayoutSingleLine(THIThemeTextInfo*, float) + 23
    6   com.apple.HIToolbox                0x92853f96 TCoreTextEngine::Layout(THIThemeTextInfo*, float, float, TextLayoutType) + 64
    7   com.apple.HIToolbox                0x9282e761 TCoreTextEngine::VerifyLayout(THIThemeTextInfo*, float, float, LayoutIntent) + 309
    8   com.apple.HIToolbox                0x928920e2 TCoreTextEngine::GetThemeTextDimensions(float, THIThemeTextInfo*, float*, float*, float*) + 54
    9   com.apple.HIToolbox                0x92892dfc TCoreTextEngine::TruncateThemeText(short, unsigned long, __CFString const**, unsigned char*) + 140
    10  com.apple.HIToolbox                0x92890f53 DataEngine::TruncateText(__CFString const*, HIThemeTextInfo*, short, __CFString const**, unsigned char*) + 145
    11  com.apple.HIToolbox                0x9287ba82 TruncateThemeText + 232
    12  com.adobe.flash                    0x00f8fb4e CDialogViewImpl::SetWindowText(unsigned short const*) + 40722
    13  com.adobe.flash                    0x00f906ef CDialogViewImpl::SetWindowText(unsigned short const*) + 43699
    14  com.adobe.flash                    0x00f91cf8 CDialogViewImpl::SetWindowText(unsigned short const*) + 49340
    15  com.adobe.flash                    0x00f9338f CDialogViewImpl::SetWindowText(unsigned short const*) + 55123
    16  com.apple.HIToolbox                0x92942a14 TBrowser::Draw(unsigned long, unsigned long, unsigned long, Rect const&, short, bool, TDeviceRenderer::Context const&) const + 620
    17  com.apple.HIToolbox                0x929427a3 non-virtual thunk to TBrowser::Draw(unsigned long, unsigned long, unsigned long, Rect const&, short, bool, TDeviceRenderer::Context const&) const + 71
    18  com.apple.HIToolbox                0x9295f7f3 TTableCell::Draw(unsigned long, TDeviceRenderer::Context const&) const + 1307
    19  com.apple.HIToolbox                0x9295a373 TTableView::DrawCell(TTableCell const&, unsigned long, TDeviceRenderer::Context const&) const + 95
    20  com.apple.HIToolbox                0x92962862 TListView::DrawCell(TTableCell const&, unsigned long, TDeviceRenderer::Context const&) const + 74
    21  com.apple.HIToolbox                0x9295a217 TTableView::DrawCellSelf(Cell32 const&, Rect const&, TDeviceRenderer::Context const&, DBDrawFlags) const + 101
    22  com.apple.HIToolbox                0x9295a3c4 non-virtual thunk to TTableView::DrawCellSelf(Cell32 const&, Rect const&, TDeviceRenderer::Context const&, DBDrawFlags) const + 48
    23  com.apple.HIToolbox                0x9296f0dc TTableLayout::Draw(Rect const&, UPoint32 const&, TDeviceRenderer::Context const&, DBDrawFlags) const + 318
    24  com.apple.HIToolbox                0x92957764 TTableView::DrawView(unsigned short, TDeviceRenderer::Context const&) const + 164
    25  com.apple.HIToolbox                0x92965ccf TListView::DrawView(unsigned short, TDeviceRenderer::Context const&) const + 241
    26  com.apple.HIToolbox                0x92949c2a TBrowserView::Draw(CGContext*, unsigned short, OpaqueRgnHandle*) const + 390
    27  com.apple.HIToolbox                0x9294363d TBrowser::Draw(CGContext*, OpaqueRgnHandle*) const + 431
    28  com.apple.HIToolbox                0x92946051 TBrowser::EventHandlerProc(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3941
    29  com.apple.HIToolbox                0x92990c0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    30  com.apple.HIToolbox                0x9280c313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    31  com.apple.HIToolbox                0x9280b790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec + 482
    32  com.apple.HIToolbox                0x9284f420 CallNextEventHandler + 79
    33  com.adobe.flash                    0x00f89e73 CDialogViewImpl::SetWindowText(unsigned short const*) + 16951
    34  com.apple.HIToolbox                0x92990c0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    35  com.apple.HIToolbox                0x9280c313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    36  com.apple.HIToolbox                0x9280b790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec + 482
    37  com.apple.HIToolbox                0x9280b5a8 SendEventToEventTargetWithOptions + 75
    38  com.apple.HIToolbox                0x9282c040 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 478
    39  com.apple.HIToolbox                0x928bb30e HIView::RecursiveDrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char) + 558
    40  com.apple.HIToolbox                0x928bb5ac HIView::DrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned long) + 340
    41  com.apple.HIToolbox                0x928bbfcf HIView::Draw(short, OpaqueGrafPtr*, unsigned long) + 149
    42  com.apple.HIToolbox                0x9284809e HIView::Show(unsigned char) + 304
    43  com.apple.HIToolbox                0x928acc99 ShowControl + 37
    44  com.adobe.flash                    0x00f89a7b CDialogViewImpl::SetWindowText(unsigned short const*) + 15935
    45  com.adobe.flash                    0x002bbfd6 CActionThrowDlg::~CActionThrowDlg() + 16920
    46  com.adobe.flash                    0x002bc0ce CActionThrowDlg::~CActionThrowDlg() + 17168
    47  com.adobe.flash                    0x00fa5b39 CMultiDocTemplate::GetRuntimeClass() const + 195
    48  com.adobe.flash                    0x00ff9639 TArray::~TArray() + 157
    49  com.adobe.flash                    0x00ff9af5 TTimerTask::DoTask() + 51
    50  com.adobe.flash                    0x01062cc9 LCollapsableTree::~LCollapsableTree() + 3915
    51  com.apple.HIToolbox                0x92821cfd TimerVector + 22
    52  com.apple.CoreFoundation           0x9c2562a6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    53  com.apple.CoreFoundation           0x9c255c37 __CFRunLoopDoTimer + 743
    54  com.apple.CoreFoundation           0x9c234cd0 __CFRunLoopRun + 1888
    55  com.apple.CoreFoundation           0x9c2341dc CFRunLoopRunSpecific + 332
    56  com.apple.CoreFoundation           0x9c234088 CFRunLoopRunInMode + 120
    57  com.apple.HIToolbox                0x92806543 RunCurrentEventLoopInMode + 318
    58  com.apple.HIToolbox                0x9280d8ab ReceiveNextEventCommon + 381
    59  com.apple.HIToolbox                0x9285bd93 AcquireNextEventInMode + 67
    60  com.apple.HIToolbox                0x929a395b _AcquireNextEvent + 58
    61  com.apple.HIToolbox                0x92990b78 RunApplicationEventLoop + 221
    62  com.adobe.flash                    0x00fcd77b CArray::SetSize(int, int) + 5271
    63  com.adobe.flash                    0x00fa619d CTimerImpl::~CTimerImpl() + 1293
    64  com.adobe.flash                    0x00fa6380 CTimerImpl::~CTimerImpl() + 1776
    65  com.adobe.flash                    0x0020f46d std::vector >::vector(std::allocator const&) + 6295
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib             0x934c390a kevent + 10
    1   libdispatch.dylib                  0x9265fe04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                  0x9265e853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   com.apple.CoreFoundation           0x9c22b9da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation           0x9c234b04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation           0x9c2341dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation           0x9c244f01 CFRunLoopRun + 129
    6   com.apple.DVCPROHDMuxer            0x14f6a98f AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 317
    7   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    8   libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore     0x96d60e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore     0x96cd237d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore     0x96d3467f MPWaitOnQueue + 200
    6   com.adobe.ACE                      0x069b1a69 0x6972000 + 260713
    7   com.adobe.ACE                      0x069b0d99 0x6972000 + 257433
    8   com.apple.CoreServices.CarbonCore     0x96d355e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    10  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib             0x934c283e __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x92790e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                  0x9274142c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AFlame                   0x0bb91439 Flame_Terminate + 1281926
    4   com.adobe.AFlame                   0x0bbdb950 Flame_Terminate + 1586333
    5   com.adobe.AFlame                   0x0bb8fa35 Flame_Terminate + 1275266
    6   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    7   libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib             0x934c2a9a __recvfrom + 10
    1   libsystem_c.dylib                  0x927414a2 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib      0x1ba7c733 Invoke + 47867
    3   ServiceManager-Launcher.dylib      0x1ba7b846 Invoke + 44046
    4   ServiceManager-Launcher.dylib      0x1ba7a988 Invoke + 40272
    5   ServiceManager-Launcher.dylib      0x1ba7aa0f Invoke + 40407
    6   ServiceManager-Launcher.dylib      0x1ba75baf Invoke + 20343
    7   ServiceManager-Launcher.dylib      0x1ba75ea7 Invoke + 21103
    8   ServiceManager-Launcher.dylib      0x1ba76685 Invoke + 23117
    9   ServiceManager-Launcher.dylib      0x1ba768f9 Invoke + 23745
    10  ServiceManager-Launcher.dylib      0x1ba792a0 Invoke + 34408
    11  ServiceManager-Launcher.dylib      0x1ba793fd Invoke + 34757
    12  ServiceManager-Launcher.dylib      0x1ba79c91 Invoke + 36953
    13  ServiceManager-Launcher.dylib      0x1ba79db2 Invoke + 37242
    14  ServiceManager-Launcher.dylib      0x1ba6c656 Login + 461
    15  ServiceManager-Launcher.dylib      0x1ba7009a Login + 15377
    16  ServiceManager-Launcher.dylib      0x1ba7a165 Invoke + 38189
    17  ServiceManager-Launcher.dylib      0x1ba7c2eb Invoke + 46771
    18  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    19  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 20:: Java: Exception Handler Thread
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libsystem_kernel.dylib             0x934c0835 mach_msg_server + 699
    3   libjvm.dylib                       0x2484505a 0x2482f000 + 90202
    4   libjvm.dylib                       0x24844ee3 0x2482f000 + 89827
    5   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    6   libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    7   libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 21:: Java: Gang worker#0 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 22:: Java: Gang worker#1 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 23:: Java: Gang worker#2 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 24:: Java: Gang worker#3 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 25:: Java: Gang worker#4 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 26:: Java: Gang worker#5 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 27:: Java: Gang worker#6 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 28:: Java: Gang worker#7 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 29:: Java: Gang worker#8 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 30:: Java: Gang worker#9 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 31:: Java: Gang worker#10 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 32:: Java: Gang worker#11 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 33:: Java: Gang worker#12 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 34:: Java: Gang worker#13 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 35:: Java: Gang worker#14 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 36:: Java: Gang worker#15 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 37:: Java: Gang worker#16 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 38:: Java: Gang worker#17 (Parallel GC Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2485b3f1 0x2482f000 + 181233
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 39:: Java: Gang worker#0 (Parallel CMS Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x24b3cf0e 0x2482f000 + 3202830
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 40:: Java: Gang worker#1 (Parallel CMS Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x24b3cf0e 0x2482f000 + 3202830
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 41:: Java: Gang worker#2 (Parallel CMS Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x24b3cf0e 0x2482f000 + 3202830
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 42:: Java: Gang worker#3 (Parallel CMS Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x24b3cf0e 0x2482f000 + 3202830
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 43:: Java: Gang worker#4 (Parallel CMS Threads)
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x24843ec8 0x2482f000 + 85704
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x24b3cf0e 0x2482f000 + 3202830
    8   libjvm.dylib                       0x2485b2db 0x2482f000 + 180955
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 44:: Java: Concurrent Mark-Sweep GC Thread
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x24844196 0x2482f000 + 86422
    3   libjvm.dylib                       0x24861d56 0x2482f000 + 208214
    4   libjvm.dylib                       0x24843ee4 0x2482f000 + 85732
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x2496cca5 0x2482f000 + 1301669
    8   libjvm.dylib                       0x2496cc13 0x2482f000 + 1301523
    9   libjvm.dylib                       0x24861b71 0x2482f000 + 207729
    10  libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    11  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    12  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 45:: Java: VM Thread
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x24844196 0x2482f000 + 86422
    3   libjvm.dylib                       0x24861d56 0x2482f000 + 208214
    4   libjvm.dylib                       0x24843ee4 0x2482f000 + 85732
    5   libjvm.dylib                       0x24843a0d 0x2482f000 + 84493
    6   libjvm.dylib                       0x24843897 0x2482f000 + 84119
    7   libjvm.dylib                       0x248dc246 0x2482f000 + 709190
    8   libjvm.dylib                       0x248dbeef 0x2482f000 + 708335
    9   libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    10  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    11  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 46:: Java: Reference Handler
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x248eae28 0x2482f000 + 769576
    5   libjvm.dylib                       0x248ea32a 0x2482f000 + 766762
    6   libjvm.dylib                       0x248ea01c JVM_MonitorWait + 203
    7   libjvmlinkage.dylib                0x1c3e2dd5 JVM_MonitorWait + 69
    8   ???                                0x549d99d9 0 + 1419614681
    9   ???                                0x549d1e31 0 + 1419583025
    10  ???                                0x549d1e31 0 + 1419583025
    11  ???                                0x549cf374 0 + 1419572084
    12  libjvm.dylib                       0x248dd583 0x2482f000 + 714115
    13  libjvm.dylib                       0x248dd2f5 0x2482f000 + 713461
    14  libjvm.dylib                       0x248e9ccd 0x2482f000 + 765133
    15  libjvm.dylib                       0x248e9b5d 0x2482f000 + 764765
    16  libjvm.dylib                       0x248e9adb 0x2482f000 + 764635
    17  libjvm.dylib                       0x248e9935 0x2482f000 + 764213
    18  libjvm.dylib                       0x248e9773 0x2482f000 + 763763
    19  libjvm.dylib                       0x2484396c 0x2482f000 + 84332
    20  libsystem_c.dylib                  0x9278ced9 _pthread_start + 335
    21  libsystem_c.dylib                  0x927906de thread_start + 34
    Thread 47:: Java: Finalizer
    0   libsystem_kernel.dylib             0x934c0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x934c01f6 mach_msg + 70
    2   libjvm.dylib                       0x248440c6 0x2482f000 + 86214
    3   libjvm.dylib                       0x24844002 0x2482f000 + 86018
    4   libjvm.dylib                       0x248eae28 0x2482f000 + 769576
    5   libjvm.dylib                       0x248ea32a 0x2482f000 + 766762
    6   libjvm.dylib                       0x248ea01c JVM_MonitorWait + 203
    7   libjvmlinkage.dylib                0x1c3e2dd5 JVM_MonitorWait + 69
    8   ???                                0x549d99d9 0 + 1419614681
    9   ???                                0x549d1e31 0 + 1419583025
    10  ???                                0x549d1f97 0 + 1419583383
    11  ???                                0x549d1f97 0 + 1419583383
    12  ???                                0x549cf374 0 + 1419572084
    13  libjvm.dylib                       0x248dd583 0x2482f000 + 714115
    14  libjvm.dylib                       0x248dd2f5 0x2482f000 + 713461
    15  libjvm.dylib                       0x248e9ccd 0x2482f000 + 765133
    16  libjvm.dylib                       0x248e9b5d 0x2482f000 + 764765
    17  libjvm.dylib                       0x248e9adb 0x2482f000 + 764635
    18  libjvm.dylib                       0x248e9935 0x2482f000 + 764213
    19  libjvm.dylib                       0x248e9773 0x2482f000 + 763763
    20  libjvm.dylib                       0x2484396c 0x2482f00

  • I am getting an error when resizing the Mac HD. I had a separate partition for Windows, but have deleted it and want to add the empty 50GB partition to my Mac HD.

    I am getting an error when resizing the Mac HD. I had a separate partition for Windows, but have deleted it and want to add the empty 50GB partition to my Mac HD.

    SparkchaserEd wrote:
    I am getting an error when resizing the Mac HD.
    What does this error say?

  • Lightroom 5.6 cc glitch when resizing.

    Hi everyone, can anyone help with the glitch that occurs when resizing images. When I click an edge to make an image smaller or rotate, the image zooms out then zooms in again. Its not affecting the tool or the program but is very annoying when handling a lot of files. Thanks!

    Hi everyone, can anyone help with the glitch that occurs when resizing images. When I click an edge to make an image smaller or rotate, the image zooms out then zooms in again. Its not affecting the tool or the program but is very annoying when handling a lot of files. Thanks!

  • Possible to use coordinates for SCALEABOUT when resizing?

    when resizing and object, I'd like to be able to scale from a specified coordinate.  Is this possible?

    So where am I going wrong.  I figured this would be easy, but it's not scaling about the right point.
    tempOrigin = activeDocument.pageOrigin;
    pageOrigin = sText.position;
    sText.resize(scaleFactor, scaleFactor, true, true, true, true, scaleFactor, Transformation.DOCUMENTORIGIN);
    pageOrigin = tempOrigin;

  • When resizing a picture in photo shop elements ?

    When resizing a picture in photo shop elements 7,
    can somebody explain the difference between bi-cubic and bi-cubic smoother?

    Hello,
    The way I understand it is this:
    When you resize an image for sending to someone or viewing on the web or a monitor the size should be 640x480 pixels. You are actually making your image smaller and Adobe recommends using 'bicubic sharper'.
    When you resize an image for printing you want to check your ppi or pixels per inch. Ideally it should be 300ppi with 200ppi being the lowest density for an acceptable print. A point to remember is that Canon cameras usually come in at 180ppi so check your camera and set it for the highest quality in the camera menu. Adobe recommends choosing 'bicubic smoother'.
    The choice is actually yours to make in either case. If you don't like what you see choose one of the other resampling choices to get what you want.
    Jakeman97

  • Why does my late 2012 mac mini flicker like a VHS tape when on 1080p via HDMI?

    I just got a late 2012 mac mini,
    After launching the app store for the first time, I was told to update to Mac OS 10.8.2, I obliged and came back to see that the screen was flickering like a vhs tapes with lines appearing and disappearing in the space of a millisecond. it goes away when I change to 720p but it looks horrible.
    I saw a fix on the apple website but It said that it wasn't supported on my system even though It said mac mini IN THE TITLE!
    Can anyone help?

    I just got a late 2012 mac mini,
    After launching the app store for the first time, I was told to update to Mac OS 10.8.2, I obliged and came back to see that the screen was flickering like a vhs tapes with lines appearing and disappearing in the space of a millisecond. it goes away when I change to 720p but it looks horrible.
    I saw a fix on the apple website but It said that it wasn't supported on my system even though It said mac mini IN THE TITLE!
    Can anyone help?

Maybe you are looking for

  • OEDQ 11 - error.connection.externaldatasource - While trying to export excel file into local drive

    Team I am trying to export a dataset as a excel spreadsheet on to my local drive. when I ever I try to run the Export I am getting error.connection.externaldatasource error message. Even I tried creating a excel file in my local and point that file i

  • Automatic creation of Reservation for Service Order (Return and Repair)

    Hi, Looking for your valuable help on Creation of Automatic Reservation I am working on Return and Repair process at Plant. 1) So far Service Notification > Repair Order > Return Delivery > Service order . has been done. now requirement is when i am

  • Help...Vendor Evaluation Websurvey not showing

    Dear All, Im facing a problem in Vendor evaluation. I've done the following steps: 1. Create Questionnaire and assign it to Survey 2. Define Event for survey 3. Activate SRM_VE_SERVICE and UWS_FORM_SERVICE in SICF When I create confirmation for PO, t

  • 16:9 question/problem

    hello, i imported some footage, it was shot on a cannon gl-2 in 16.9 format, when i imported this into imovie it did get converted to 16.9 so there is a black bar on top of and below the footage in the time line...the problem is that when i add an ef

  • How stop ad videos from starting when I open FIrefox

    Whenever I start Firefox, unwanted advertising videos start playing in a superimposed window that I can't turn off. Should these not be stopped by popup blocker?