mirror of https://github.com/mpv-player/mpv
10l found by Oded: case 2 on a boolean value...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17833 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5c853c2c21
commit
7519cfa528
|
@ -426,9 +426,9 @@ static void copy_image(mp_image_t *dmpi, mp_image_t *mpi, int field)
|
|||
static int do_put_image(struct vf_instance_s* vf, mp_image_t *dmpi)
|
||||
{
|
||||
struct vf_priv_s *p = vf->priv;
|
||||
int dropflag;
|
||||
int dropflag=0;
|
||||
|
||||
switch (p->drop && !p->dropnext) {
|
||||
if (!p->dropnext) switch (p->drop) {
|
||||
case 0:
|
||||
dropflag = 0;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue