diff options
| author | 2026-04-13 17:36:54 -0400 | |
|---|---|---|
| committer | 2026-04-13 17:36:54 -0400 | |
| commit | 4ceadc74f0086168fbc576032ba3e6f23af16e39 (patch) | |
| tree | a542703d78f2b29ac1a756fdceec78e40860bab0 /src/codec/codec.h | |
| parent | 77b54c35bf9587450cd636e0d7df37e190e28bfb (diff) | |
| download | camu-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.h | 5 |
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; |