diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-01-14 04:53:41 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-20 00:52:26 +0100 |
commit | 4d463614252d2ffe23cb6ea938389c115291fcd3 (patch) | |
tree | 49c669dda12e9791358040b4f8daafdb6f03b12e | |
parent | 45c889a3adf6df9e6a9bf5a2e7c960d866e2ccb4 (diff) | |
download | ffmpeg-4d463614252d2ffe23cb6ea938389c115291fcd3.tar.gz |
Avoid dependancy on global variable verbose in libmpcodecs/vf_pullup.c
-rw-r--r-- | libavfilter/libmpcodecs/vf_pullup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/libmpcodecs/vf_pullup.c b/libavfilter/libmpcodecs/vf_pullup.c index a1ed978a39..02a2031591 100644 --- a/libavfilter/libmpcodecs/vf_pullup.c +++ b/libavfilter/libmpcodecs/vf_pullup.c @@ -293,7 +293,7 @@ static int vf_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>0; + c->verbose = 1; c->junk_left = c->junk_right = 1; c->junk_top = c->junk_bottom = 4; c->strict_breaks = 0; |