summaryrefslogtreecommitdiffstats
path: root/libmpdemux/mf.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-15 19:47:49 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-15 19:47:49 +0000
commit4ccfe264a3accb64a1fe32c8712be5af1a2d6385 (patch)
treef12a28880f7f66abb62a9ac9aba91db6de75d3cd /libmpdemux/mf.h
parent860a2241842bbf93c056c6b5bf0ca74efec542c4 (diff)
downloadmpv-4ccfe264a3accb64a1fe32c8712be5af1a2d6385.tar.bz2
mpv-4ccfe264a3accb64a1fe32c8712be5af1a2d6385.tar.xz
stream layer cleanup - part 1
STREAMTYPE_MF removed, using STREAMTYPE_DUMMY instead mf.c/demux_mf updated to do the opening in demux_open instead of stream_open git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7408 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/mf.h')
-rw-r--r--libmpdemux/mf.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libmpdemux/mf.h b/libmpdemux/mf.h
index 6ebb3c0a5e..f147477aba 100644
--- a/libmpdemux/mf.h
+++ b/libmpdemux/mf.h
@@ -10,8 +10,11 @@ extern char * mf_type;
typedef struct
{
- int nr_of_files;
+ int curr_frame;
+ int nr_of_files;
char ** names;
} mf_t;
+mf_t* open_mf(char * filename);
+
#endif