summaryrefslogtreecommitdiffstats
path: root/stream/tvi_dummy.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/tvi_dummy.c')
-rw-r--r--stream/tvi_dummy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/tvi_dummy.c b/stream/tvi_dummy.c
index 24590fa428..0d9e86c210 100644
--- a/stream/tvi_dummy.c
+++ b/stream/tvi_dummy.c
@@ -24,7 +24,7 @@
#include "video/img_fourcc.h"
#include "tv.h"
-static tvi_handle_t *tvi_init_dummy(tv_param_t* tv_param);
+static tvi_handle_t *tvi_init_dummy(struct mp_log *log, tv_param_t* tv_param);
/* information about this file */
const tvi_info_t tvi_info_dummy = {
tvi_init_dummy,
@@ -43,9 +43,9 @@ typedef struct priv {
#include "tvi_def.h"
/* handler creator - entry point ! */
-static tvi_handle_t *tvi_init_dummy(tv_param_t* tv_param)
+static tvi_handle_t *tvi_init_dummy(struct mp_log *log, tv_param_t* tv_param)
{
- return tv_new_handle(sizeof(priv_t), &functions);
+ return tv_new_handle(sizeof(priv_t), log, &functions);
}
/* initialisation */