changeset 22027:0b262e00bc99

Mark m_struct_t defaults as const
author reimar
date Sun, 28 Jan 2007 16:48:01 +0000
parents cac6e3b0d2e5
children 24dc4ec0d08d
files libmpcodecs/vf_ass.c libmpcodecs/vf_crop.c libmpcodecs/vf_delogo.c libmpcodecs/vf_eq.c libmpcodecs/vf_expand.c libmpcodecs/vf_format.c libmpcodecs/vf_hue.c libmpcodecs/vf_noformat.c libmpcodecs/vf_scale.c m_struct.h
diffstat 10 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_ass.c	Sun Jan 28 16:36:41 2007 +0000
+++ b/libmpcodecs/vf_ass.c	Sun Jan 28 16:48:01 2007 +0000
@@ -64,7 +64,7 @@
 
 	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;
--- a/libmpcodecs/vf_crop.c	Sun Jan 28 16:36:41 2007 +0000
+++ b/libmpcodecs/vf_crop.c	Sun Jan 28 16:48:01 2007 +0000
@@ -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
 };
--- a/libmpcodecs/vf_delogo.c	Sun Jan 28 16:36:41 2007 +0000
+++ b/libmpcodecs/vf_delogo.c	Sun Jan 28 16:48:01 2007 +0000
@@ -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
 };
--- a/libmpcodecs/vf_eq.c	Sun Jan 28 16:36:41 2007 +0000
+++ b/libmpcodecs/vf_eq.c	Sun Jan 28 16:48:01 2007 +0000
@@ -21,7 +21,7 @@
 	unsigned char *buf;
 	int brightness;
 	int contrast;
-} vf_priv_dflt = {
+} const vf_priv_dflt = {
   NULL,
   0,
   0
--- a/libmpcodecs/vf_expand.c	Sun Jan 28 16:36:41 2007 +0000
+++ b/libmpcodecs/vf_expand.c	Sun Jan 28 16:48:01 2007 +0000
@@ -33,7 +33,7 @@
     unsigned char* fb_ptr;
     int passthrough;
     int first_slice;
-} vf_priv_dflt = {
+} const vf_priv_dflt = {
   -1,-1,
   -1,-1,
   0,
--- a/libmpcodecs/vf_format.c	Sun Jan 28 16:36:41 2007 +0000
+++ b/libmpcodecs/vf_format.c	Sun Jan 28 16:48:01 2007 +0000
@@ -16,7 +16,7 @@
 
 static struct vf_priv_s {
     unsigned int fmt;
-} vf_priv_dflt = {
+} const vf_priv_dflt = {
   IMGFMT_YUY2
 };
 
--- a/libmpcodecs/vf_hue.c	Sun Jan 28 16:36:41 2007 +0000
+++ b/libmpcodecs/vf_hue.c	Sun Jan 28 16:48:01 2007 +0000
@@ -21,7 +21,7 @@
 	uint8_t *buf[2];
 	float hue;
 	float saturation;
-} vf_priv_dflt = {
+} const vf_priv_dflt = {
   {NULL, NULL},
   0.0,
   1.0,
--- a/libmpcodecs/vf_noformat.c	Sun Jan 28 16:36:41 2007 +0000
+++ b/libmpcodecs/vf_noformat.c	Sun Jan 28 16:48:01 2007 +0000
@@ -16,7 +16,7 @@
 
 static struct vf_priv_s {
     unsigned int fmt;
-} vf_priv_dflt = {
+} const vf_priv_dflt = {
   IMGFMT_YV12
 };
 
--- a/libmpcodecs/vf_scale.c	Sun Jan 28 16:36:41 2007 +0000
+++ b/libmpcodecs/vf_scale.c	Sun Jan 28 16:48:01 2007 +0000
@@ -31,7 +31,7 @@
     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},
--- a/m_struct.h	Sun Jan 28 16:36:41 2007 +0000
+++ b/m_struct.h	Sun Jan 28 16:48:01 2007 +0000
@@ -17,7 +17,7 @@
   /// 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).