diff src/alac/demux.h @ 77:c2981235af26 trunk

[svn] - thread safety
author nenolod
date Mon, 02 Oct 2006 18:14:15 -0700
parents 56c88eee9802
children 096db10ce25f
line wrap: on
line diff
--- a/src/alac/demux.h	Mon Oct 02 15:52:47 2006 -0700
+++ b/src/alac/demux.h	Mon Oct 02 18:14:15 2006 -0700
@@ -2,6 +2,7 @@
 #define DEMUX_H
 
 #include <stdint.h>
+#include "decomp.h"
 #include "stream.h"
 
 typedef uint32_t fourcc_t;
@@ -30,6 +31,9 @@
 #if 0
     void *mdat;
 #endif
+
+    stream_t *stream;
+    alac_file *alac;
 } demux_res_t;
 
 int qtmovie_read(stream_t *stream, demux_res_t *demux_res);