Skip to content

Commit a4521c0

Browse files
committed
Refer to 8-bit/16-bit videos as 8 BPP/16 BPP
1 parent a9dda14 commit a4521c0

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

arm9/source/rvidHeader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)