libvlc + wxWidgets on Mac OSX = EXC_BAD_ACCESS ...any clue?

This forum is about all development around libVLC.
Ignasi
New Cone
New Cone
Posts: 4
Joined: 28 Nov 2012 16:56

libvlc + wxWidgets on Mac OSX = EXC_BAD_ACCESS ...any clue?

Postby Ignasi » 04 Dec 2012 17:09

Dears,

I am trying to figure out if there is any possible way to use libvlc together with wxWidgets on a Mac. So far, I have only managed to see a single image from a video, and then I get a crash (EXC_BAD_ACCESS (SIGBUS)) which I don't know how to interpret. Let me explain you what I want, what I've done and what I get:

* GOAL: make libvlc to play a video in a wxWindow (a wxPanel to be precise).

* WHAT I'VE DONE:

I have taken the minimal_cocoa project from wxWidgets 2.9.3 and modified minimal.cpp in order to initialize libvlc (2.0.4) and pass a NSView reference to it before i call libvlc_play ... In other words:

in minimal.cpp

Code: Select all

bool MyApp::OnInit() { // call the base class initialization method, currently it only parses a // few common command-line options but it could be do more in the future if ( !wxApp::OnInit() ) return false; // create the main application window MyFrame *frame = new MyFrame(_T("Minimal wxWidgets App")); // and show it (the frames, unlike simple controls, are not shown when // created initially) frame->Show(true); int argc=2; char *argv[] = {"minimal", "/src/tmp/VLC/IMX30.mxf"}; char const *vlc_argv[] = { "--no-audio", /* skip any audio track */ "--no-xlib", /* tell VLC to not use Xlib */ "-v", }; int vlc_argc = sizeof(vlc_argv) / sizeof(*vlc_argv); /* * Initialise libVLC */ libvlc = libvlc_new(vlc_argc, vlc_argv); //TODO add better error checking if (!libvlc) { printf("libVLC init failed"); } m = libvlc_media_new_path(libvlc, argv[1]); mp = libvlc_media_player_new_from_media(m); libvlc_media_release(m); // Set the output window void *drawable = (void *)frame->GetHandle(); #ifdef __WXMSW__ libvlc_media_player_set_hwnd(mp, drawable); #else #ifdef __WXMAC__ libvlc_media_player_set_nsobject(mp, drawable); #endif #endif libvlc_media_player_play(mp); // success: wxApp::OnRun() will be called which will enter the main message // loop and the application will run. If we returned false here, the // application would exit immediately. return true; }

* WHAT I GET:

The result is that I see the first video image, and then I get a very cool crash which I have no idea how to interpret. Any help is much appreciated. Let me copy the crash report below, to see if it make sense to any of you:

Code: Select all

Process: minimal_cocoa [20655] Path: /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./minimal_cocoa Identifier: org.wxwidgets.samples.minimal_cocoa Version: 2.9.3 (2.9.3) Code Type: X86 (Native) Parent Process: bash [83270] Date/Time: 2012-12-04 16:34:42.600 +0100 OS Version: Mac OS X Server 10.6.8 (10K549) Report Version: 6 Interval Since Last Report: 18636910 sec Crashes Since Last Report: 14 Per-App Interval Since Last Report: 10594 sec Per-App Crashes Since Last Report: 3 Anonymous UUID: 4F03AFFC-9007-4A4A-9DD1-15624D372AC0 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000020 Crashed Thread: 11 Thread 0: Dispatch queue: com.apple.main-thread 0 libSystem.B.dylib 0x94f29afa mach_msg_trap + 10 1 libSystem.B.dylib 0x94f2a267 mach_msg + 68 2 com.apple.CoreGraphics 0x92651a8d _CGSSetSurfaceColorProfile + 139 3 com.apple.CoreGraphics 0x926519eb CGSSetSurfaceColorSpace + 408 4 com.apple.AppKit 0x997da334 -[NSSurface updateColorSpace] + 162 5 com.apple.AppKit 0x997da5d2 -[NSView(NSSurface) _setEffectiveSurfaceColorSpace:] + 190 6 com.apple.AppKit 0x997da3fb -[NSView(NSSurface) _updateInheritedSurfaceColorSpace] + 89 7 com.apple.AppKit 0x997da38f -[NSView(NSPrivateSurfaceColorSpaceSupport) _surfaceColorSpace] + 52 8 com.apple.AppKit 0x997da2bf -[NSSurface updateColorSpace] + 45 9 com.apple.AppKit 0x997da10c -[NSSurface _createSurface] + 334 10 com.apple.AppKit 0x997d9f2b -[NSSurface setFrame:] + 1634 11 com.apple.AppKit 0x997d9867 -[NSSurface syncToViewUnconditionally] + 215 12 com.apple.AppKit 0x997d9546 -[NSSurface orderSurface:relativeTo:] + 116 13 com.apple.AppKit 0x997d94cc -[NSSurface orderFront] + 50 14 com.apple.AppKit 0x997d8884 -[NSOpenGLContext setView:] + 942 15 com.apple.AppKit 0x997d84b2 -[NSOpenGLView lockFocusIfCanDraw] + 198 16 com.apple.AppKit 0x997bcba6 -[NSView lockFocus] + 42 17 com.apple.AppKit 0x997c1093 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1047 18 com.apple.AppKit 0x997bf7db -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 711 19 com.apple.AppKit 0x997c0750 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 4668 20 com.apple.AppKit 0x997c0750 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 4668 21 com.apple.AppKit 0x997bf34f -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 265 22 com.apple.AppKit 0x997bbc96 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3309 23 com.apple.AppKit 0x9971c84b -[NSView displayIfNeeded] + 818 24 com.apple.AppKit 0x996e5b64 -[NSWindow displayIfNeeded] + 204 25 com.apple.AppKit 0x9971707e _handleWindowNeedsDisplay + 696 26 com.apple.CoreFoundation 0x94ccadd2 __CFRunLoopDoObservers + 1186 27 com.apple.CoreFoundation 0x94c86ced __CFRunLoopRun + 557 28 com.apple.CoreFoundation 0x94c863c4 CFRunLoopRunSpecific + 452 29 com.apple.CoreFoundation 0x94c861f1 CFRunLoopRunInMode + 97 30 com.apple.HIToolbox 0x978efe04 RunCurrentEventLoopInMode + 392 31 com.apple.HIToolbox 0x978efbb9 ReceiveNextEventCommon + 354 32 com.apple.HIToolbox 0x978efa3e BlockUntilNextEventMatchingListInMode + 81 33 com.apple.AppKit 0x996ed595 _DPSNextEvent + 847 34 com.apple.AppKit 0x996ecdd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156 35 com.apple.AppKit 0x996af1f3 -[NSApplication run] + 821 36 libwx_osx_cocoa.dylib 0x002b119b wxGUIEventLoop::DoRun() + 55 (evtloop.mm:244) 37 libwx_osx_cocoa.dylib 0x001b6e49 wxCFEventLoop::Run() + 149 (evtloop_cf.cpp:415) 38 libwx_osx_cocoa.dylib 0x000c8661 wxAppConsoleBase::MainLoop() + 89 (appbase.cpp:318) 39 libwx_osx_cocoa.dylib 0x000c7e0a wxAppConsoleBase::OnRun() + 26 (appbase.cpp:260) 40 libwx_osx_cocoa.dylib 0x002da4ee wxAppBase::OnRun() + 44 (appcmn.cpp:285) 41 libwx_osx_cocoa.dylib 0x00249b7d wxApp::OnRun() + 29 (app.cpp:895) 42 libwx_osx_cocoa.dylib 0x0013aef2 wxEntry(int&, wchar_t**) + 168 (init.cpp:472) 43 libwx_osx_cocoa.dylib 0x0013b321 wxEntry(int&, char**) + 63 (init.cpp:485) 44 ...dgets.samples.minimal_cocoa 0x00003fa1 main + 24 (minimal.cpp:109) 45 ...dgets.samples.minimal_cocoa 0x00002f79 _start + 208 46 ...dgets.samples.minimal_cocoa 0x00002ea8 start + 40 Thread 1: Dispatch queue: com.apple.libdispatch-manager 0 libSystem.B.dylib 0x94f50382 kevent + 10 1 libSystem.B.dylib 0x94f50a9c _dispatch_mgr_invoke + 215 2 libSystem.B.dylib 0x94f4ff59 _dispatch_queue_invoke + 163 3 libSystem.B.dylib 0x94f4fcfe _dispatch_worker_thread2 + 240 4 libSystem.B.dylib 0x94f4f781 _pthread_wqthread + 390 5 libSystem.B.dylib 0x94f4f5c6 start_wqthread + 30 Thread 2: 0 libSystem.B.dylib 0x94f4f412 __workq_kernreturn + 10 1 libSystem.B.dylib 0x94f4f9a8 _pthread_wqthread + 941 2 libSystem.B.dylib 0x94f4f5c6 start_wqthread + 30 Thread 3: 0 libSystem.B.dylib 0x94f4f412 __workq_kernreturn + 10 1 libSystem.B.dylib 0x94f4f9a8 _pthread_wqthread + 941 2 libSystem.B.dylib 0x94f4f5c6 start_wqthread + 30 Thread 4: Thread 5: 0 libSystem.B.dylib 0x94f57aa2 __semwait_signal + 10 1 libSystem.B.dylib 0x94f5775e _pthread_cond_wait + 1191 2 libSystem.B.dylib 0x94f593f8 pthread_cond_wait$UNIX2003 + 73 3 libvlccore.5.dylib 0x01668f77 vlc_cond_wait + 23 Thread 6: 0 libSystem.B.dylib 0x94f57aa2 __semwait_signal + 10 1 libSystem.B.dylib 0x94f5775e _pthread_cond_wait + 1191 2 libSystem.B.dylib 0x94f593f8 pthread_cond_wait$UNIX2003 + 73 3 libavcodec_plugin.dylib 0x1abc0847 worker + 135 Thread 7: 0 libSystem.B.dylib 0x94f57aa2 __semwait_signal + 10 1 libSystem.B.dylib 0x94f5775e _pthread_cond_wait + 1191 2 libSystem.B.dylib 0x94f593f8 pthread_cond_wait$UNIX2003 + 73 3 libavcodec_plugin.dylib 0x1abc0847 worker + 135 Thread 8: 0 libSystem.B.dylib 0x94f57aa2 __semwait_signal + 10 1 libSystem.B.dylib 0x94f5775e _pthread_cond_wait + 1191 2 libSystem.B.dylib 0x94f593f8 pthread_cond_wait$UNIX2003 + 73 3 libavcodec_plugin.dylib 0x1abc0847 worker + 135 Thread 9: 0 libSystem.B.dylib 0x94f57aa2 __semwait_signal + 10 1 libSystem.B.dylib 0x94f5775e _pthread_cond_wait + 1191 2 libSystem.B.dylib 0x94f593f8 pthread_cond_wait$UNIX2003 + 73 3 libavcodec_plugin.dylib 0x1abc0847 worker + 135 Thread 10: 0 libavcodec_plugin.dylib 0x1ab76467 avpriv_mpv_find_start_code + 23 Thread 11 Crashed: 0 libvlccore.5.dylib 0x01638b5f vout_window_Control + 15 Thread 11 crashed with X86 Thread State (32-bit): eax: 0xb0613ad8 ebx: 0x02370100 ecx: 0x00000000 edx: 0x1dc16870 edi: 0x00000260 esi: 0x00000000 ebp: 0x000002d0 esp: 0xb0613ab0 ss: 0x00000023 efl: 0x00010282 eip: 0x01638b5f cs: 0x0000001b ds: 0x00000023 es: 0x00000023 fs: 0x00000023 gs: 0x0000000f cr2: 0x00000020 Binary Images: 0x1000 - 0xaffb +org.wxwidgets.samples.minimal_cocoa 2.9.3 (2.9.3) <3E4B2BFD-2517-2CC7-5ADE-78E55C6FB002> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/minimal_cocoa 0x45000 - 0xc74fe3 +libwx_osx_cocoa.dylib 2.9.3 (compatibility 2.9.0) <6CD595E6-2D8D-12B3-6D32-1C4C457535D9> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/Frameworks/libwx_osx_cocoa.dylib 0x15c4000 - 0x15d5fe3 +libvlc.5.dylib 9.1.0 (compatibility 9.0.0) <CE32972C-3192-C72F-34A5-9C216CF40242> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/lib/libvlc.5.dylib 0x15e0000 - 0x16a1fe3 +libvlccore.5.dylib 7.0.0 (compatibility 7.0.0) <05ED3ED2-87DB-1BD8-54B8-1841C3351FAC> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/lib/libvlccore.5.dylib 0x20d7000 - 0x20d9ff0 +libmemcpymmxext_plugin.dylib ??? (???) <940F1882-BE34-C927-904F-9A11D3341739> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libmemcpymmxext_plugin.dylib 0x20df000 - 0x20e5fff +libhotkeys_plugin.dylib ??? (???) <561EB5CD-5633-30F2-28F8-D7A465B04373> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libhotkeys_plugin.dylib 0x20eb000 - 0x20f5fe3 +libaccess_bd_plugin.dylib ??? (???) <FE943ABA-02F7-7483-DB5C-26C1D0D798CC> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libaccess_bd_plugin.dylib 0x27c7000 - 0x27ccff0 +libaccess_vdr_plugin.dylib ??? (???) <B1B902FC-3EDE-DEED-E415-45BFA627AD5B> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libaccess_vdr_plugin.dylib 0x27d2000 - 0x27d6ff0 +libfilesystem_plugin.dylib ??? (???) <482DE5A0-91D7-5C7E-E6DA-1E85876C4F5A> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libfilesystem_plugin.dylib 0x27dc000 - 0x27dfff0 +libdecomp_plugin.dylib ??? (???) <8FBDB41C-87DD-E520-0CED-A9E247D78930> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libdecomp_plugin.dylib 0x27e5000 - 0x27ecff7 +libzip_plugin.dylib ??? (???) <300FEF2D-0F9B-2850-4D6D-40A515002DBA> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libzip_plugin.dylib 0x27f3000 - 0x27f6ff0 +libstream_filter_rar_plugin.dylib ??? (???) <5BD27388-1BE2-EEAF-9921-3AA856CE3217> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libstream_filter_rar_plugin.dylib 0x465b000 - 0x469afe3 +liblibbluray_plugin.dylib ??? (???) <1CAB712F-D3AE-92C2-16E8-5FFC971E2882> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/liblibbluray_plugin.dylib 0x46a3000 - 0x46bdff7 +libstream_filter_dash_plugin.dylib ??? (???) <AFD789B2-A72E-D43C-1F14-EF9F4A2E043A> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libstream_filter_dash_plugin.dylib 0x14849000 - 0x14880ffe +libdvdnav_plugin.dylib ??? (???) <7CB11BB8-9D14-F328-E102-E0CA146CB44D> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libdvdnav_plugin.dylib 0x14892000 - 0x14894ff0 +libstream_filter_record_plugin.dylib ??? (???) <B7E2F1FD-782F-098C-D8C5-2A749369B6B1> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libstream_filter_record_plugin.dylib 0x1489a000 - 0x148b8fff +libmp4_plugin.dylib ??? (???) <A324A0A6-BB34-CC03-DAB8-F03957747971> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libmp4_plugin.dylib 0x148c1000 - 0x148cfff7 +libavi_plugin.dylib ??? (???) <74D38EA1-DD80-3411-C603-39F3A931241A> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libavi_plugin.dylib 0x148d6000 - 0x148e0ff7 +libasf_plugin.dylib ??? (???) <FA635262-57CF-7624-36BA-5D1B93E99448> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libasf_plugin.dylib 0x148e7000 - 0x148ecfff +libes_plugin.dylib ??? (???) <D2101A3A-602A-AEDA-1855-5497E5BD587A> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libes_plugin.dylib 0x148f2000 - 0x148f6ff3 +libflacsys_plugin.dylib ??? (???) <2B232E3D-8E90-5ECE-48DA-91F9DF95EA3C> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libflacsys_plugin.dylib 0x14bae000 - 0x14bbffef +libmpc_plugin.dylib ??? (???) <7E3C6D29-4436-DD70-EA6C-82F2F3A7C3D1> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libmpc_plugin.dylib 0x14bc9000 - 0x14bccff0 +libtta_plugin.dylib ??? (???) <F84F14EA-90A7-AF97-0165-95F01E8742EA> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libtta_plugin.dylib 0x14bd2000 - 0x14bd7ff0 +libnuv_plugin.dylib ??? (???) <26DFA314-51B1-B0D8-6043-61A9FC133BBD> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libnuv_plugin.dylib 0x14bdd000 - 0x14be1fe7 +libwav_plugin.dylib ??? (???) <324EDCEA-5437-492D-4665-EC692FB83F19> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libwav_plugin.dylib 0x14be7000 - 0x14beefff +libsap_plugin.dylib ??? (???) <0CB031B0-D48A-7053-BF54-565E05165981> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libsap_plugin.dylib 0x14bf5000 - 0x14bf8ff0 +libdirac_plugin.dylib ??? (???) <3C9AA12C-8F55-5ED1-EAE5-72E2A7EDE307> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libdirac_plugin.dylib 0x14e00000 - 0x14e5bfff +libstream_filter_httplive_plugin.dylib ??? (???) <BE9E5DA9-B7F0-8367-167D-27DC29297C96> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libstream_filter_httplive_plugin.dylib 0x14e88000 - 0x14eccff3 +libsid_plugin.dylib ??? (???) <857569CB-7550-11C8-B829-64738901CE60> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libsid_plugin.dylib 0x14f18000 - 0x14f54fe3 +liblive555_plugin.dylib ??? (???) <80F6C640-A91F-B86A-F9EA-52F1C8BDB023> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/liblive555_plugin.dylib 0x14f7c000 - 0x14f8bfe3 +libogg_plugin.dylib ??? (???) <379697AC-F310-3039-C509-9D0EB43EDA95> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libogg_plugin.dylib 0x14f93000 - 0x14f96ff9 +libsmf_plugin.dylib ??? (???) <CC73CA15-07F7-8733-FAED-F876EE9F1B96> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libsmf_plugin.dylib 0x14f9c000 - 0x14fadff0 +libplaylist_plugin.dylib ??? (???) <2E7E1550-A2B0-4FE6-FE98-CB1E8D18DDB8> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libplaylist_plugin.dylib 0x14fb4000 - 0x14fb7ff0 +libnsv_plugin.dylib ??? (???) <FA3CD971-3DAC-49AD-5F71-9F11182B9B56> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libnsv_plugin.dylib 0x14fbd000 - 0x14fc0ff0 +libaiff_plugin.dylib ??? (???) <DA4A6D0C-9782-F730-964B-E36ECD873700> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libaiff_plugin.dylib 0x14fc6000 - 0x14fc9ff0 +libvoc_plugin.dylib ??? (???) <E099C735-0E4B-BADD-071E-062A8BDEE0CD> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libvoc_plugin.dylib 0x14fcf000 - 0x14fe5fff +libts_plugin.dylib ??? (???) <62C8A7FF-F94E-DB28-03BA-61A0B2128781> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libts_plugin.dylib 0x14fee000 - 0x14ff1ff0 +librawvid_plugin.dylib ??? (???) <DD19A255-A2D3-E763-0F22-DA0CA29D976F> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/librawvid_plugin.dylib 0x14ff7000 - 0x14ffaff0 +libpva_plugin.dylib ??? (???) <594AAE4D-D945-FFC7-CAD2-2D449DC1166E> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libpva_plugin.dylib 0x18259000 - 0x1825dff2 +libimage_plugin.dylib ??? (???) <A87DB1C5-545D-3A4A-0F31-507A6689AC30> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libimage_plugin.dylib 0x18263000 - 0x182b4fe3 +libgme_plugin.dylib ??? (???) <938850AE-1529-2A8E-39D9-E892EBBD3D52> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libgme_plugin.dylib 0x182e9000 - 0x182ecff0 +libau_plugin.dylib ??? (???) <76781B2D-56C5-B923-AAA7-409A1C3D5CA0> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libau_plugin.dylib 0x182f2000 - 0x182f4ff0 +libxa_plugin.dylib ??? (???) <1C13F46A-0F3A-B1C1-1D6E-A41769A86E33> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libxa_plugin.dylib 0x18500000 - 0x18597ff8 +libmkv_plugin.dylib ??? (???) <E2FBD1B3-C20B-85E9-DF87-F211F6A37144> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libmkv_plugin.dylib 0x18660000 - 0x186b6fe9 +libmod_plugin.dylib ??? (???) <EBB8271A-E5F1-FBA0-1FB3-D147133A5692> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libmod_plugin.dylib 0x18757000 - 0x1875dff0 +libps_plugin.dylib ??? (???) <5F35532C-C780-45B2-7E26-E85F18A5C8AA> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libps_plugin.dylib 0x18763000 - 0x1876afff +libty_plugin.dylib ??? (???) <E91EC627-4609-6CB3-7416-B693EAD18CDF> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libty_plugin.dylib 0x18770000 - 0x18774ff0 +libmjpeg_plugin.dylib ??? (???) <3E822073-E6D3-706E-6618-CA17FC410E30> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libmjpeg_plugin.dylib 0x1877a000 - 0x1877cff0 +libmpgv_plugin.dylib ??? (???) <FF9D85DC-D117-011B-3D5E-C4FDE0ED0E7A> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libmpgv_plugin.dylib 0x18782000 - 0x18785fff +libnsc_plugin.dylib ??? (???) <5146867E-F75A-4D75-C950-62E21F8956F0> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libnsc_plugin.dylib 0x1878b000 - 0x1878eff3 +librawdv_plugin.dylib ??? (???) <AD660E07-9FD2-1A3C-3C5B-C8F6579A64AF> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/librawdv_plugin.dylib 0x18794000 - 0x18796ff0 +libdemux_cdg_plugin.dylib ??? (???) <08115281-8698-776A-53D3-FCBB5D9C220F> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libdemux_cdg_plugin.dylib 0x1879c000 - 0x187d8ff3 +liblua_plugin.dylib ??? (???) <FCC2BAF6-26D7-E2AA-BEC7-5BADD17A9AA0> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/liblua_plugin.dylib 0x187ea000 - 0x187edff0 +libcdg_plugin.dylib ??? (???) <4ABBDCA4-A509-F0E2-19DA-E3B30CF2C278> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libcdg_plugin.dylib 0x187f3000 - 0x187f6fe7 +liba52_plugin.dylib ??? (???) <73B255E8-35C2-BBE5-EFF7-2657657599B4> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/liba52_plugin.dylib 0x19fe4000 - 0x19fe7ff3 +libaes3_plugin.dylib ??? (???) <89F60ED2-7E1A-A3EF-93CB-07FE918949F0> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libaes3_plugin.dylib 0x19fed000 - 0x19ff3fe0 +libaraw_plugin.dylib ??? (???) <BA8F3FDD-3B50-2CFF-99E0-DA599A98A09B> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libaraw_plugin.dylib 0x1a800000 - 0x1afc6f83 +libavcodec_plugin.dylib ??? (???) <EB7F6D88-1701-0034-2FFB-EDE3C981B970> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libavcodec_plugin.dylib 0x1b997000 - 0x1b9b7ffb +libpng_plugin.dylib ??? (???) <9D4C7815-2000-4876-C606-C1775469BAEC> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libpng_plugin.dylib 0x1b9c6000 - 0x1bafafe3 +libschroedinger_plugin.dylib ??? (???) <2C520ABA-1A15-CC15-811A-00100973696D> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libschroedinger_plugin.dylib 0x1bb65000 - 0x1bb84fff +libspeex_plugin.dylib ??? (???) <AA52DFB6-77FD-B611-0651-32748492759D> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libspeex_plugin.dylib 0x1bb91000 - 0x1bbd0feb +libflac_plugin.dylib ??? (???) <A282433A-8097-4FDE-98DB-BA6E9500D52C> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libflac_plugin.dylib 0x1bbe3000 - 0x1bd6eff7 +libvorbis_plugin.dylib ??? (???) <55AC1950-A7A3-5987-C384-78E50C10C309> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libvorbis_plugin.dylib 0x1bdbd000 - 0x1be0efe3 +libtheora_plugin.dylib ??? (???) <399345A0-7E98-4600-BF03-A383D6703EFB> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libtheora_plugin.dylib 0x1be1c000 - 0x1c01bfeb +liblibass_plugin.dylib ??? (???) <DD8DF32C-2BCB-57DF-6A77-111EDCAC2F54> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/liblibass_plugin.dylib 0x1c08a000 - 0x1c0c2fef +libfluidsynth_plugin.dylib ??? (???) <6BFE60A5-3E0A-13EF-8EA5-1884C70A06EC> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libfluidsynth_plugin.dylib 0x1c140000 - 0x1c144fff +libdts_plugin.dylib ??? (???) <B4549F76-F55F-0861-C147-E2EF4823E504> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libdts_plugin.dylib 0x1c14a000 - 0x1c190fff +libopus_plugin.dylib ??? (???) <4813C02E-A49B-F18A-344F-DEA29074EBEA> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libopus_plugin.dylib 0x1c1aa000 - 0x1c1aefff +libmpeg_audio_plugin.dylib ??? (???) <A54616B9-AFEC-B115-CDEE-115406F20120> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libmpeg_audio_plugin.dylib 0x1c1b4000 - 0x1c1b8fe7 +liblpcm_plugin.dylib ??? (???) <5F45E618-0D20-302B-7C5A-D832243F6353> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/liblpcm_plugin.dylib 0x1c1be000 - 0x1c20ffe7 +libfaad_plugin.dylib ??? (???) <91AA0D4F-35B4-C2A8-65B3-1F96B5C40FF9> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libfaad_plugin.dylib 0x1c21d000 - 0x1c221ff0 +libspudec_plugin.dylib ??? (???) <2CF12D37-E7DF-BFBD-D84F-7E9029EC028C> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libspudec_plugin.dylib 0x1c227000 - 0x1c306ffb +libtaglib_plugin.dylib ??? (???) <31DD8498-D4BB-4C9F-FB47-CF57D44D9CAD> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libtaglib_plugin.dylib 0x1c425000 - 0x1c4c2fe7 +libfreetype_plugin.dylib ??? (???) <C01A7519-578D-CBC5-49D9-BD10E26FA2E9> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libfreetype_plugin.dylib 0x1db2b000 - 0x1db2eff0 +libi420_yuy2_mmx_plugin.dylib ??? (???) <B6FCCBED-3EC6-1EBD-CC1A-57EA2E4AD561> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libi420_yuy2_mmx_plugin.dylib 0x1db34000 - 0x1db87ff7 +libswscale_plugin.dylib ??? (???) <85CA33AA-0E59-26CD-6667-0BECB95463F8> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libswscale_plugin.dylib 0x1dba7000 - 0x1dbaaff0 +libi422_yuy2_mmx_plugin.dylib ??? (???) <AD867237-21F0-8EDE-486F-9756A933F28E> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libi422_yuy2_mmx_plugin.dylib 0x1dbb0000 - 0x1dbb6ff7 +libi420_rgb_mmx_plugin.dylib ??? (???) <90158450-2B55-5513-AA4C-A9A9795147E4> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libi420_rgb_mmx_plugin.dylib 0x1dbbc000 - 0x1dbbfff0 +libyuy2_i422_plugin.dylib ??? (???) <9BACDB88-00DB-BBB0-2BE7-4180D67A7396> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libyuy2_i422_plugin.dylib 0x1dbc5000 - 0x1dbc8ff0 +libyuy2_i420_plugin.dylib ??? (???) <8096E3FA-A98B-D24C-EF79-34CB4041AB3A> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libyuy2_i420_plugin.dylib 0x1dbce000 - 0x1dbd1ff0 +libi422_yuy2_plugin.dylib ??? (???) <D937C264-10AE-DD35-5F8A-D8B317D25798> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libi422_yuy2_plugin.dylib 0x1dbd7000 - 0x1dbdaff0 +libi420_yuy2_plugin.dylib ??? (???) <56683A6E-0577-A1BA-0C39-E458AA5A384E> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libi420_yuy2_plugin.dylib 0x1dbe0000 - 0x1dbe8ff3 +libi420_rgb_plugin.dylib ??? (???) <3EFE089F-5365-8D7D-2216-9C41D56B80F3> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libi420_rgb_plugin.dylib 0x1dbee000 - 0x1dbf0ff0 +libgrey_yuv_plugin.dylib ??? (???) <929B01A4-B8E3-94DB-E8BE-A8298DB76EB4> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libgrey_yuv_plugin.dylib 0x1dbf6000 - 0x1dbf9ff0 +libi422_i420_plugin.dylib ??? (???) <9C2F9839-6B2B-9C9B-8780-B9D040C6EEDB> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libi422_i420_plugin.dylib 0x1dbff000 - 0x1dc01ff0 +libscale_plugin.dylib ??? (???) <E8D026E1-6BCC-8EFB-8C69-2CC3363A4E88> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libscale_plugin.dylib 0x1dc07000 - 0x1dc09ff0 +libyuvp_plugin.dylib ??? (???) <08ADD735-BCC7-D7E5-C45B-24024F6A3BE1> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libyuvp_plugin.dylib 0x1dc0f000 - 0x1dc19fef +libvout_macosx_plugin.dylib ??? (???) <48629E1C-44F7-804D-3ED8-040422317610> /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/plugins/libvout_macosx_plugin.dylib 0x1dc22000 - 0x1dd9bff7 GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine 0x1ddcd000 - 0x1e1d2fe7 libclh.dylib 3.1.1 C (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib 0x1e1f6000 - 0x1e21afe7 GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat 0x8f0c6000 - 0x8f811fff com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver 0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld 0x9007f000 - 0x900e3ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x900f5000 - 0x90117fef com.apple.DirectoryService.Framework 3.6 (621.14) <A24C9308-4EB3-456D-1691-43DDB6F9A79F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 0x9011f000 - 0x9011fff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x9026f000 - 0x902a2ff7 com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x905ed000 - 0x906edfe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib 0x9072d000 - 0x90753ffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x90821000 - 0x90840ff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x90841000 - 0x90842ff7 com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x90af6000 - 0x90b57fe7 com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText 0x90b58000 - 0x90c11fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib 0x90c12000 - 0x90d06ff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <061ABF36-8BA9-79C1-6CE7-EC69A4998F51> /usr/lib/libiconv.2.dylib 0x90d07000 - 0x90d25fe7 libPng.dylib ??? (???) <45185287-25AD-C239-AA58-8FA53DF55B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x90d2e000 - 0x90d30ff7 com.apple.securityhi 4.0 (36638) <FC01BFC4-04DB-96F3-2412-A86CC4F94CB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x90d31000 - 0x90d35ff7 libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x90d36000 - 0x90e16fe7 com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x90f8a000 - 0x90f8aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib 0x90fd4000 - 0x90ff5fe7 com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x90ff6000 - 0x91d6efe7 com.apple.WebCore 6534.57 (6534.57.2) <6AF29D9A-F549-5BE7-3842-CFF75FC46360> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x91d6f000 - 0x91dbcfeb com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer 0x91dbd000 - 0x91e69fe7 com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x91ea5000 - 0x91f1ffff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x92149000 - 0x9217aff7 libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x9217b000 - 0x92188ff7 com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x92189000 - 0x92197fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib 0x922e1000 - 0x922e4ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x923eb000 - 0x923eefe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib 0x9247b000 - 0x924beff7 com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices 0x9253d000 - 0x92541ff7 libGIF.dylib ??? (???) <5D29E5F4-30B9-5A24-55E7-BCBA30499093> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x9256d000 - 0x9257afe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib 0x925b1000 - 0x92da0557 com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x93233000 - 0x93275ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x93732000 - 0x93732ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x93770000 - 0x9389efe7 com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x938e0000 - 0x939ecfe7 libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x939ed000 - 0x939edff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x94093000 - 0x94256feb com.apple.ImageIO.framework 3.0.5 (3.0.5) <87750C2B-193F-56A6-AB97-0842A2D02092> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x94257000 - 0x9425affb com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x9425b000 - 0x94313feb libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x94990000 - 0x949fafe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib 0x949fb000 - 0x94a41ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib 0x94a42000 - 0x94a75fff libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x94a76000 - 0x94abafe7 com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x94abb000 - 0x94b56fe7 com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x94b8e000 - 0x94c10ffb SecurityFoundation ??? (???) <BFE377A4-C830-3ECA-E69F-8A8094CDA0A6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x94c4a000 - 0x94dc5fe7 com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x94f29000 - 0x950d0ff7 libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib 0x96058000 - 0x96093ffb libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x96094000 - 0x96126fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x96160000 - 0x96595ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x96596000 - 0x965a6ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib 0x96607000 - 0x9660dfff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x9665f000 - 0x96683ff7 libJPEG.dylib ??? (???) <5F2343E4-C268-B9AE-1BC3-466F5A614648> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x96684000 - 0x967c1fe7 com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x96873000 - 0x96920fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib 0x96921000 - 0x9692dff7 libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib 0x96b14000 - 0x96bb1fe3 com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x96bc3000 - 0x96bcdffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x96c78000 - 0x96c83ff7 libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x96c84000 - 0x96c92ff7 com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x96c93000 - 0x96fb3ff3 com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x96fbf000 - 0x97002ff7 libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x9710b000 - 0x9714cff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x9714d000 - 0x97165ff7 com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x97166000 - 0x97177ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x9718c000 - 0x97234ffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x97235000 - 0x9723eff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x9723f000 - 0x97267ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib 0x9726b000 - 0x972beff7 com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x97337000 - 0x97411fff com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x97412000 - 0x974ddfef com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x97622000 - 0x977a4fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib 0x977a5000 - 0x977f5ff7 com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls 0x9780c000 - 0x978baff3 com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x978bb000 - 0x97bdffef com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x97be0000 - 0x97beafe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x97beb000 - 0x97e5cfef com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x97e6b000 - 0x97e71fe7 com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore 0x97e72000 - 0x97eafff7 com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x97fde000 - 0x9802dfe7 libTIFF.dylib ??? (???) <D0EB31DC-40E6-9A97-64D3-9867605DC3DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x9814e000 - 0x981bdff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x981f3000 - 0x982f5fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib 0x982f6000 - 0x9830affb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x9830b000 - 0x985b9fe7 com.apple.JavaScriptCore 6534.57 (6534.57.3) <5B18B308-DBB2-7133-DE56-494C2FA1848B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x9861d000 - 0x98883ff7 com.apple.security 6.1.2 (55002) <E999CCEF-B769-4355-3E68-6003FCF6FE2B> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x98884000 - 0x98889ff7 com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x98904000 - 0x98908ff7 IOSurface ??? (???) <F9E6DFC1-8DD9-7C7E-CA85-B80735586E05> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x98a03000 - 0x98d6eff7 com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x98d6f000 - 0x98d83fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib 0x98d84000 - 0x98d99fff com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x98e3a000 - 0x98ed2fe7 edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x98ed3000 - 0x98f8ffff com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x98f9b000 - 0x98f9cff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x99009000 - 0x99009ff7 com.apple.Carbon 150 (152) <BFDDA394-0F01-A3A3-A226-ED3A45975A56> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x9900a000 - 0x99132fe7 com.apple.WebKit 6534.57 (6534.57.2) <4CB86278-4657-3503-8042-074628222DF3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x9935f000 - 0x99366ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x996a2000 - 0x996a4ff7 libRadiance.dylib ??? (???) <98EC06D5-1A02-EDEF-BF9D-2C986761AD54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x996a5000 - 0x99f88ff7 com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x99f89000 - 0x99f94ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x99f95000 - 0x9a3abff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x9a589000 - 0x9a609feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x9a60a000 - 0x9a60dff7 libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x9a60e000 - 0x9a62afe3 com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x9a662000 - 0x9a95cfef com.apple.QuickTime 7.6.6 (1790) <A5B2CDA8-47C9-F1AE-ED54-625B0FAB426F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime 0x9a962000 - 0x9a962ff7 com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x9a963000 - 0x9a99dff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib 0x9a9a0000 - 0x9a9b2ff7 com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x9a9b3000 - 0x9a9f7ff3 com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x9a9f8000 - 0x9aa55ff7 com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x9abaf000 - 0x9abcffe7 libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib 0x9abd0000 - 0x9abd0ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x9abf3000 - 0x9abf3ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib Model: Xserve3,1, BootROM XS31.0081.B04, 4 processors, Quad-Core Intel Xeon, 2.26 GHz, 3 GB, SMC 1.43f4 Graphics: NVIDIA GeForce GT 120, NVIDIA GeForce GT 120, PCIe, 256 MB Memory Module: global_name Network Service: Ethernet 1, Ethernet, en0 PCI Card: pcibdbd,a11a, sppci_video, Slot-2 PCI Card: NVIDIA GeForce GT 120, sppci_displaycontroller, MXM-Slot Serial ATA Device: OPTIARC DVD RW AD-5670S USB Device: PS2 to USB Converter, 0x0518 (EzKEY Corp.), 0x0001, 0x1d100000 / 2 USB Device: Frontpanel Controller, 0x05ac (Apple Inc.), 0x8261, 0x3d100000 / 2
Many thanks,
Ignasi.

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: libvlc + wxWidgets on Mac OSX = EXC_BAD_ACCESS ...any cl

Postby Jean-Baptiste Kempf » 04 Dec 2012 19:29

Commenting the libvlc_media_player_set_nsobject(mp, drawable); line works, right?
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

Ignasi
New Cone
New Cone
Posts: 4
Joined: 28 Nov 2012 16:56

Re: libvlc + wxWidgets on Mac OSX = EXC_BAD_ACCESS ...any cl

Postby Ignasi » 05 Dec 2012 12:03

Hi Jean-Baptiste,

I'm afraid it doesn't work either, although it doesn't crashes. Instead, I get an error message saying that "video output creation failed". I initialized libvlc with --verbose=2, and that's what I get when I comment out the set_nsobject line:

Code: Select all

[0x242de48] main libvlc debug: VLC media player - 2.0.4 Twoflower [0x242de48] main libvlc debug: Copyright © 1996-2012 VLC authors and VideoLAN [0x242de48] main libvlc debug: revision 2.0.4-1-gacff390 [0x242de48] main libvlc debug: configured with ../extras/package/macosx/../../../configure '--prefix=/Users/fpk/Desktop/vlc-2.0/release/vlc_install_dir' '--enable-macosx' '--enable-merge-ffmpeg' '--enable-growl' '--enable-faad' '--enable-flac' '--enable-theora' '--enable-shout' '--enable-ncurses' '--enable-twolame' '--enable-realrtsp' '--enable-libass' '--enable-macosx-audio' '--enable-macosx-eyetv' '--enable-macosx-qtkit' '--enable-macosx-vout' '--disable-caca' '--disable-skins2' '--disable-xcb' '--disable-sdl' '--disable-samplerate' '--disable-macosx-dialog-provider' '--build=i686-apple-darwin9' '--with-macosx-sdk=/Developer/SDKs/MacOSX10.5.sdk' 'build_alias=i686-apple-darwin9' 'CC=xcrun llvm-gcc-4.2' 'CXX=xcrun llvm-g++-4.2' 'OBJC=xcrun llvm-gcc-4.2' [0x242de48] main libvlc debug: searching plug-in modules [0x242de48] main libvlc debug: loading plugins cache file /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/plugins.dat [0x242de48] main libvlc debug: recursively browsing `/src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins' [0x242de48] main libvlc warning: cannot load module `/src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/libi420_rgb_sse2_plugin.dylib' (dlopen(/src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/libi420_rgb_sse2_plugin.dylib, 1): no suitable image found. Did find: /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/libi420_rgb_sse2_plugin.dylib: mach-o, but wrong architecture) [0x242de48] main libvlc warning: cannot load module `/src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/libi420_yuy2_sse2_plugin.dylib' (dlopen(/src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/libi420_yuy2_sse2_plugin.dylib, 1): no suitable image found. Did find: /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/libi420_yuy2_sse2_plugin.dylib: mach-o, but wrong architecture) [0x242de48] main libvlc warning: cannot load module `/src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/libi422_yuy2_sse2_plugin.dylib' (dlopen(/src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/libi422_yuy2_sse2_plugin.dylib, 1): no suitable image found. Did find: /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/libi422_yuy2_sse2_plugin.dylib: mach-o, but wrong architecture) [0x242de48] main libvlc debug: saving plugins cache /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../plugins/plugins.dat [0x242de48] main libvlc debug: plug-ins loaded: 371 modules [0x242de48] main libvlc debug: translation test: code is "C" [0x242de48] main libvlc debug: CPU has capabilities MMX MMXEXT SSE SSE2 SSE3 SSSE3 SSE4.1 SSE4.2 FPU [0x242de48] main libvlc debug: looking for memcpy module: 4 candidates [0x242de48] main libvlc debug: using memcpy module "memcpymmxext" [0x249ecb8] main interface debug: looking for interface module: 1 candidate [0x249ecb8] logger interface: using logger. [0x249ecb8] logger interface warning: no log filename provided, using `/Users/VSN/Library/Logs/vlc-log.txt' [0x249ecb8] logger interface debug: opening logfile `/Users/VSN/Library/Logs/vlc-log.txt' [0x249ecb8] main interface debug: using interface module "logger" [0x249ecb8] main interface debug: TIMER module_need() : 0.350 ms - Total 0.350 ms / 1 intvls (Avg 0.350 ms) [0x249ee88] main interface debug: looking for interface module: 1 candidate [0x249ee88] main interface debug: using interface module "hotkeys" [0x249ee88] main interface debug: TIMER module_need() : 0.282 ms - Total 0.282 ms / 1 intvls (Avg 0.282 ms) [0x24a0f48] main input debug: Creating an input for 'IMX30.mxf' [0x24a0f48] main input debug: using timeshift granularity of 50 MiB, in path '/tmp' [0x24a0f48] main input debug: `file:///src/tmp/VLC/IMX30.mxf' gives access `file' demux `' path `/src/tmp/VLC/IMX30.mxf' [0x24a0f48] main input debug: creating demux: access='file' demux='' location='/src/tmp/VLC/IMX30.mxf' file='/src/tmp/VLC/IMX30.mxf' [0x2303e58] main demux debug: looking for access_demux module: 3 candidates [0x2303e58] main demux debug: no access_demux module matching "file" could be loaded [0x2303e58] main demux debug: TIMER module_need() : 1.052 ms - Total 1.052 ms / 1 intvls (Avg 1.052 ms) [0x24a0f48] main input debug: creating access 'file' location='/src/tmp/VLC/IMX30.mxf', path='/src/tmp/VLC/IMX30.mxf' [0x4701608] main access debug: looking for access module: 3 candidates [0x4701608] filesystem access debug: opening file `/src/tmp/VLC/IMX30.mxf' [0x4701608] main access debug: using access module "filesystem" [0x4701608] main access debug: TIMER module_need() : 0.724 ms - Total 0.724 ms / 1 intvls (Avg 0.724 ms) [0x4701aa8] main stream debug: Using stream method for AStream* [0x4701aa8] main stream debug: starting pre-buffering [0x4701aa8] main stream debug: received first data after 28 ms [0x4701aa8] main stream debug: pre-buffering done 1024 bytes in 0s - 35 KiB/s [0x1724a08] main stream debug: looking for stream_filter module: 7 candidates [0x1724a08] main stream debug: no stream_filter module matching "any" could be loaded [0x1724a08] main stream debug: TIMER module_need() : 2.171 ms - Total 2.171 ms / 1 intvls (Avg 2.171 ms) [0x1724a08] main stream debug: looking for stream_filter module: 1 candidate [0x1724a08] main stream debug: using stream_filter module "stream_filter_record" [0x1724a08] main stream debug: TIMER module_need() : 0.259 ms - Total 0.259 ms / 1 intvls (Avg 0.259 ms) [0x24a0f48] main input debug: creating demux: access='file' demux='' location='/src/tmp/VLC/IMX30.mxf' file='/src/tmp/VLC/IMX30.mxf' [0x1725418] main demux debug: looking for demux module: 55 candidates [0x1725418] mod demux debug: MOD validation failed (ext=mxf) [0x1725418] ts demux debug: TS module discarded (lost sync) [0x1725418] lua demux debug: Trying Lua scripts in /Users/VSN/Library/Application Support/org.wxwidgets.samples.minimal_cocoa/lua/playlist [0x1725418] lua demux debug: Trying Lua scripts in /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/anevia_streams.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/anevia_xml.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/appletrailers.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/bbc_co_uk.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/break.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/canalplus.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/cue.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/dailymotion.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/extreme.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/france2.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/googlevideo.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/jamendo.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/joox.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/katsomo.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/koreus.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/lelombrik.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/metacafe.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/metachannels.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/mpora.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/pinkbike.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/pluzz.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/rockbox_fm_presets.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/soundcloud.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/vimeo.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/youtube.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/youtube_homepage.lua [0x1725418] lua demux debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/playlist/zapiks.lua [0x1725418] lua demux debug: Trying Lua scripts in /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/share/lua/playlist [0x1725418] avcodec demux debug: trying url: /src/tmp/VLC/IMX30.mxf [0x1725418] avcodec demux debug: detected format: mxf [mxf @ 0x280ba20] Unknown frame layout type: 1 [mpeg2video @ 0x280ac20] intra matrix invalid, ignoring [mpeg2video @ 0x280ac20] intra matrix invalid, ignoring [0x24a0f48] main input debug: selecting program id=0 [0x1725418] avcodec demux debug: adding es: video codec = mpgv [0x1725418] avcodec demux debug: adding es: audio codec = s16l [0x1725418] avcodec demux debug: AVFormat supported stream [0x1725418] avcodec demux debug: - format = mxf (MXF (Material eXchange Format)) [0x1725418] avcodec demux debug: - start time = 0 [0x1725418] avcodec demux debug: - duration = 9880000 [0x1725418] main demux debug: using demux module "avcodec" [0x1725418] main demux debug: TIMER module_need() : 179.349 ms - Total 179.349 ms / 1 intvls (Avg 179.349 ms) [0x24a0f48] main input debug: looking for a subtitle file in /src/tmp/VLC/ [0x280b498] main decoder debug: looking for decoder module: 32 candidates [0x280b498] avcodec decoder debug: libavcodec initialized (interface 0x361e00) [0x280b498] avcodec decoder debug: trying to use direct rendering [0x280b498] avcodec decoder debug: allowing 4 thread(s) for decoding [0x280b498] avcodec decoder debug: ffmpeg codec (MPEG-1/2 Video) started [0x280b498] avcodec decoder debug: using slice thread mode with 4 threads [0x280b498] main decoder debug: using decoder module "avcodec" [0x280b498] main decoder debug: TIMER module_need() : 5.192 ms - Total 5.192 ms / 1 intvls (Avg 5.192 ms) [0x24a0f48] main input debug: audio is disabled, not selecting ES 0x1 [0x23097a8] main demux meta debug: looking for meta reader module: 2 candidates [0x23097a8] lua demux meta debug: Trying Lua scripts in /Users/VSN/Library/Application Support/org.wxwidgets.samples.minimal_cocoa/lua/meta/reader [0x23097a8] lua demux meta debug: Trying Lua scripts in /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/meta/reader [0x23097a8] lua demux meta debug: Trying Lua playlist script /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/lua/meta/reader/filename.lua [0x23097a8] lua demux meta debug: Trying Lua scripts in /src/tmp/VLC/minimal/build/Debug/minimal_cocoa.app/Contents/MacOS/./lib/../share/share/lua/meta/reader [0x23097a8] main demux meta debug: no meta reader module matching "any" could be loaded [0x23097a8] main demux meta debug: TIMER module_need() : 2.237 ms - Total 2.237 ms / 1 intvls (Avg 2.237 ms) [0x24a0f48] main input debug: `file:///src/tmp/VLC/IMX30.mxf' successfully opened [0x24a0f48] main input debug: Buffering 0% [mpeg2video @ 0x280cc20] intra matrix invalid, ignoring [0x24a0f48] main input debug: Buffering 0% [mpeg2video @ 0x280cc20] intra matrix invalid, ignoring [0x24a0f48] main input debug: Buffering 0% [0x24a0f48] main input debug: Buffering 4% [0x24a0f48] main input debug: Buffering 4% [0x24a0f48] main input debug: Buffering 8% [0x24a0f48] main input debug: Buffering 8% [0x24a0f48] main input debug: Buffering 12% [0x24a0f48] main input debug: Buffering 12% [0x24a0f48] main input debug: Buffering 16% [0x187aa98] main spu text debug: looking for text renderer module: 3 candidates [0x24a0f48] main input debug: Buffering 16% [0x24a0f48] main input debug: Buffering 20% [0x24a0f48] main input debug: Buffering 20% [0x24a0f48] main input debug: Buffering 24% [0x24a0f48] main input debug: Buffering 24% [0x24a0f48] main input debug: Buffering 28% [0x24a0f48] main input debug: Buffering 28% [0x24a0f48] main input debug: Buffering 32% [0x24a0f48] main input debug: Buffering 32% [0x187aa98] freetype spu text debug: looking for Arial Unicode MS [0x24a0f48] main input debug: Buffering 36% [0x24a0f48] main input debug: Buffering 36% [0x24a0f48] main input debug: Buffering 40% [0x24a0f48] main input debug: Buffering 40% [0x24a0f48] main input debug: Buffering 44% [0x24a0f48] main input debug: Buffering 44% [0x187aa98] freetype spu text debug: found /Library/Fonts/Arial Unicode.ttf [0x24a0f48] main input debug: Buffering 48% [0x187aa98] freetype spu text debug: Using Arial Unicode MS as font from file /Library/Fonts/Arial Unicode.ttf [0x24a0f48] main input debug: Buffering 48% [0x24a0f48] main input debug: Buffering 52% [0x24a0f48] main input debug: Buffering 52% [0x24a0f48] main input debug: Buffering 56% [0x24a0f48] main input debug: Buffering 56% [0x24a0f48] main input debug: Buffering 60% [0x24a0f48] main input debug: Buffering 60% [0x24a0f48] main input debug: Buffering 64% [0x24a0f48] main input debug: Buffering 64% [0x24a0f48] main input debug: Buffering 68% [0x24a0f48] main input debug: Buffering 68% [0x24a0f48] main input debug: Buffering 72% [0x24a0f48] main input debug: Buffering 72% [0x24a0f48] main input debug: Buffering 76% [0x24a0f48] main input debug: Buffering 76% [0x24a0f48] main input debug: Buffering 80% [0x187aa98] freetype spu text debug: using fontsize: 2 [0x24a0f48] main input debug: Buffering 80% [0x187aa98] main spu text debug: using text renderer module "freetype" [0x187aa98] main spu text debug: TIMER module_need() : 1.838 ms - Total 1.838 ms / 1 intvls (Avg 1.838 ms) [0x24a0f48] main input debug: Buffering 84% [0x187b298] main scale debug: looking for video filter2 module: 15 candidates [0x24a0f48] main input debug: Buffering 84% [0x24a0f48] main input debug: Buffering 88% [0x24a0f48] main input debug: Buffering 88% [0x24a0f48] main input debug: Buffering 92% [0x24a0f48] main input debug: Buffering 92% [0x24a0f48] main input debug: Buffering 96% [0x24a0f48] main input debug: Buffering 96% [0x24a0f48] main input debug: Buffering 100% [0x24a0f48] main input debug: Buffering 100% [0x24a0f48] main input debug: Stream buffering done (1040 ms in 3 ms) [0x187b298] swscale scale debug: 32x32 chroma: YUVA -> 16x16 chroma: RGBA with scaling using Bicubic (good quality) [0x187b298] main scale debug: using video filter2 module "swscale" [0x187b298] main scale debug: TIMER module_need() : 1.298 ms - Total 1.298 ms / 1 intvls (Avg 1.298 ms) [0x1890698] main scale debug: looking for video filter2 module: 15 candidates [0x1890698] yuvp scale debug: YUVP to YUVA converter [0x1890698] main scale debug: using video filter2 module "yuvp" [0x1890698] main scale debug: TIMER module_need() : 2.147 ms - Total 2.147 ms / 1 intvls (Avg 2.147 ms) [0x180fa98] main video output debug: Deinterlacing available [0x180fa98] main video output debug: deinterlace 0, mode blend, is_needed 0 [0x180fa98] main video output debug: Opening vout display wrapper [0x230c748] main vout display debug: looking for vout display module: 1 candidate [0x230c748] vout_macosx vout display debug: Quartz Extreme acceleration is active [0x230ccd8] main window debug: looking for vout window nsobject module: 1 candidate [0x230ccd8] macosx window error: Mac OS X interface not found [0x230ccd8] main window debug: no vout window nsobject module matching "any" could be loaded [0x230ccd8] main window debug: TIMER module_need() : 18.566 ms - Total 18.566 ms / 1 intvls (Avg 18.566 ms) [0x230c748] vout_macosx vout display debug: No drawable-nsobject nor vout_window_t found, passing over. [0x230c748] main vout display debug: no vout display module matching "any" could be loaded [0x230c748] main vout display debug: TIMER module_need() : 19.199 ms - Total 19.199 ms / 1 intvls (Avg 19.199 ms) [0x180fa98] main video output error: video output creation failed [0x187aa98] main spu text debug: removing module "freetype" [0x1890698] main scale debug: removing module "yuvp" [0x187b298] main scale debug: removing module "swscale" [0x280b498] main decoder error: failed to create video output [0x280b498] main decoder warning: can't get output picture [0x280b498] avcodec decoder warning: disabling direct rendering [0x187a698] main spu text debug: looking for text renderer module: 3 candidates [0x187a698] freetype spu text debug: looking for Arial Unicode MS [0x187a698] freetype spu text debug: found /Library/Fonts/Arial Unicode.ttf [0x187a698] freetype spu text debug: Using Arial Unicode MS as font from file /Library/Fonts/Arial Unicode.ttf [0x187a698] freetype spu text debug: using fontsize: 2 [0x187a698] main spu text debug: using text renderer module "freetype" [0x187a698] main spu text debug: TIMER module_need() : 1.147 ms - Total 1.147 ms / 1 intvls (Avg 1.147 ms) [0x187b098] main scale debug: looking for video filter2 module: 15 candidates [0x187b098] swscale scale debug: 32x32 chroma: YUVA -> 16x16 chroma: RGBA with scaling using Bicubic (good quality) [0x187b098] main scale debug: using video filter2 module "swscale" [0x187b098] main scale debug: TIMER module_need() : 0.404 ms - Total 0.404 ms / 1 intvls (Avg 0.404 ms) [0x1893898] main scale debug: looking for video filter2 module: 15 candidates [0x1893898] yuvp scale debug: YUVP to YUVA converter [0x1893898] main scale debug: using video filter2 module "yuvp" [0x1893898] main scale debug: TIMER module_need() : 0.096 ms - Total 0.096 ms / 1 intvls (Avg 0.096 ms) [0x180fa98] main video output debug: Deinterlacing available [0x180fa98] main video output debug: deinterlace 0, mode blend, is_needed 0 [0x180fa98] main video output debug: Opening vout display wrapper [0x2504e98] main vout display debug: looking for vout display module: 1 candidate [0x2504e98] vout_macosx vout display debug: Quartz Extreme acceleration is active [0x2505268] main window debug: looking for vout window nsobject module: 1 candidate [0x2505268] macosx window error: Mac OS X interface not found [0x2505268] main window debug: no vout window nsobject module matching "any" could be loaded [0x2505268] main window debug: TIMER module_need() : 0.145 ms - Total 0.145 ms / 1 intvls (Avg 0.145 ms) [0x2504e98] vout_macosx vout display debug: No drawable-nsobject nor vout_window_t found, passing over. [0x2504e98] main vout display debug: no vout display module matching "any" could be loaded [0x2504e98] main vout display debug: TIMER module_need() : 0.391 ms - Total 0.391 ms / 1 intvls (Avg 0.391 ms) [0x180fa98] main video output error: video output creation failed [0x187a698] main spu text debug: removing module "freetype" [0x1893898] main scale debug: removing module "yuvp" [0x187b098] main scale debug: removing module "swscale" [0x280b498] main decoder error: failed to create video output [0x280b498] main decoder warning: can't get output picture [0x24a0f48] main input debug: Decoder buffering done in 29 ms [0x24a0f48] main input debug: EOF reached [0x24a0f48] main input debug: waiting decoder fifos to empty [0x280b498] main decoder debug: removing module "avcodec" [0x280b498] avcodec decoder debug: ffmpeg codec (MPEG-1/2 Video) stopped [0x280b498] main decoder debug: killing decoder fourcc `mpgv', 0 PES in FIFO [0x1725418] main demux debug: removing module "avcodec" [0x1724a08] main stream debug: removing module "stream_filter_record" [0x4701608] main access debug: removing module "filesystem" [0x24a0f48] main input debug: Program doesn't contain anymore ES
Thanks for your help,
Ignasi.

Rémi Denis-Courmont
Developer
Developer
Posts: 15215
Joined: 07 Jun 2004 16:01
VLC version: master
Operating System: Linux
Contact:

Re: libvlc + wxWidgets on Mac OSX = EXC_BAD_ACCESS ...any cl

Postby Rémi Denis-Courmont » 05 Dec 2012 12:11

I vaguely recall that the argument passed to libvlc_media_player_set_nsobject() is much more than a NSObject pointer, and was only ever intended to work with the MacOS-specific VLCKit used. And with that written, don't ask me more: I am not a MacOS developer.
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded

geostein8888
Cone that earned his stripes
Cone that earned his stripes
Posts: 142
Joined: 15 Dec 2010 11:32

Re: libvlc + wxWidgets on Mac OSX = EXC_BAD_ACCESS ...any cl

Postby geostein8888 » 08 Feb 2013 19:27

Hello,
could you ever solve this problem and bring your app to run on a mac - playing videos etc?

Georg

Ignasi
New Cone
New Cone
Posts: 4
Joined: 28 Nov 2012 16:56

Re: libvlc + wxWidgets on Mac OSX = EXC_BAD_ACCESS ...any cl

Postby Ignasi » 11 Feb 2013 16:29

Hi Georg,

I didn't fix it. Instead, I switched to a Java Applet approximation to my multiplatform problem, and now I'm using vlcj (a libvlc Java wrapper) in an Applet to use VLC from a browser. The multiplatform platform is solved, but off course you don't have wxwidgets and so...

Good luck!
Ignasi.

galix85
New Cone
New Cone
Posts: 2
Joined: 27 Feb 2013 13:51

Re: libvlc + wxWidgets on Mac OSX = EXC_BAD_ACCESS ...any cl

Postby galix85 » 27 Feb 2013 14:12

Hi,

I'm experimenting the same issue than Ignasi but in my case I build an Applet using vlcj (a libvlc Java wrapper) and the crash is exactly the same.

Problem is located in libvlc_media_player_set_nsobject() method, the Java Canvas identifier that is being passed to libvlc by the native libvlc_media_player_set_ns_object function is not whatever type of component/object the macosx video output plugin expects so it just fails. For a long time before now it was like this, then it seemed to be working for a while, then it stopped working again as various changes to vlc were made.

Do you've in mind fix this problem in your next release?

If you want more information you can get from thread opened in Caprica github (vlcj) --> https://github.com/caprica/vlcj/issues/138

Thank you.

Cheers


Return to “Development around libVLC”

Who is online

Users browsing this forum: No registered users and 26 guests