diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-09-07 01:46:36 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-09-07 01:46:36 -0300 |
commit | 025122531cb66f05517e9d1f98e45df3e993fb76 (patch) | |
tree | bd099628ac4a5b7f086f80443974dbddac91bfc6 /v4l2-apps/libv4l/libv4lconvert/processing/libv4lprocessing.c | |
parent | 0ceb8b67995dcbe0d5cbd99dddd64fad77d5181d (diff) | |
parent | f74e25d0120dfd079832a3224fa46dec4105b3ad (diff) | |
download | mediapointer-dvb-s2-025122531cb66f05517e9d1f98e45df3e993fb76.tar.gz mediapointer-dvb-s2-025122531cb66f05517e9d1f98e45df3e993fb76.tar.bz2 |
merge: http://bitbucket.org/brijohn/v4l-dvb
From: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'v4l2-apps/libv4l/libv4lconvert/processing/libv4lprocessing.c')
-rw-r--r-- | v4l2-apps/libv4l/libv4lconvert/processing/libv4lprocessing.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/v4l2-apps/libv4l/libv4lconvert/processing/libv4lprocessing.c b/v4l2-apps/libv4l/libv4lconvert/processing/libv4lprocessing.c index cbbcca73c..424173ec5 100644 --- a/v4l2-apps/libv4l/libv4lconvert/processing/libv4lprocessing.c +++ b/v4l2-apps/libv4l/libv4lconvert/processing/libv4lprocessing.c @@ -38,8 +38,10 @@ struct v4lprocessing_data *v4lprocessing_create(int fd, struct v4lcontrol_data* struct v4lprocessing_data *data = calloc(1, sizeof(struct v4lprocessing_data)); - if (!data) + if (!data) { + fprintf(stderr, "libv4lprocessing: error: out of memory!\n"); return NULL; + } data->fd = fd; data->control = control; @@ -62,6 +64,8 @@ int v4lprocessing_pre_processing(struct v4lprocessing_data *data) data->do_process = 1; } + data->controls_changed |= v4lcontrol_controls_changed(data->control); + return data->do_process; } @@ -167,9 +171,10 @@ void v4lprocessing_processing(struct v4lprocessing_data *data, return; /* Non supported pix format */ } - if (v4lcontrol_controls_changed(data->control) || + if (data->controls_changed || data->lookup_table_update_counter == V4L2PROCESSING_UPDATE_RATE) { v4lprocessing_update_lookup_tables(data, buf, fmt); + data->controls_changed = 0; data->lookup_table_update_counter = 0; } else data->lookup_table_update_counter++; |