mirror of
https://github.com/mpv-player/mpv
synced 2025-02-27 02:40:53 +00:00
fix clang compiler warnings
This commit is contained in:
parent
6944f2e8bb
commit
428a4243e9
@ -50,7 +50,7 @@ mf_t* open_mf_pattern(char * filename)
|
||||
#if defined(HAVE_GLOB) || defined(__MINGW32__)
|
||||
glob_t gg;
|
||||
int i;
|
||||
char * fname;
|
||||
char * fname = NULL;
|
||||
mf_t * mf;
|
||||
int error_count = 0;
|
||||
int count = 0;
|
||||
|
@ -53,7 +53,7 @@ float sub_fps = 0;
|
||||
void *vo_spudec=NULL;
|
||||
void *vo_vobsub=NULL;
|
||||
|
||||
static const const struct osd_style_opts osd_style_opts_def = {
|
||||
static const struct osd_style_opts osd_style_opts_def = {
|
||||
.font = "Sans",
|
||||
.font_size = 45,
|
||||
.color = {255, 255, 255, 255},
|
||||
|
@ -161,7 +161,7 @@ static struct mp_imgfmt_desc get_avutil_fmt(enum PixelFormat fmt)
|
||||
struct mp_imgfmt_desc desc = {
|
||||
.id = mpfmt,
|
||||
.avformat = fmt,
|
||||
.name = mp_imgfmt_to_name(desc.id),
|
||||
.name = mp_imgfmt_to_name(mpfmt),
|
||||
.chroma_xs = pd->log2_chroma_w,
|
||||
.chroma_ys = pd->log2_chroma_h,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user