Mercurial > mplayer.hg
diff libmpcodecs/vf_flip.c @ 15212:05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
author | henry |
---|---|
date | Mon, 18 Apr 2005 15:52:38 +0000 |
parents | 7d6a854a5fe5 |
children | 6ff3379a0862 |
line wrap: on
line diff
--- a/libmpcodecs/vf_flip.c Mon Apr 18 14:35:11 2005 +0000 +++ b/libmpcodecs/vf_flip.c Mon Apr 18 15:52:38 2005 +0000 @@ -8,13 +8,14 @@ #include "mp_image.h" #include "vf.h" +#include "../libvo/video_out.h" //===========================================================================// static int config(struct vf_instance_s* vf, int width, int height, int d_width, int d_height, unsigned int flags, unsigned int outfmt){ - flags&=~8; // remove the FLIP flag + flags&=~VOFLAG_FLIPPING; // remove the FLIP flag return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); }