summaryrefslogtreecommitdiffstats
path: root/mp_fifo.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-29 15:44:03 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-29 15:52:29 +0300
commit06405a5ba56a0c38b76859a8e1e4665061028a79 (patch)
tree2ed28c357697664f1d736455441314df2c71a261 /mp_fifo.h
parent77ec83e351ca7218464f8f77a711520d68fa2e5d (diff)
downloadmpv-06405a5ba56a0c38b76859a8e1e4665061028a79.tar.bz2
mpv-06405a5ba56a0c38b76859a8e1e4665061028a79.tar.xz
Move key_fifo_size & doubleclick_time to options struct
Diffstat (limited to 'mp_fifo.h')
-rw-r--r--mp_fifo.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/mp_fifo.h b/mp_fifo.h
index 719bbafac7..751de324b6 100644
--- a/mp_fifo.h
+++ b/mp_fifo.h
@@ -5,7 +5,9 @@ struct mp_fifo;
int mplayer_get_key(void *ctx, int fd);
void mplayer_put_key(struct mp_fifo *fifo, int code);
// Can be freed with talloc_free()
-struct mp_fifo *mp_fifo_create(void);
+struct MPOpts;
+struct mp_fifo *mp_fifo_create(struct MPOpts *opts);
+
#ifdef IS_OLD_VO
#define mplayer_put_key(key) mplayer_put_key(global_vo->key_fifo, key)