summaryrefslogtreecommitdiff
path: root/decode.h
diff options
context:
space:
mode:
authorMikhail Burakov <mburakov@mailbox.org>2024-11-17 08:50:58 +0100
committerMikhail Burakov <mburakov@mailbox.org>2024-11-17 08:50:58 +0100
commit555bb47744c997ce408dac59991dbeb3ebac01cb (patch)
tree8e6a5d249885e6366ae3c7dd84635a3fcf05234a /decode.h
parentd6e50f80903d8de756c0d441e0a668138793afcc (diff)
Add commandline option for video stream dumping
Diffstat (limited to 'decode.h')
-rw-r--r--decode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/decode.h b/decode.h
index e2ea3ba..c243316 100644
--- a/decode.h
+++ b/decode.h
@@ -24,7 +24,8 @@
struct DecodeContext;
struct Window;
-struct DecodeContext* DecodeContextCreate(struct Window* window);
+struct DecodeContext* DecodeContextCreate(struct Window* window,
+ const char* dump_fname);
bool DecodeContextDecode(struct DecodeContext* decode_context,
const void* buffer, size_t size);
void DecodeContextDestroy(struct DecodeContext* decode_context);