Mercurial > mplayer.hg
comparison libmpcodecs/vf_eq.c @ 22027:0b262e00bc99
Mark m_struct_t defaults as const
author | reimar |
---|---|
date | Sun, 28 Jan 2007 16:48:01 +0000 |
parents | 6334c14b38eb |
children | f8d4f8eff72b |
comparison
equal
deleted
inserted
replaced
22026:cac6e3b0d2e5 | 22027:0b262e00bc99 |
---|---|
19 | 19 |
20 static struct vf_priv_s { | 20 static struct vf_priv_s { |
21 unsigned char *buf; | 21 unsigned char *buf; |
22 int brightness; | 22 int brightness; |
23 int contrast; | 23 int contrast; |
24 } vf_priv_dflt = { | 24 } const vf_priv_dflt = { |
25 NULL, | 25 NULL, |
26 0, | 26 0, |
27 0 | 27 0 |
28 }; | 28 }; |
29 | 29 |