RetroPlayer CHANGELOG/NEWS
#16
Getting a scaling error:

Code:
[bSNES]: ID 6, Request "".
[bSNES]: Complete load request.
[bSNES]: XML map:

[swscaler @ 0x7fe8ac005a60] 0x0 -> 0x0 is invalid scaling dimension
xbmc.bin: /home/user/Desktop/xbmc-retroplayer/src/xbmc/xbmc/utils/MathUtils.h:74: int MathUtils::round_int(double): Assertion `x > static_cast<double>((-2147483647 - 1) / 2) - 1.0' failed.
/usr/bin/xbmc: line 137: 28462 Aborted                 (core dumped) "$LIBDIR/xbmc/xbmc.bin" $SAVED_ARGS

I can post the full log if you need it.
Reply
#17
Yes, I would like to see that.
Reply
#18
@teeedubb I have fixed most of the bugs I was worried about. Test away!!!
Reply
#19
http://pastebin.com/MiNXTb75
Reply
#20
(2013-09-06, 03:24)MovieBird Wrote: Getting a scaling error:

Code:
[bSNES]: ID 6, Request "".
[bSNES]: Complete load request.
[bSNES]: XML map:

[swscaler @ 0x7fe8ac005a60] 0x0 -> 0x0 is invalid scaling dimension
xbmc.bin: /home/user/Desktop/xbmc-retroplayer/src/xbmc/xbmc/utils/MathUtils.h:74: int MathUtils::round_int(double): Assertion `x > static_cast<double>((-2147483647 - 1) / 2) - 1.0' failed.
/usr/bin/xbmc: line 137: 28462 Aborted                 (core dumped) "$LIBDIR/xbmc/xbmc.bin" $SAVED_ARGS

I can post the full log if you need it.

fixed in Commit:9779782

keep the bug reports coming, there is great probability that i broke other stuff in the rebase and refactor Smile
Reply
#21
(2013-09-06, 13:40)MovieBird Wrote: http://pastebin.com/MiNXTb75

the error is "RetroPlayerVideo: Failed to grab SWScale context, bailing". it looks like the SWScale lib isn't being found or it's not working correctly. did previous versions of RetroPlayer work?

also the commit above fixes a crash on start, so with luck maybe that fixes the error you're seeing too
Reply
#22
(2013-09-07, 05:53)garbear Wrote: the error is "RetroPlayerVideo: Failed to grab SWScale context, bailing". it looks like the SWScale lib isn't being found or it's not working correctly. did previous versions of RetroPlayer work?

also the commit above fixes a crash on start, so with luck maybe that fixes the error you're seeing too

While xbmc is no longer crashing, it still doesn't show anything when I try to run a game.

IMG: http://snag.gy/8aBIV.jpg

Log: http://pastebin.com/0zUqTwb2
Reply
#23
(2013-09-07, 15:45)MovieBird Wrote: While xbmc is no longer crashing, it still doesn't show anything when I try to run a game.

IMG: http://snag.gy/8aBIV.jpg

Log: http://pastebin.com/0zUqTwb2

Fixed in Commit:e9b658f
Reply
#24
I can't seem to get it to compile on the latest build (seemed to work yesterday; I had the same problem with the swscale issue and saw it fixed but had the blank video issue)

http://pastebin.com/gy6jjpqU
Reply
#25
(2013-09-07, 23:35)crajohns6965 Wrote: I can't seem to get it to compile on the latest build (seemed to work yesterday; I had the same problem with the swscale issue and saw it fixed but had the blank video issue)

http://pastebin.com/gy6jjpqU

The most recent commit gives me this build error:

Code:
/home/user/Desktop/xbmc-retroplayer/src/xbmc/xbmc/guilib/GraphicContext.h:269:29: warning: ‘g_graphicsContext’ defined but not used [-Wunused-variable]
XBMC_GLOBAL(CGraphicContext,g_graphicsContext);
                             ^
/home/user/Desktop/xbmc-retroplayer/src/xbmc/xbmc/utils/GlobalsHandling.h:223:22: note: in definition of macro ‘XBMC_GLOBAL’
   static classname & g_variable = (*(g_variable##Ref.get()))
                      ^
make[1]: *** [RetroPlayer.o] Error 1
make: *** [xbmc/cores/RetroPlayer/retroplayer.a] Error 2
==> ERROR: A failure occurred in build().

BTW, apparently GNU thinks it should be configure.ac

Code:
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'

http://lists.gnu.org/archive/html/automa...00000.html

Quote:Automake 1.14 will drop support for the long-deprecated 'configure.in' name for the Autoconf input file. You are advised to start using the recommended name 'configure.ac' instead, ASAP.
Reply
#26
(2013-09-07, 23:35)crajohns6965 Wrote: I can't seem to get it to compile on the latest build (seemed to work yesterday; I had the same problem with the swscale issue and saw it fixed but had the blank video issue)

http://pastebin.com/gy6jjpqU

Fixed in Commit:c307f71 (stupid xbmc headers depend on the order you #include them in)

(2013-09-08, 01:47)MovieBird Wrote: The most recent commit gives me this build error:

Code:
/home/user/Desktop/xbmc-retroplayer/src/xbmc/xbmc/guilib/GraphicContext.h:269:29: warning: ‘g_graphicsContext’ defined but not used [-Wunused-variable]
XBMC_GLOBAL(CGraphicContext,g_graphicsContext);
                             ^
/home/user/Desktop/xbmc-retroplayer/src/xbmc/xbmc/utils/GlobalsHandling.h:223:22: note: in definition of macro ‘XBMC_GLOBAL’
   static classname & g_variable = (*(g_variable##Ref.get()))
                      ^
make[1]: *** [RetroPlayer.o] Error 1
make: *** [xbmc/cores/RetroPlayer/retroplayer.a] Error 2
==> ERROR: A failure occurred in build().

those aren't errors, it's a warning and a note. make was probably running jobs in parallel and hit an error (you'll find it way above), then spewed those lines while the other jobs were halting.

(2013-09-08, 01:47)MovieBird Wrote: BTW, apparently GNU thinks it should be configure.ac

Code:
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'

http://lists.gnu.org/archive/html/automa...00000.html

Quote:Automake 1.14 will drop support for the long-deprecated 'configure.in' name for the Autoconf input file. You are advised to start using the recommended name 'configure.ac' instead, ASAP.

not my problem Smile
Reply
#27
Compiled latest commit (c307f71348f25f9a8c384fb58304fc1bdbdebca3). When launching games xbmc freezes and requires pc restart. I couldn't see any logged errors, but here it is anyways. http://pastebin.com/vyKtV266
Image
Reply
#28
I'm getting the same thing (well, it doesn't freeze the pc, but I do have to restart xbmc from ssh) I don't see any log errors either
Reply

Logout Mark Read Team Forum Stats Members Help
RetroPlayer CHANGELOG/NEWS3