rodries

Forum Replies Created

Viewing 15 posts - 256 through 270 (of 767 total)
  • Author
    Posts
  • in reply to: Screen Saver timer… #28363
    rodries
    Keymaster

    Right now it’s set to 5 minutes.

    I’ve added the ability to change that for the next version for you. 🙂

    Note that it can’t be set below 1 minute.

    in reply to: USB DVD Device Support #28299
    rodries
    Keymaster

    My suggestion is to re-read what rodries wrote. He already answered this:

    di_* changes will allow to play a video dvd, using dvdnav and dvd://

    in reply to: compilation help please #28110
    rodries
    Keymaster

    You’re still missing libexif.

    in reply to: compilation help please #28108
    rodries
    Keymaster

    @Ataraxis, no he’s missing ALL of the libs. So he didn’t follow the instructions at all 😯

    in reply to: SMB constantly buffering, can’t get it to work reliably #28358
    rodries
    Keymaster

    You could be getting wireless interference. You could try changing to a different wifi channel. Or a more permanent solution would be to get a USB ethernet adapter.

    in reply to: Going up a directory takes long #28288
    rodries
    Keymaster

    Tantric: you said that “WiiMC sets aside 2000 directory entries for one directory path”. That’s true, but only for directories with 2000 entries. Directories with less entries will luckily use less memory. (See AddBrowserEntry() in filebrowser.cpp )

    See wiimc.cpp:

    browserList = (BROWSERENTRY *)mem2_malloc(sizeof(BROWSERENTRY)*MAX_BROWSER_SIZE, VIDEO_AREA);

    Doesn’t matter if it has less than 2000, at the moment this is the memory allocated in the MEM2 area called VIDEO_AREA.

    Re: your browser class idea – why do this is C++ rather than C? You can just as easily use structs, malloc, etc. I’m not completely opposed to C++, but also realize that it is going to use more memory up to use classes – C++ increases the footprint.

    in reply to: Buffer percentage #28354
    rodries
    Keymaster

    Sure, if you don’t mind waiting for the buffer to completely fill. This cache % setting is actually what % is filled before playback begins. If possible the buffer will fill itself completely while the video is playing, regardless of what % you set. Same goes if you pause the video for example – the buffer will be filling and will fill to the full 8MB even if you set 10%.

    in reply to: Buffer percentage enligtenment #28350
    rodries
    Keymaster

    No. Maximum 8MB, like I said above.

    in reply to: Buffer percentage enligtenment #28349
    rodries
    Keymaster

    It’s 30% of the allotted cache, which is 8MB.

    88MB is the total memory – that includes WiiMC itself and all of the memory it needs.

    in reply to: ext2 library dependency documented? #28346
    rodries
    Keymaster

    The compilation instructions are updated upon release of a new version – and not necessarily during development of the release.

    in reply to: USB Problems? Read This! #27815
    rodries
    Keymaster

    Sure. It’s not compatible. You can hope someone alters the code to make it compatible (if it’s even possible) but I wouldn’t hold your breath…

    in reply to: Going up a directory takes long #28285
    rodries
    Keymaster

    3 seconds is “quite frustrating”? You have a low tolerance!

    What you’re asking for would require a great deal of optimization.

    Consider that right now WiiMC sets aside 2000 directory entries for one directory path. Each entry requires approx 1534 bytes. So 2000 x 1534 = approx 3MB. That’s for one directory. If you’re considering caching additional directories, the storage requirements would grow quickly. Consider that although the Wii has a total of 88MB of RAM, a huge amount of that is sucked up by other things. You really don’t have that much to play with.

    So in order to do what you’re suggesting, you would have to
    -only allocate as much as required for each entry
    -track memory closely to ensure all of it is freed when no longer needed and can be reused
    -track total memory footprint and expand / shrink as needed (?)
    -determine a logical caching scheme
    -etc

    You would also have to consider that directories can be moved/renamed/contents changed

    in reply to: USB Problems? Read This! #27807
    rodries
    Keymaster

    I think he’s right! That was test 4.

    in reply to: USB Problems? Read This! #27805
    rodries
    Keymaster

    I would be concerned too, since method 5 is the one we’re going with.

    in reply to: Crashing at startup #28265
    rodries
    Keymaster

    Try removing the no_ios_reload line from meta.xml and report back.

Viewing 15 posts - 256 through 270 (of 767 total)

Login

Lost Password