Search results

  1. T

    Firmware 2.0.0 Next Week!

    I wouldn't hold my breath on the battery life, it's pretty much up to the hardware now that they have disabled the couple of stupid things they were doing.
  2. T

    Tv-out Through Usb?!

    Strangely enough I was thinking of something similar today. Run a VNC server on the gp2x, and you have a portable linux desktop that boots in 15 seconds. Ala i It would be much better if it could be powered over usb. btw vimacs, my modified g_ether driver is humming along nicely :)
  3. T

    Compiler Problems

    Open2x will ship with a full suite of gcc4 libraries, as well as the old libraries for compatibility. It seems to work fine so far, except for mplayer :/
  4. T

    Compiler Problems

    you need to add -lpthread after -lalleg
  5. T

    Tunar

    Hardware pygame: http://brendan.mine.nu/pygame-beta2.zip This will probably end up in open2x.
  6. T

    Wormux A Funny Worms Copy

    SDL_gfx has had a port for ages. It has plain C implementations for all functions. Of course, any budding asm'ers out there can feel free to implement some in arm asm for us :)
  7. T

    GP2X Vob Player For Gp2x?

    I get about 1mbyte/sec on the usb device port. I can't imagine the host port being any faster. Full rate DVD is about 1.2 mbyte/sec, though most are less than that. The MMSP2 is obviously designed as a DVD player chip, but I'm pretty sure not all of the necessary code to set it all up has been...
  8. T

    Gp2x Getting Upgrades.

    afaik the current thinking is around christmas.
  9. T

    GP2X Gp2x Vector Graphics Library?

    SDL_gfx has a line drawing function. What else do you need?
  10. T

    Wiring Gp2x Controls To A Db15?

    Even if gph do include the drivers, all the software will have to be upgraded to support it.
  11. T

    Supertux Gp2x Problem, Wont Start

    well, it confirms that the problem is related to the sound driver changes in 1.4, but we kinda suspected that already
  12. T

    Ffmpeg

    Thanks to coob for pointing out that theres already some arm-asm code in libavcodec, i completly missed it. Anyway, we have 320x240 mpeg4 video / mp3 audio running at 233mhz, or 20fps at 250mhz. Should be a lot nicer on the batteries than the gph mplayer, as we're only using 1 cpu, not 2 and the...
  13. T

    Ffmpeg

    Who knows, but they only have the structs for mp4 and mjpeg.
  14. T

    Ffmpeg

    Look closer. It's only got MP4 and MJPEG. Both are encode/decode though. http://svn.sourceforge.net/viewcvs.cgi/ope...u.h?view=markup Anyway, I might take a crack at decyphering the content of their calls tomorrow. Should be enough to start implementing your own version.
  15. T

    Ffmpeg

    We'd have to get the docs and or code for the video hardware to have a go at h.264. As far as I know not even GPH have access to this information, so the chances of us getting are next to 0.
  16. T

    A Couple Quick Dev Questions

    Not really, you could look in /proc/XXX/fd to see who's got /dev/fb/0 open i guess.
  17. T

    A Couple Quick Dev Questions

    SDL apps probably ignore the suspend signal. Try pressing ctl-z at the term. Anyway, you can either inspect the registers manually or start reading the docs for the framebuffer devices. There should be an ioctl you can use to get the current mode.
  18. T

    Sdl Event Queue Help, Inputs Going Out Of Sync

    while (!done) { while (SDL_PollEvent(&event)) { switch (event.type) { // (key up and key down stuff, basically I'm just putting 1's and 0's into an array here) } } // other game logic // including interpreting what was found in the controls array SDL_Flip(screen); }
  19. T

    GP2X [rant] Why Isn't Gph Embracing The Dev Community?

    Still, doesn't change the fact that every firmware, up to and including 1.4 is in clear violation of the GPL. And where's the SDK that they like to talk about on their website?
  20. T

    Gcc Noob Question

    You'll need to set up a cross compiler, use devkit2x or oopo's toolchain. Then use the toolchain's version of gcc, eg gp2x-gcc -o mygame mygame.c -static
Back
Top