mirror of
https://github.com/mpv-player/mpv
synced 2024-12-27 17:42:17 +00:00
Mark m_struct_t defaults as const
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22045 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a1fe76958b
commit
6d32d91eca
@ -64,7 +64,7 @@ static struct vf_priv_s {
|
||||
|
||||
unsigned char* planes[3];
|
||||
unsigned char* dirty_rows;
|
||||
} vf_priv_dflt;
|
||||
} const vf_priv_dflt;
|
||||
|
||||
extern int opt_screen_size_x;
|
||||
extern int opt_screen_size_y;
|
||||
|
@ -16,7 +16,7 @@
|
||||
static struct vf_priv_s {
|
||||
int crop_w,crop_h;
|
||||
int crop_x,crop_y;
|
||||
} vf_priv_dflt = {
|
||||
} const vf_priv_dflt = {
|
||||
-1,-1,
|
||||
-1,-1
|
||||
};
|
||||
|
@ -45,7 +45,7 @@
|
||||
static struct vf_priv_s {
|
||||
unsigned int outfmt;
|
||||
int xoff, yoff, lw, lh, band, show;
|
||||
} vf_priv_dflt = {
|
||||
} const vf_priv_dflt = {
|
||||
0,
|
||||
0, 0, 0, 0, 0, 0
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ static struct vf_priv_s {
|
||||
unsigned char *buf;
|
||||
int brightness;
|
||||
int contrast;
|
||||
} vf_priv_dflt = {
|
||||
} const vf_priv_dflt = {
|
||||
NULL,
|
||||
0,
|
||||
0
|
||||
|
@ -33,7 +33,7 @@ static struct vf_priv_s {
|
||||
unsigned char* fb_ptr;
|
||||
int passthrough;
|
||||
int first_slice;
|
||||
} vf_priv_dflt = {
|
||||
} const vf_priv_dflt = {
|
||||
-1,-1,
|
||||
-1,-1,
|
||||
0,
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
static struct vf_priv_s {
|
||||
unsigned int fmt;
|
||||
} vf_priv_dflt = {
|
||||
} const vf_priv_dflt = {
|
||||
IMGFMT_YUY2
|
||||
};
|
||||
|
||||
|
@ -21,7 +21,7 @@ static struct vf_priv_s {
|
||||
uint8_t *buf[2];
|
||||
float hue;
|
||||
float saturation;
|
||||
} vf_priv_dflt = {
|
||||
} const vf_priv_dflt = {
|
||||
{NULL, NULL},
|
||||
0.0,
|
||||
1.0,
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
static struct vf_priv_s {
|
||||
unsigned int fmt;
|
||||
} vf_priv_dflt = {
|
||||
} const vf_priv_dflt = {
|
||||
IMGFMT_YV12
|
||||
};
|
||||
|
||||
|
@ -31,7 +31,7 @@ static struct vf_priv_s {
|
||||
int noup;
|
||||
int accurate_rnd;
|
||||
int query_format_cache[64];
|
||||
} vf_priv_dflt = {
|
||||
} const vf_priv_dflt = {
|
||||
-1,-1,
|
||||
0,
|
||||
{SWS_PARAM_DEFAULT, SWS_PARAM_DEFAULT},
|
||||
|
@ -17,7 +17,7 @@ typedef struct m_struct_st {
|
||||
/// size of the whole struct
|
||||
unsigned int size;
|
||||
/// Pointer to a struct filled with the default settings
|
||||
void* defaults;
|
||||
const void* defaults;
|
||||
/// Field list.
|
||||
/** The p field of the \ref m_option struct must contain the offset
|
||||
* of the member in the struct (use M_ST_OFF macro for this).
|
||||
|
Loading…
Reference in New Issue
Block a user