mirror of https://github.com/mpv-player/mpv
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:
parent
74619f275e
commit
6847e5e297
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue