Skip to main content
Inspiring
July 8, 2015
Answered

Smart Plugin Memory Leak

  • July 8, 2015
  • 1 reply
  • 1812 views

Hi

I am just writing my first smart plugin - to date I have just written regular plugins. My first test was pretty simple, it just had a single slider going from 0 to 1, and it filled the whole output with black, white or the appropriate shade of grey.

However after scrubbing the slider backwards and forwards a few times everything locked up. Opening task manager (which took some effort) showed that AE had eaten all my memory. Running AE in the debugger I found thatcalling fill consumed about 8 MB of memory and then between returning from my smart render event and the call to free my pre_render_data AE had consumed about another 8 MB of memory. Each move of the slider resulted in another 15 MB or so being consumed and with the breakpoints removed sliding slowly from one end to the other consumed a few hundred MB.

I then changed my plugin so that it totally ignored both smart render and smart prerender events. It literally did nothing but return PF_Err_NONE. Still AE racked up memory usage. Still I am getting 10 or 15 MB of memory leakage for each render event.

Has anyone ever seen this type of behaviour before? Is there something I need to do in a smart plugin that I haven't needed to do before that might be causing this problem? If needed I can post my sample code. I am using Visual Studio 2012 on Windows 8.1 with AE CC.

Phil

This topic has been closed for replies.
Correct answer philrosenberg2013

It turns out this is correct behaviour. There is no bug. It is just AE caching results.

I downloaded the AE CC 2014 SDK and built the Smarty Pants plugin from there. I still see the same behaviour. AE eats memory as I move the slider backwards and forwards. However if I go to Edit->Purge->Memory then the usage drops back to about 200 MB. By increasing the memory allowance for other applications under Edit->Preferences->Memory & Multiprocessing I can limit the memory use to an amount that avoids crashing the debugger.

Phil

1 reply

Community Expert
July 8, 2015

that is most definitely not a known issue. you're probably missing

something.

try the "SmartyPants" sample project. it practices smart render. see if

you're getting the same problem there.

Inspiring
July 9, 2015

Hi Shachar

I have just checked the SmartyPants plugin and I see the same behaviour. If I place a break point at the SmartRender call within the entry point function then after each of those calls I see AE memory usage reported by the Task Manager increase by about 10-15 MB. Some of this increase occurs during the SmartRender cal, but some happens after the plugin has returned. When I removed the break points then scrubbed backwards and forwards with the Layer Blend Ratio slider then Memory usage slowly crept up until it reached about 3400 MB at which point my computer hung for about a minute, AE exited with no warning and I got the following error message in Visual Studio:

The debugger's worker process (msvsmon.exe) unexpectedly exited. Debugging will be aborted.

I have incuded the debug output below. I also wondered if the issue was actually related to the debugger, so I tried running AE not in the debugger, but still I see memory usage creeping up as I scrub the slider in SmartyPants. I therefore think that probably what is happening is that the memory leak basically eats all my memory until  the debugger finds it cannot allocate any more memory and then throws an exception or something and exits causing AE to close. However the memory leak appears to be within AE and nothing to do with the plugin nor the debugger.

This may or may not make a difference, but I am still using the CS6 SDK. Presumably though CC is backwards compatible with CS6 plugins so this should not be an issue?

The debug output is as follows

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AfterFX.exe'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ntdll.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\kernel32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\KernelBase.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AfterFXLib.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\user32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\shell32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msvcp110.dll'. Symbols loaded.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msvcr110.dll'. Symbols loaded.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\opengl32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\winmm.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wsock32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\comdlg32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wtsapi32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.17810_none_6240b9c7ecbd0bda\comctl32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\LogSession.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvacore.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\boost_date_time.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\boost_threads.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\boost_system.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\amtlib.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\EAClient.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\EAProjectBridge.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\aif_core.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\aif_ogl.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\filter_graph.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AdobeXMP.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AdobeXMPFiles.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvametadataUI.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvatemporalxmp.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\BIB.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\exo.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dynamiclink.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dynamiclinkui.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvamarshal.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AXE8SharedExpat.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvanet.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvanetsync.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\MediaUtils.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ASLFoundation.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvamediatypes.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvaui.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvaworkspace.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvaeve.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\tbb.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ahclient.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\SegMatServices.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\SAM.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\EMUL.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ALOG.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\U.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\STR.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\FILE.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\PLUG.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\PREF.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\M.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\PR.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\SLU.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\PIN.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\BM.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\COR.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\FLT.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\PF.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\OM.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\P.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\FRP.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\MC.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\MSK.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\VAL.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\RND.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\FLO.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\BEZ.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\TDL.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\T.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\TDB.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\SND.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\TXT.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\BEE.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\PREM.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\LIST.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\gdi32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\advapi32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ole32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\oleaut32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.9600.17415_none_932b3b5547500489\GdiPlus.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\mkl_intel_thread.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msvcrt.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\combase.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\shlwapi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\glu32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ddraw.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\winmmbase.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ws2_32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\version.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\setupapi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\rpcrt4.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\psapi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dbghelp.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\mpr.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\IPHLPAPI.DLL'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\winhttp.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\eaurl.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AdobeXMPCompareAndMerge.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\PRM.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ASLMessaging.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\MediaFoundation.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\EAMedia.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\boost_serialization.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\boost_filesystem.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Backend.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\PluginSupport.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\VideoRenderer.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\EncoderHost.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ProjectSupport.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\MBCProvider.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvametadata.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvatransport.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\normaliz.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msvfw32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msacm32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Memory.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\VideoFrame.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\pdh.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\boost_signals.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msvcp100.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msvcr100.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wininet.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AXEDOMCore.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AMEAppFoundation.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\SettingsUI.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\QT32Client.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AdobePDFL.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\MPS.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ImporterHost.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ImageRenderer.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\DynamicLinkMedia.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\MLFoundation.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AudioRenderer.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\optix.1.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ARE.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\BIBUtils.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ACE.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AGM.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\CoolType.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\JP2KLib.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\RG.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\libmmd.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\svml_dispmd.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\imm32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\WRServices.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ScCore.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ExtendScript.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AudioSupport.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AudioFilterHost.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AudioFilters.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\VideoFilterHost.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ProjectConverterHost.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ExporterHost.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\TransmitHost.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\DisplaySurface.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\sechost.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\mkl_core.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\libiomp5md.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dciman32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\cfgmgr32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\devobj.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\nsi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\winnsi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\boost_regex.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvaunittesting.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\ASLUnitTesting.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\xerces-c_3_0.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvacaptioning.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\SweetPeaSupport.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\mswsock.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\iertutil.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\userenv.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\winspool.drv'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\mc_enc_dv.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\cudart64_42_9.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msctf.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvaaudiodevice.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvaaudiofilterhost.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dwmapi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\SHCore.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.8387_none_08e793bfa83a89b5\msvcr90.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\profapi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\avrt.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\cryptbase.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\bcryptprimitives.dll'. Cannot find or open the PDB file.

First-chance exception at 0x00007FFAFC828B9C (KernelBase.dll) in AfterFX.exe: 0xA1A01DB1 (parameters: 0x00000000100AB386, 0x00000000100A9180, 0x0000000000000000).

<1768> <AppVers> <5> App Version = 13.1.1.1x3 release

<1768> <AppDirs> <5> App Dir = C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files

<1768> <AppDirs> <5> Executable Dir = C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files

<1768> <AppDirs> <5> Resources Dir = C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files

<1768> <AppDirs> <5> Package Dir = C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files

<1768> <AppDirs> <5> Plugin Dir = C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins

<1768> <AppDirs> <5> Required Dir = C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\aeres1.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\kernel.appcore.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\uxtheme.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\winsta.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\cryptsp.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\rsaenh.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\bcrypt.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\clbcatq.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\WindowsCodecs.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ntmarta.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msxml3.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\DWrite.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\propsys.dll'. Cannot find or open the PDB file.

Application "\??\C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AEGPUSniffer.exe" found in cache

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d9.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d10.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d10core.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dxgi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d11.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\igd10umd64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\d3d11.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\dxgi.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\d3d10core.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\d3d10.dll'

<1768> <GPUManager> <2> Sniffer Result Code: 3

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ig4icd64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\tbbmalloc.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d10.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d10core.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dxgi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d11.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\d3d11.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\dxgi.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\d3d10core.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\d3d10.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d10.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d10core.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dxgi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\d3d11.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\d3d11.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\dxgi.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\d3d10core.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\d3d10.dll'

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: optix::BasicException at memory location 0x000000000083E560.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: optix::BasicException at memory location 0x000000000083E560.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\mscms.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\mscms.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\mscms.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\mscms.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wbem\wbemprox.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wbemcomn.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wbem\wbemsvc.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wbem\fastprox.dll'. Cannot find or open the PDB file.

<1768> <DynamicLink> <5> Attempting to launch dynamiclinkmanager

<1768> <DynamicLink> <5> C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\32\dynamiclinkmanager.exe

Application "\??\C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\32\dynamiclinkmanager.exe" found in cache

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\AsioWdm.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\MMDevAPI.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wdmaud.drv'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ksuser.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\AudioSes.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\powrprof.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msacm32.drv'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\midimap.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dsound.dll'. Cannot find or open the PDB file.

The thread 0x13fc has exited with code 0 (0x0).

The thread 0x2218 has exited with code 0 (0x0).

The thread 0x3674 has exited with code 0 (0x0).

The thread 0x1a84 has exited with code 0 (0x0).

The thread 0x3790 has exited with code 0 (0x0).

The thread 0x352c has exited with code 0 (0x0).

The thread 0x2cf8 has exited with code 0 (0x0).

Application "\??\C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\GPUSniffer.exe" found in cache

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\ExporterAVI.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\VfWFileWriter.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msyuv.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\msyuv.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\iyuv_32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\iyuv_32.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\iyuv_32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\iyuv_32.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msyuv.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\msyuv.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\tsbyuv.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\tsbyuv.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msyuv.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\msyuv.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\iyuv_32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\iyuv_32.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\iyuv_32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\iyuv_32.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msrle32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\msrle32.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msrle32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\msrle32.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msvidc32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\msvidc32.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msvidc32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\msvidc32.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\bdmjpeg64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files (x86)\BandiMPEG1\bdfilters64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Program Files (x86)\BandiMPEG1\bdfilters64.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\bdmjpeg64.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\bdmjpeg64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files (x86)\BandiMPEG1\bdfilters64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Program Files (x86)\BandiMPEG1\bdfilters64.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\bdmjpeg64.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\bdmpegv64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files (x86)\BandiMPEG1\bdfilters64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Program Files (x86)\BandiMPEG1\bdfilters64.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\bdmpegv64.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\bdmpegv64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files (x86)\BandiMPEG1\bdfilters64.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Program Files (x86)\BandiMPEG1\bdfilters64.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\bdmpegv64.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\ExporterQuickTimeHost.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\CFHDEncoder64.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\CodecSupport.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\QTWriter.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\DNxHDCodec.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\mc_dec_mp2v.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\mc_bc_dec_avc.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\mc_dec_mp4v.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\CFHDDecoder64.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\mp4decoder_dll.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\ImporterAVI.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AVIWriter.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\ImporterIllustratorAE.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\ImporterPhotoshopAE.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\AdobePSL.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(AdobePSL plug-ins)\windows\extensions\FastCore.8BX'. Module was built without symbols.

'AfterFX.exe' (Win32): Unloaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(AdobePSL plug-ins)\windows\extensions\FastCore.8BX'

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(AdobePSL plug-ins)\windows\extensions\MMXCore.8BX'. Module was built without symbols.

'AfterFX.exe' (Win32): Unloaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(AdobePSL plug-ins)\windows\extensions\MMXCore.8BX'

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(AdobePSL plug-ins)\windows\extensions\MultiProcessor Support.8BX'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plugin.dll'. Module was built without symbols.

'AfterFX.exe' (Win32): Unloaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plugin.dll'

'AfterFX.exe' (Win32): Unloaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(AdobePSL plug-ins)\windows\extensions\MultiProcessor Support.8BX'

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(AdobePSL plug-ins)\windows\extensions\FastCore.8BX'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(AdobePSL plug-ins)\windows\extensions\MMXCore.8BX'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(AdobePSL plug-ins)\windows\extensions\MultiProcessor Support.8BX'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plugin.dll'. Module was built without symbols.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: ACEException at memory location 0x000000000083CF80.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: ACEException at memory location 0x000000000083CF80.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\mscms.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\mscms.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\mscms.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\mscms.dll'

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\mscms.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Unloaded 'C:\Windows\System32\mscms.dll'

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: ACEException at memory location 0x000000000083D000.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: ACEException at memory location 0x000000000083D000.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\ImporterQuickTime.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\QTParser.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\IPPMPEGDecoder.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\ImporterWindowsMedia.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\WMVCORE.DLL'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\WMASF.DLL'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\quartz.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\TransmitDesktopAudio.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\TransmitDV.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\devenum.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wintrust.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\crypt32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msasn1.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msdmo.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ksproxy.ax'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\vidcap.ax'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\Kswdmcap.ax'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\mfc42.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\odbc32.dll'. Cannot find or open the PDB file.

The thread 0x1394 has exited with code 0 (0x0).

The thread 0x1ec0 has exited with code 0 (0x0).

The thread 0x253c has exited with code 0 (0x0).

The thread 0x36d0 has exited with code 0 (0x0).

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\(Media Core plug-ins)\Common\TransmitFullScreen.prm'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Extensions\Mthread.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\AEGPDriver.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Format\PS Layer Export.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Format\PS Layer Import.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\EasyEase.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\ExpScale.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\Sequence.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\TRKeys.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Advanced3D.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\AEDynamicLinkServer.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Audio Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Brush Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Character Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Info Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Paint Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Paragraph Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Picasso.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Progress Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Roto Brush.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Standard3D.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Time Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Tool Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Tracker Palette.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Effects\mochaAE\mochashapeconverter4ae.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.8387_none_08e793bfa83a89b5\msvcp90.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Extensions\Anywhere2.aex'. Cannot find or open the PDB file.

<1768> <EAMountPoints> <0> Error: mount point list is empty

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Extensions\CEPManager.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\PlugPlug.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\VulcanControl.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\VulcanMessage5.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\adobe_caps.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\sspicli.dll'. Cannot find or open the PDB file.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: vcfoundation::io::VCFileNotFound at memory location 0x000000002B16F1E8.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: vcfoundation::io::VCFileNotFound at memory location 0x000000002B16F1E8.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\urlmon.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\secur32.dll'. Cannot find or open the PDB file.

Application "\??\C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\IPC\AdobeIPCBroker.exe" found in cache

The thread 0x3708 has exited with code 0 (0x0).

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\adbeape.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\IMSLib.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Extensions\LocalizePresets.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Extensions\Renoir.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Format\OpenEXR.aex'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Format\PNGIO.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Format\TIFF.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Format\PremiereProImport\PremiereProImport.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\MediaCoreUI.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Format\ProImport\Pro Import AE.aex'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\Align.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\Analyzer.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\MayaImport.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\MediaBrowser.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvamediabrowser.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvamediaui.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\MetaPal.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\MotionSketch.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\RPFImport.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\RQMonitor.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\Scripting.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvascriptui.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\dvaflashview.dll'. Cannot find or open the PDB file.

<1768> <Scripting> <1> got WM_USER

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Common Files\Adobe\APE\3.4\adbeapecore.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\SmartMask.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\Smoother.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\Keyframe\Wiggler.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\MAXON CINEWARE AE\Cineware_AE_Exporter.aex'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Plug-ins\MAXON CINEWARE AE\Cineware_AE_SceneLayer.aex'. Module was built without symbols.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\NapiNSP.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\pnrpnsp.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\nlaapi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dnsapi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\winrnr.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wshbth.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Bonjour\mdnsNSP.dll'. Cannot find or open the PDB file.

<1768> <ae.blitpipe> <2> HardwareBlitpipe Engaged

<1768> <ae.blitpipe> <2> Making New Context

<1768> <ae.blitpipe> <2> HardwareBlitpipe Engaged

<1768> <ae.blitpipe> <2> Making New Context

<1768> <ae.blitpipe> <2> HardwareBlitpipe Engaged

<1768> <ae.blitpipe> <2> Making New Context

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Paint.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\Puppet.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\RefineMatte.aex'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Required\RefineMatte2.aex'. Cannot find or open the PDB file.

Application "\??\C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\P7\adobe_licutil.exe" found in cache

'AfterFX.exe' (Win32): Loaded 'C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\updaternotifications.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\netapi32.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\netutils.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\srvcli.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\wkscli.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\taskschd.dll'. Cannot find or open the PDB file.

The thread 0x1930 has exited with code 1 (0x1).

The thread 0x2500 has exited with code 1 (0x1).

The thread 0x1ea8 has exited with code 0 (0x0).

The thread 0x348c has exited with code 0 (0x0).

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\xmllite.dll'. Cannot find or open the PDB file.

The thread 0x132c has exited with code 1 (0x1).

The thread 0x270c has exited with code 0 (0x0).

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\webio.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\rasadhlp.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\P7\x64\IMSLib.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\FWPUCLNT.DLL'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\schannel.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\gpapi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ncrypt.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ntasn1.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\ncryptsslp.dll'. Cannot find or open the PDB file.

<12336> <StormCloud> <1> GetRoot, status_code: 401, body: {"code":"UnauthorizedError","message":""}, requestUID: d760c04f-0a42-443e-91a4-b2d2e94b1769, SERVER=f5-web-db311f746a, DATE=Thu, 09 Jul 2015 09:19:07 GMT, CONNECTION=keep-alive, ACCESS-CONTROL-EXPOSE-HEADERS=Etag, Location, ACCESS-CONTROL-ALLOW-ORIGIN=*, ACCESS-CONTROL-ALLOW-CREDENTIALS=true, HTTP/1.1 401 UNAUTHORIZED=, X-REQUEST-ID=d760c04f-0a42-443e-91a4-b2d2e94b1769, CONTENT-LENGTH=41, CONTENT-TYPE=application/json

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: dvanetsync::UnauthorizedException at memory location 0x00000000301AF230.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: dvanetsync::UnauthorizedException at memory location 0x00000000301AF230.

<12336> <StormCloud> <1> CheckConnectionError: , requestUID: d760c04f-0a42-443e-91a4-b2d2e94b1769, error: {"code":"UnauthorizedError","message":""}

<12336> <SyncService> <4> CheckConnection: 4

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dpapi.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dhcpcsvc6.dll'. Cannot find or open the PDB file.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\dhcpcsvc.dll'. Cannot find or open the PDB file.

The thread 0x348 has exited with code 0 (0x0).

The thread 0x206c has exited with code 0 (0x0).

The thread 0x24d4 has exited with code 0 (0x0).

The thread 0x2260 has exited with code 0 (0x0).

The thread 0x1250 has exited with code 0 (0x0).

The thread 0x1798 has exited with code 0 (0x0).

The thread 0x2d5c has exited with code 0 (0x0).

The thread 0xa80 has exited with code 0 (0x0).

The thread 0x10c has exited with code 0 (0x0).

<1768> <DynamicLink> <5> Looking for Server Alias at:

<1768> <DynamicLink> <5> C:\Program Files\Adobe\Adobe After Effects CC 2014\Support Files\Premiere.lnk

<1768> <DynamicLink> <5> Asking CAPS for GM Server Path:

<1768> <DynamicLink> <5>

<1768> <DynamicLink> <5> Asking CAPS for PR Server Path

<1768> <DynamicLink> <5>

<1768> <DynamicLink> <5> Looking in default location:

<1768> <DynamicLink> <5> C:\Program Files\Adobe\Adobe Premiere Pro CC 2014

AMT Duration: 0.00 Seconds

AMT Duration: 0.00 Seconds

AMT Duration: 0.00 Seconds

AMT Duration: 0.00 Seconds

'AfterFX.exe' (Win32): Loaded 'D:\usr\local\bin\AeEffects\SmartyPants.aex'. Symbols loaded.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\msvcr110d.dll'. Symbols loaded.

'AfterFX.exe' (Win32): Loaded 'C:\Windows\System32\mscms.dll'. Cannot find or open the PDB file.

The thread 0x2624 has exited with code 0 (0x0).

The thread 0x1d18 has exited with code 0 (0x0).

The thread 0x2558 has exited with code 0 (0x0).

The thread 0x3648 has exited with code 0 (0x0).

The thread 0x3490 has exited with code 0 (0x0).

The thread 0x2960 has exited with code 0 (0x0).

The thread 0x1a8c has exited with code 0 (0x0).

The thread 0x2868 has exited with code 0 (0x0).

The thread 0x3188 has exited with code 0 (0x0).

The thread 0x3694 has exited with code 0 (0x0).

The thread 0x2880 has exited with code 0 (0x0).

The thread 0x37f8 has exited with code 0 (0x0).

The thread 0x32e8 has exited with code 0 (0x0).

The thread 0x2e48 has exited with code 0 (0x0).

The thread 0x1a3c has exited with code 0 (0x0).

The thread 0x1b78 has exited with code 0 (0x0).

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C4.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C4.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5CC.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5CC.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C8.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C8.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C0.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C0.

The thread 0x26f8 has exited with code 0 (0x0).

The thread 0x349c has exited with code 0 (0x0).

The thread 0x1f7c has exited with code 0 (0x0).

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083D170.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083D170.

The thread 0x31e0 has exited with code 0 (0x0).

The thread 0x2eb0 has exited with code 0 (0x0).

The thread 0x1528 has exited with code 0 (0x0).

The thread 0x1878 has exited with code 0 (0x0).

The thread 0x1964 has exited with code 0 (0x0).

The thread 0x3018 has exited with code 0 (0x0).

The thread 0x30e4 has exited with code 0 (0x0).

The thread 0x3614 has exited with code 0 (0x0).

The thread 0x34cc has exited with code 0 (0x0).

The thread 0x3124 has exited with code 0 (0x0).

The thread 0x360c has exited with code 0 (0x0).

The thread 0x460 has exited with code 0 (0x0).

The thread 0x1de8 has exited with code 0 (0x0).

The thread 0x36e4 has exited with code 0 (0x0).

The thread 0x3718 has exited with code 0 (0x0).

The thread 0x36f4 has exited with code 0 (0x0).

The thread 0x37d0 has exited with code 0 (0x0).

The thread 0x2e04 has exited with code 0 (0x0).

The thread 0x1158 has exited with code 0 (0x0).

The thread 0x2700 has exited with code 0 (0x0).

The thread 0x3230 has exited with code 0 (0x0).

The thread 0x24c0 has exited with code 0 (0x0).

The thread 0x2ae0 has exited with code 0 (0x0).

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C4.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C4.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5CC.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5CC.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C8.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C8.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C0.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083E5C0.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083D520.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083D520.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083CC24.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083CC24.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083CEA8.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083CEA8.

First-chance exception at 0x00007FFAFC828B9C in AfterFX.exe: Microsoft C++ exception: long at memory location 0x000000000083CEA8.

The program '[12724] AfterFX.exe' has exited with code -1 (0xffffffff).

philrosenberg2013AuthorCorrect answer
Inspiring
July 10, 2015

It turns out this is correct behaviour. There is no bug. It is just AE caching results.

I downloaded the AE CC 2014 SDK and built the Smarty Pants plugin from there. I still see the same behaviour. AE eats memory as I move the slider backwards and forwards. However if I go to Edit->Purge->Memory then the usage drops back to about 200 MB. By increasing the memory allowance for other applications under Edit->Preferences->Memory & Multiprocessing I can limit the memory use to an amount that avoids crashing the debugger.

Phil