diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2024-11-17 08:50:58 +0100 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2024-11-17 08:50:58 +0100 |
commit | 555bb47744c997ce408dac59991dbeb3ebac01cb (patch) | |
tree | 8e6a5d249885e6366ae3c7dd84635a3fcf05234a /decode.h | |
parent | d6e50f80903d8de756c0d441e0a668138793afcc (diff) |
Add commandline option for video stream dumping
Diffstat (limited to 'decode.h')
-rw-r--r-- | decode.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |