![]() |
N64 QOI Encoder Demo 1.0.1
Encoder for N64 that saves it to SD card
|
Main file for N64 QOI Encoder ROM. More...
Go to the source code of this file.
Macros | |
| #define | ENC_BUFFER_SIZE 16384 |
| Buffer size for the encoder to limit RAM usage. | |
Enumerations | |
| enum | QOI_ENC_ARGS { ENC_NAME , ENC_INPUT_FILENAME , ENC_WIDTH , ENC_HEIGHT , ENC_BITDEPTH , ENC_OUTPUT_FILENAME } |
| Enumeration for command-line argument indices. More... | |
Functions | |
| uint16_t | read_be_u16 (uint16_t val) |
| Reads a big-endian 16-bit unsigned integer from memory. | |
| uint32_t | read_be_u32 (uint32_t val) |
| Reads a big-endian 32-bit unsigned integer from memory. | |
| void | print_version (void) |
| Prints the version information of the encoder. | |
| void | print_help (void) |
| Prints the help information for the encoder. | |
| int | main (int argc, char *argv[]) |
| Main function for the QOI encoder. | |
Variables | |
| const char | version_number [] = "version 1.2.n64.0" |
| Version number of the encoder. | |
| const char | revised_date [] = "2026-04-16" |
| Date of the last revision. | |
Main file for N64 QOI Encoder ROM.
N64 framebuffer to QOI program.
qoi_n64_scr.c - N64 ROM for demonstrating taking screenshots to QOI file.
This file is the entry point of the N64 QOI Encoder ROM
Code licensed under MIT License
Copyright (c) 2026 Aftersol
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
– qoi_enc.c – N64 framebuffer to QOI program
– Changelog –
Code licensed under MIT License
Copyright (c) 2024-2026 Aftersol
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Definition in file qoi_enc.c.
| #define ENC_BUFFER_SIZE 16384 |
| enum QOI_ENC_ARGS |
Enumeration for command-line argument indices.
| int main | ( | int | argc, |
| char * | argv[] ) |
| void print_help | ( | void | ) |
| void print_version | ( | void | ) |
| uint16_t read_be_u16 | ( | uint16_t | val | ) |
| uint32_t read_be_u32 | ( | uint32_t | val | ) |
| const char revised_date[] = "2026-04-16" |