comparison libmpcodecs/vf_format.c @ 22027:0b262e00bc99

Mark m_struct_t defaults as const
author reimar
date Sun, 28 Jan 2007 16:48:01 +0000
parents bcd805923554
children 00fff9a3b735
comparison
equal deleted inserted replaced
22026:cac6e3b0d2e5 22027:0b262e00bc99
14 #include "m_option.h" 14 #include "m_option.h"
15 #include "m_struct.h" 15 #include "m_struct.h"
16 16
17 static struct vf_priv_s { 17 static struct vf_priv_s {
18 unsigned int fmt; 18 unsigned int fmt;
19 } vf_priv_dflt = { 19 } const vf_priv_dflt = {
20 IMGFMT_YUY2 20 IMGFMT_YUY2
21 }; 21 };
22 22
23 //===========================================================================// 23 //===========================================================================//
24 24