summaryrefslogtreecommitdiff
path: root/src/codec/codec.h
diff options
context:
space:
mode:
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;