summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Farago <sensej007@email.cz>2020-08-28 10:27:12 +0200
committerTomas Farago <sensej007@email.cz>2020-08-28 10:27:12 +0200
commitcf7c901538161a9ce57b357691b9a7da40677a0a (patch)
tree7e7828450bb675d964d974ad68df790c4dab7378
parent92da777e1160d78acb5caf848c800cb759780937 (diff)
downloadufo-filters-cf7c901538161a9ce57b357691b9a7da40677a0a.tar.gz
ufo-filters-cf7c901538161a9ce57b357691b9a7da40677a0a.tar.bz2
ufo-filters-cf7c901538161a9ce57b357691b9a7da40677a0a.tar.xz
ufo-filters-cf7c901538161a9ce57b357691b9a7da40677a0a.zip
read: make raw defaults the same as in raw-reader
-rw-r--r--src/ufo-read-task.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ufo-read-task.c b/src/ufo-read-task.c
index 39ed649..17290ae 100644
--- a/src/ufo-read-task.c
+++ b/src/ufo-read-task.c
@@ -637,21 +637,21 @@ ufo_read_task_class_init(UfoReadTaskClass *klass)
g_param_spec_uint ("raw-width",
"Width of raw image",
"Width of raw image",
- 0, G_MAXUINT, G_MAXUINT,
+ 0, G_MAXUINT, 0,
G_PARAM_READWRITE);
properties[PROP_RAW_HEIGHT] =
g_param_spec_uint ("raw-height",
"Height of raw image",
"Height of raw image",
- 0, G_MAXUINT, G_MAXUINT,
+ 0, G_MAXUINT, 0,
G_PARAM_READWRITE);
properties[PROP_RAW_BITDEPTH] =
g_param_spec_uint ("raw-bitdepth",
"Bitdepth of raw image",
"Bitdepth of raw image",
- 0, G_MAXUINT, G_MAXUINT,
+ 0, G_MAXUINT, UFO_BUFFER_DEPTH_INVALID,
G_PARAM_READWRITE);
properties[PROP_RAW_PRE_OFFSET] =