1
mirror of https://github.com/mpv-player/mpv synced 2024-09-12 23:45:53 +02:00

1l! mplayer's verbose variable is not a flag but a signed number

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15038 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rfelker 2005-04-01 16:24:46 +00:00
parent aa735c06ed
commit acbb150f8e

View File

@ -326,7 +326,7 @@ static int open(vf_instance_t *vf, char* args)
vf->priv = p = calloc(1, sizeof(struct vf_priv_s));
p->ctx = c = pullup_alloc_context();
p->fakecount = 1;
c->verbose = verbose;
c->verbose = verbose>0;
c->junk_left = c->junk_right = 1;
c->junk_top = c->junk_bottom = 4;
c->strict_breaks = 0;