File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,8 +9,9 @@ To play videos, you'll need to convert them to the Rocket Video (`.rvid`) format
99
1010# Features
1111- Support for videos up to 60FPS (compatible with even the DS & DS Lite systems)!
12- - Both 8-bit (256 colors) and 16-bit (RGB555/RGB565) bitmap videos are supported.
13- - Screen filters are not supported for 16-bit bitmap videos.
12+ - Both 8 BPP (256 colors) and 16 BPP (RGB555/RGB565) videos are supported.
13+ - Your video's height must be 108px or less in order to use 16 BPP.
14+ - Screen filters are not supported for 16 BPP videos.
1415- Support for dual-screen videos (up to 30FPS)!
1516- Support for audio up to 32khz Mono.
1617- The video UI from the "Nintendo DSi + Internet" app, with the title bar now containing the console's set color.
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ typedef struct rvidHeaderInfo2 {
2727 u8 dualScreen ; // Is dual screen video
2828 u16 sampleRate ; // Audio sample rate
2929 u8 audioBitMode ; // 0 = 8-bit, 1 = 16-bit
30- u8 bmpMode ; // 0 = 256 RGB565 colors , 1 = Unlimited RGB555 colors , 2 = Unlimited RGB565 colors
30+ u8 bmpMode ; // 0 = 8 BPP (RGB565) , 1 = 16 BPP (RGB555) , 2 = 16 BPP (RGB565)
3131 u32 compressedFrameSizeTableOffset ; // Offset of compressed frame size table
3232 u32 soundOffset ; // Offset of sound stream
3333} rvidHeaderInfo2 ;
You can’t perform that action at this time.
0 commit comments