summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-01-14 14:17:58 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-01-14 14:17:58 +1100
commitfbf406c34adb0a65924f15a1f0e5142e695b36ad (patch)
tree846b7e135dafae9bf8790f86d66bf5201a7f22fb /src
parentd33aeddbfb1510c7a1846067c5512cfb942ccb17 (diff)
feat(dbg): Add tinyff debug splash message
Diffstat (limited to 'src')
-rw-r--r--src/dbg.c (renamed from src/format/image/dbg.c)6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/format/image/dbg.c b/src/dbg.c
index 56cb53b..8d3aba3 100644
--- a/src/format/image/dbg.c
+++ b/src/dbg.c
@@ -4,6 +4,12 @@ ff_result ff_set_debug_stream(FILE *stream)
{
intff_debug_stream = stream;
intff_debug_enabled = (stream != NULL);
+
+ ff_dprintf("tinyff 0.1.0 debug stream\n");
+ ff_dprintf("For more information, visit\n");
+ ff_dprintf("https://github.com/TazyFoundSoup/tinyff\n");
+ ff_dprintf("------------------------------\n");
+
return FF_RESULT_OK;
}