diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-30 11:07:53 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-30 11:07:53 +0000 |
commit | 8764815186c1e3fbe2671c574969eaa76e818a1a (patch) | |
tree | e01d8302994616b4c63d30182e410734dae851ca /libvo | |
parent | 6a7f407a96d21b79e99981d39b390e5c86b91719 (diff) | |
download | mpv-8764815186c1e3fbe2671c574969eaa76e818a1a.tar.bz2 mpv-8764815186c1e3fbe2671c574969eaa76e818a1a.tar.xz |
Remove unused static variables, fixes the warnings:
vo_bl.c: At top level:
vo_bl.c:64: warning: 'yoff' defined but not used
vo_bl.c:64: warning: 'stride' defined but not used
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25549 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vo_bl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_bl.c b/libvo/vo_bl.c index 4638f4438b..e2f857eca1 100644 --- a/libvo/vo_bl.c +++ b/libvo/vo_bl.c @@ -61,7 +61,7 @@ const LIBVO_EXTERN (bl) static unsigned char *image = NULL; static unsigned char *tmp = NULL; -static int framenum, yoff, stride; +static int framenum; static char *bl_subdevice = NULL; static int prevpts = -1; |