summaryrefslogtreecommitdiff
path: root/src/codec/codec.h
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2026-04-13 17:36:54 -0400
committerAndrew Opalach <andrew@akon.city> 2026-04-13 17:36:54 -0400
commit4ceadc74f0086168fbc576032ba3e6f23af16e39 (patch)
treea542703d78f2b29ac1a756fdceec78e40860bab0 /src/codec/codec.h
parent77b54c35bf9587450cd636e0d7df37e190e28bfb (diff)
downloadcamu-4ceadc74f0086168fbc576032ba3e6f23af16e39.tar.gz
camu-4ceadc74f0086168fbc576032ba3e6f23af16e39.tar.bz2
camu-4ceadc74f0086168fbc576032ba3e6f23af16e39.zip
Changes that went uncommitted for too long
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/codec/codec.h')
-rw-r--r--src/codec/codec.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/codec/codec.h b/src/codec/codec.h
index 730e8cb..f1c979b 100644
--- a/src/codec/codec.h
+++ b/src/codec/codec.h
@@ -12,6 +12,8 @@
#include "codecs.h"
+//#define CAMU_HUGE_VIDEO_BUFFER
+
enum {
CAMU_LANG_UNKNOWN = 0,
CAMU_LANG_ENGLISH,
@@ -208,7 +210,8 @@ struct camu_demuxer {
bool (*seek)(struct camu_demuxer *, u64, bool);
void (*free)(struct camu_demuxer **);
array(struct camu_codec_stream) streams;
- u32 subscribed;
+ // @TODO: .mkv can probably have more than 64 streams.
+ u64 subscribed;
};
struct camu_renderer;