Advertisement
Guest User

xbmc crash log intel HD4000

a guest
Mar 22nd, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Basic4GL 17.47 KB | None | 0 0
  1. jQuery(function ($) {
  2.     $('#megapixel').bind('input', function () {
  3.         //window.alert("test");
  4.         calc();
  5.     });
  6.    
  7.     $('#flength').bind('input', function () {
  8.         //window.alert("test");
  9.         calc();
  10.     });
  11.     $('#tolerance').bind('input', function () {
  12.         //window.alert("test");
  13.         calc();
  14.     });
  15.  
  16.     $('#cropfactor').change(function () {
  17.         calc();
  18.     });
  19.  
  20.     calc = function () {
  21.         //window.alert("test");
  22.         var e = document.getElementById("cropfactor");
  23.         var cropf = e.options[e.selectedIndex].value;
  24.         var dV = 0;
  25.         var dH = 0;
  26.         var dD = 0;
  27.  
  28.         switch (cropf) {
  29.             case "1":
  30.                 dV = 24;
  31.                 dH = 36;
  32.                 dD = Math.sqrt((dV * dV) + (dH * dH));
  33.                 break;
  34.             case "1.5":
  35.                 dV = 15.6;
  36.                 dH = 23.7;
  37.                 dD = Math.sqrt((dV * dV) + (dH * dH));
  38.                 break;
  39.             case "1.6":
  40.                 dV = 14.9;
  41.                 dH = 22.3;
  42.                 dD = Math.sqrt((dV * dV) + (dH * dH));
  43.                 break;
  44.         }
  45.  
  46.         document.getElementById('erg-ss-V').value = dV + " mm";
  47.         document.getElementById('erg-ss-H').value = dH + " mm";
  48.         document.getElementById('erg-ss-D').value = dD.toFixed(1) + " mm";
  49.  
  50.         var fl = $(flength).val();
  51.  
  52.         dV = 2 * Math.atan(dV / 2 / fl) * 180 / Math.PI;
  53.         dH = 2 * Math.atan(dH / 2 / fl) * 180 / Math.PI;
  54.         dD = 2 * Math.atan(dD / 2 / fl) * 180 / Math.PI;
  55.  
  56.         document.getElementById('erg-FOV-V').value = dV.toFixed(4) + "°";
  57.         document.getElementById('erg-FOV-H').value = dH.toFixed(4) + "°";
  58.         document.getElementById('erg-FOV-D').value = dD.toFixed(4) + "°";
  59.  
  60.         var mp = parseFloat($(megapixel).val());
  61.  
  62.         var pV = Math.sqrt(mp) * Math.sqrt(1 / 1.5) * 1000;
  63.         var pH = Math.sqrt(mp) * Math.sqrt(1.5) * 1000;
  64.         var pD = Math.sqrt((pV * pV) + (pH * pH));
  65.  
  66.         document.getElementById('erg-p-V').value = pV.toFixed(0);
  67.         document.getElementById('erg-p-H').value = pH.toFixed(0);
  68.         document.getElementById('erg-p-D').value = pD.toFixed(0);
  69.  
  70.         var erg = +cropf * +mp;
  71.  
  72.         var tol = parseFloat($(tolerance).val());
  73.  
  74.         var speed = 360 / 24 / 60 / 60;
  75.  
  76.         var sspeed_V = dV * tol / pV / speed;
  77.         var sspeed_H = dH * tol / pH / speed;
  78.         var sspeed_D = dD * tol / pD / speed;
  79.  
  80.         document.getElementById('o-ss-V').value = sspeed_V.toFixed(1) + " s";
  81.         document.getElementById('o-ss-H').value = sspeed_H.toFixed(1) + " s";
  82.         document.getElementById('o-ss-D').value = sspeed_D.toFixed(1) + " s";
  83.  
  84.     };
  85.  
  86. $(document).ready(function () {
  87.     $("#erg").keydown(function (e) {
  88.         // Allow: backspace, delete, tab, escape, enter and .
  89.         if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 ||
  90.         // Allow: Ctrl+A
  91.         (e.keyCode == 65 && e.ctrlKey === true) ||
  92.         // Allow: Ctrl+C
  93.         (e.keyCode == 67 && e.ctrlKey === true) ||
  94.         // Allow: home, end, left, right
  95.         (e.keyCode >= 35 && e.keyCode <= 39)) {
  96.             // let it happen, don't do anything
  97.             return;
  98.         }
  99.         // Ensure that it is a number and stop the keypress
  100.         if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) {
  101.             e.preventDefault();
  102.         }
  103.     });
  104. });
  105.  
  106. $(document).ready(function () {
  107.     $("#numbers").keydown(function (e) {
  108.         // Allow: backspace, delete, tab, escape, enter and .
  109.         if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 ||
  110.         // Allow: Ctrl+A
  111.         (e.keyCode == 65 && e.ctrlKey === true) ||
  112.         // Allow: Ctrl+C
  113.         (e.keyCode == 67 && e.ctrlKey === true) ||
  114.         // Allow: Ctrl+V
  115.         (e.keyCode == 86 && e.ctrlKey === true) ||
  116.         // Allow: home, end, left, right
  117.         (e.keyCode >= 35 && e.keyCode <= 39)) {
  118.             // let it happen, don't do anything
  119.             return;
  120.         }
  121.         // Ensure that it is a number and stop the keypress
  122.         if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) {
  123.             e.preventDefault();
  124.         }
  125.     });
  126. });
  127.  
  128. });############## XBMC CRASH LOG ###############
  129.  
  130. ################ SYSTEM INFO ################
  131.  Date: Son Mär 22 13:59:45 CET 2015
  132.  XBMC Options:
  133.  Arch: x86_64
  134.  Kernel: Linux 3.16.0-0.bpo.4-amd64 #1 SMP Debian 3.16.7-ckt4-3~bpo70+1 (2015-02-12)
  135.  Release:
  136.     Distributor ID:     Debian
  137.     Description:        Debian GNU/Linux 7.8 (wheezy)
  138.     Release:    7.8
  139.     Codename:   wheezy
  140. ############## END SYSTEM INFO ##############
  141.  
  142. ############### STACK TRACE #################
  143. =====>  Core file: /home/xbmc/core (2015-03-22 13:59:45.374378487 +0100)
  144.         =========================================
  145. [New LWP 4786]
  146. [New LWP 4799]
  147. [Thread debugging using libthread_db enabled]
  148. Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
  149. Core was generated by `/usr/lib/xbmc/xbmc.bin --standalone'.
  150. Program terminated with signal 11, Segmentation fault.
  151. #0  0x00007f9b4f183b2d in realloc () from /lib/x86_64-linux-gnu/libc.so.6
  152.  
  153. Thread 2 (Thread 0x7f9b42230700 (LWP 4799)):
  154. #0  0x00007f9b4f1d8d13 in poll () from /lib/x86_64-linux-gnu/libc.so.6
  155. #1  0x0000000000cc2ae2 in PERIPHERALS::CPeripheralBusUSB::WaitForUpdate() ()
  156. #2  0x0000000000cc2b70 in PERIPHERALS::CPeripheralBusUSB::Process() ()
  157. #3  0x0000000000d204e2 in CThread::staticThread(void*) ()
  158. #4  0x00007f9b55989b50 in start_thread () from /lib/x86_64-linux-gnu/libpthread.so.0
  159. #5  0x00007f9b4f1e395d in clone () from /lib/x86_64-linux-gnu/libc.so.6
  160. #6  0x0000000000000000 in ?? ()
  161.  
  162. Thread 1 (Thread 0x7f9b599d87a0 (LWP 4786)):
  163. #0  0x00007f9b4f183b2d in realloc () from /lib/x86_64-linux-gnu/libc.so.6
  164. #1  0x00007f9b519070be in ?? () from /lib/x86_64-linux-gnu/libudev.so.0
  165. #2  0x00007f9b519068fe in udev_set_log_priority () from /lib/x86_64-linux-gnu/libudev.so.0
  166. #3  0x00007f9b41822704 in udev_new () from /lib/x86_64-linux-gnu/libudev.so.1
  167. #4  0x00007f9b54934c56 in libudev_get_pci_id_for_fd (chip_id=0x7fff4281511c, vendor_id=0x7fff42815118, fd=16) at loader.c:198
  168. #5  loader_get_pci_id_for_fd (fd=fd@entry=16, vendor_id=vendor_id@entry=0x7fff42815118, chip_id=chip_id@entry=0x7fff4281511c) at loader.c:567
  169. #6  0x00007f9b54934f7a in loader_get_driver_for_fd (fd=16, driver_types=3, driver_types@entry=0) at loader.c:683
  170. #7  0x00007f9b5492f81c in dri2CreateScreen (screen=0, priv=0x305aa20) at dri2_glx.c:1213
  171. #8  0x00007f9b549093a4 in AllocAndFetchScreenConfigs (priv=0x305aa20, dpy=0x2f9e030) at glxext.c:791
  172. #9  __glXInitialize (dpy=0x2f9e030) at glxext.c:902
  173. #10 __glXInitialize (dpy=dpy@entry=0x2f9e030) at glxext.c:816
  174. #11 0x00007f9b54905c39 in GetGLXPrivScreenConfig (dpy=dpy@entry=0x2f9e030, scrn=scrn@entry=0, ppriv=ppriv@entry=0x7fff42815240, ppsc=ppsc@entry=0x7fff42815248) at glxcmds.c:172
  175. #12 0x00007f9b549063eb in GetGLXPrivScreenConfig (ppsc=0x7fff42815248, ppriv=0x7fff42815240, scrn=<optimized out>, dpy=0x2f9e030) at glxcmds.c:168
  176. #13 glXChooseVisual (dpy=0x2f9e030, screen=0, attribList=0x7fff428154a0) at glxcmds.c:1249
  177. #14 0x00007f9b5293843e in ?? () from /usr/lib/x86_64-linux-gnu/libSDL-1.2.so.0
  178. #15 0x00007f9b5293d4e0 in ?? () from /usr/lib/x86_64-linux-gnu/libSDL-1.2.so.0
  179. #16 0x00007f9b5293d8eb in ?? () from /usr/lib/x86_64-linux-gnu/libSDL-1.2.so.0
  180. #17 0x00007f9b5292e463 in SDL_SetVideoMode () from /usr/lib/x86_64-linux-gnu/libSDL-1.2.so.0
  181. #18 0x0000000000dfd96e in CWinSystemX11::SetFullScreen(bool, RESOLUTION_INFO&, bool) ()
  182. #19 0x0000000000e00a17 in CWinSystemX11GL::SetFullScreen(bool, RESOLUTION_INFO&, bool) ()
  183. #20 0x0000000000dfc7b5 in CWinSystemX11::CreateNewWindow(CStdStr<char> const&, bool, RESOLUTION_INFO&, bool (*)(XBMC_Event&)) ()
  184. #21 0x0000000000e00f0d in CWinSystemX11GL::CreateNewWindow(CStdStr<char> const&, bool, RESOLUTION_INFO&, bool (*)(XBMC_Event&)) ()
  185. #22 0x0000000000d544ca in CApplication::Create() ()
  186. #23 0x0000000000673a02 in main ()
  187. ############# END STACK TRACE ###############
  188.  
  189. ################# LOG FILE ##################
  190.  
  191. 13:59:42 T:140305200154528  NOTICE: -----------------------------------------------------------------------
  192. 13:59:42 T:140305200154528  NOTICE: Starting XBMC (11.0 Git:Unknown), Platform: Linux (Debian GNU/Linux 7.8 (wheezy), 3.16.0-0.bpo.4-amd64 x86_64). Built on Jun 15 2012
  193. 13:59:42 T:140305200154528  NOTICE: special://xbmc/ is mapped to: /usr/share/xbmc
  194. 13:59:42 T:140305200154528  NOTICE: special://xbmcbin/ is mapped to: /usr/lib/xbmc
  195. 13:59:42 T:140305200154528  NOTICE: special://masterprofile/ is mapped to: /home/xbmc/.xbmc/userdata
  196. 13:59:42 T:140305200154528  NOTICE: special://home/ is mapped to: /home/xbmc/.xbmc
  197. 13:59:42 T:140305200154528  NOTICE: special://temp/ is mapped to: /home/xbmc/.xbmc/temp
  198. 13:59:42 T:140305200154528  NOTICE: The executable running is: /usr/lib/xbmc/xbmc.bin
  199. 13:59:42 T:140305200154528  NOTICE: Local hostname: omv
  200. 13:59:42 T:140305200154528  NOTICE: Log File is located: /home/xbmc/.xbmc/temp/xbmc.log
  201. 13:59:42 T:140305200154528  NOTICE: -----------------------------------------------------------------------
  202. 13:59:43 T:140305200154528  NOTICE: Setup SDL
  203. 13:59:43 T:140305200154528  NOTICE: load settings...
  204. 13:59:43 T:140305200154528  NOTICE: special://profile/ is mapped to: special://masterprofile/
  205. 13:59:43 T:140305200154528  NOTICE: loading special://masterprofile/guisettings.xml
  206. 13:59:43 T:140305200154528  NOTICE: Getting hardware information now...
  207. 13:59:43 T:140305200154528  NOTICE: Checking resolution 12
  208. 13:59:43 T:140305200154528  NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
  209. 13:59:43 T:140305200154528  NOTICE: Loaded playercorefactory configuration
  210. 13:59:43 T:140305200154528  NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
  211. 13:59:43 T:140305200154528  NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
  212. 13:59:43 T:140305200154528  NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
  213. 13:59:43 T:140305200154528  NOTICE: Loaded settings file from special://profile/advancedsettings.xml
  214. 13:59:43 T:140305200154528  NOTICE: Contents of special://profile/advancedsettings.xml are...
  215.                                             <advancedsettings>
  216.                                               <loglevel>2</loglevel>
  217.                                             </advancedsettings>
  218. 13:59:43 T:140305200154528  NOTICE: Log level changed to 2
  219. 13:59:43 T:140305200154528  NOTICE: Getting hardware information now...
  220. 13:59:43 T:140305200154528    INFO: Using analog output
  221. 13:59:43 T:140305200154528    INFO: AC3 pass through is enabled
  222. 13:59:43 T:140305200154528    INFO: DTS pass through is enabled
  223. 13:59:43 T:140305200154528    INFO: AAC pass through is disabled
  224. 13:59:43 T:140305200154528    INFO: MP1 pass through is disabled
  225. 13:59:43 T:140305200154528    INFO: MP2 pass through is disabled
  226. 13:59:43 T:140305200154528    INFO: MP3 pass through is disabled
  227. 13:59:43 T:140305200154528  NOTICE: Checking resolution 12
  228. 13:59:43 T:140305200154528  NOTICE: Default DVD Player: dvdplayer
  229. 13:59:43 T:140305200154528  NOTICE: Default Video Player: dvdplayer
  230. 13:59:43 T:140305200154528  NOTICE: Default Audio Player: paplayer
  231. 13:59:43 T:140305200154528  NOTICE: Disabled debug logging due to GUI setting. Level 1.
  232. 13:59:43 T:140305200154528  NOTICE: Log level changed to 1
  233. 13:59:43 T:140305200154528  NOTICE: Loading media sources from special://masterprofile/sources.xml
  234. 13:59:43 T:140305200154528    INFO: creating subdirectories
  235. 13:59:43 T:140305200154528    INFO: userdata folder: special://masterprofile/
  236. 13:59:43 T:140305200154528    INFO: recording folder:
  237. 13:59:43 T:140305200154528    INFO: screenshots folder:
  238. 13:59:43 T:140305200154528    INFO: thumbnails folder: special://masterprofile/Thumbnails
  239. 13:59:43 T:140305200154528    INFO: load language info file: special://xbmc/language/English/langinfo.xml
  240. 13:59:43 T:140305200154528   DEBUG: trying to set locale to en_AU.UTF-8
  241. 13:59:43 T:140305200154528    INFO: global locale set to C
  242. 13:59:43 T:140305200154528    INFO: load language file:special://xbmc/language/English/strings.xml
  243. 13:59:43 T:140305200154528   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libcpluff-x86_64-linux.so)
  244. 13:59:43 T:140305200154528   DEBUG: Loading: /usr/lib/xbmc/system/libcpluff-x86_64-linux.so
  245. 13:59:43 T:140305200154528    INFO: ADDON: cpluff: 'Could not read plug-in directory /usr/lib/xbmc/addons: No such file or directory'
  246. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in xbmc.json has been installed.'
  247. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.albums.allmusic.com has been installed.'
  248. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in repository.xbmc.org has been installed.'
  249. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in webinterface.default has been installed.'
  250. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.black has been installed.'
  251. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.euphoria has been installed.'
  252. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in visualization.projectm has been installed.'
  253. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in script.module.simplejson has been installed.'
  254. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in weather.wunderground has been installed.'
  255. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.dim has been installed.'
  256. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.themoviedb.org has been installed.'
  257. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.artists.allmusic.com has been installed.'
  258. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in xbmc.metadata has been installed.'
  259. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in service.xbmc.versioncheck has been installed.'
  260. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in skin.confluence has been installed.'
  261. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in visualization.glspectrum has been installed.'
  262. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in script.module.pil has been installed.'
  263. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in xbmc.gui has been installed.'
  264. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in visualization.milkdrop has been installed.'
  265. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in visualization.dxspectrum has been installed.'
  266. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in xbmc.core has been installed.'
  267. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.solarwinds has been installed.'
  268. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.slideshow has been installed.'
  269. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.htbackdrops.com has been installed.'
  270. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.yahoomusic.com has been installed.'
  271. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.allmusic.com has been installed.'
  272. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.tvdb.com has been installed.'
  273. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.last.fm has been installed.'
  274. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.themoviedb.org has been installed.'
  275. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in xbmc.python has been installed.'
  276. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.imdb.com has been installed.'
  277. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in xbmc.addon has been installed.'
  278. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.plasma has been installed.'
  279. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in visualization.waveform has been installed.'
  280. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in script.module.pysqlite has been installed.'
  281. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.hdtrailers.net has been installed.'
  282. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Plug-in visualization.itunes has been installed.'
  283. 13:59:43 T:140305200154528   DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.'
  284. 13:59:43 T:140305200154528   DEBUG: LoadMappings - loaded node "Motorola Nyxboard Hybrid"
  285. 13:59:43 T:140305200154528   DEBUG: LoadMappings - loaded node "Pulse-Eight CEC Adaptor"
  286. 13:59:43 T:140305200154528   DEBUG: CPeripheralBusUSB - initialised udev monitor: 15
  287. 13:59:44 T:140305200154528    INFO: LIRC Initialize: using: /dev/lircd
  288. 13:59:44 T:140305200154528    INFO: LIRC Initialize: connect failed: No such file or directory
  289. 13:59:44 T:140304806250240   DEBUG: Thread XBMC Peripherals start, auto delete: 0
  290. 13:59:44 T:140305200154528   DEBUG: Failed to connect to LIRC. Retry in 10s.
  291. 13:59:44 T:140305200154528  NOTICE: Enabled Joystick: Microsoft Microsoft® 2.4GHz Transceiver v6.0
  292. 13:59:44 T:140305200154528  NOTICE: Details: Total Axis: 37 Total Hats: 0 Total Buttons: 75
  293. 13:59:44 T:140305200154528   DEBUG: OnLostDevice - notify display change event
  294. 13:59:44 T:140305200154528    INFO: XRANDR: /usr/lib/xbmc/xbmc-xrandr --output HDMI1 --mode 0x46
  295.  
  296.  
  297. ############### END LOG FILE ################
  298.  
  299. ############ END XBMC CRASH LOG #############
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement