summaryrefslogtreecommitdiffstats
path: root/demux/mf.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-11 19:20:37 +0100
committerwm4 <wm4@nowhere>2013-11-11 19:20:37 +0100
commit2f92056e2ab859c8565c5b5cf677b4b1a55d844d (patch)
tree94ad9ad35e7367e620705f852c67ced6c4cf0831 /demux/mf.h
parent59cc8fff19801f4249e0ff9ea07606accb74fb00 (diff)
downloadmpv-2f92056e2ab859c8565c5b5cf677b4b1a55d844d.tar.bz2
mpv-2f92056e2ab859c8565c5b5cf677b4b1a55d844d.tar.xz
demux_mf: use talloc
Diffstat (limited to 'demux/mf.h')
-rw-r--r--demux/mf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/demux/mf.h b/demux/mf.h
index ac239a2122..cf7c2cd40d 100644
--- a/demux/mf.h
+++ b/demux/mf.h
@@ -26,12 +26,12 @@ typedef struct mf {
struct sh_video *sh;
int curr_frame;
int nr_of_files;
- char ** names;
+ const char **names;
// optional
struct stream **streams;
} mf_t;
-mf_t* open_mf_pattern(char * filename);
-mf_t* open_mf_single(char * filename);
+mf_t *open_mf_pattern(void *talloc_ctx, char *filename);
+mf_t *open_mf_single(void *talloc_ctx, char *filename);
#endif /* MPLAYER_MF_H */