video_out.h: Cosmetics

Reindent structs that used 8-space indent, change type of is_new to
bool, remove unnecessary <stdarg.h> include.
This commit is contained in:
Uoti Urpala 2009-09-17 17:52:09 +03:00
parent 74619f275e
commit 6847e5e297
1 changed files with 65 additions and 65 deletions

View File

@ -24,7 +24,7 @@
#define MPLAYER_VIDEO_OUT_H
#include <inttypes.h>
#include <stdarg.h>
#include <stdbool.h>
//#include "font_load.h"
#include "libmpcodecs/img_format.h"
@ -132,7 +132,7 @@ struct osd_state;
struct vo_driver {
// Driver uses new API
int is_new;
bool is_new;
// This is set if the driver is not new and contains pointers to
// old-API functions to be used instead of the ones below.