mirror of https://github.com/mpv-player/mpv
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:
parent
aa735c06ed
commit
acbb150f8e
|
@ -326,7 +326,7 @@ static int open(vf_instance_t *vf, char* args)
|
||||||
vf->priv = p = calloc(1, sizeof(struct vf_priv_s));
|
vf->priv = p = calloc(1, sizeof(struct vf_priv_s));
|
||||||
p->ctx = c = pullup_alloc_context();
|
p->ctx = c = pullup_alloc_context();
|
||||||
p->fakecount = 1;
|
p->fakecount = 1;
|
||||||
c->verbose = verbose;
|
c->verbose = verbose>0;
|
||||||
c->junk_left = c->junk_right = 1;
|
c->junk_left = c->junk_right = 1;
|
||||||
c->junk_top = c->junk_bottom = 4;
|
c->junk_top = c->junk_bottom = 4;
|
||||||
c->strict_breaks = 0;
|
c->strict_breaks = 0;
|
||||||
|
|
Loading…
Reference in New Issue