diff options
author | Veeresh Kadasani <external.vkadasani@jp.adit-jv.com> | 2019-05-31 11:14:15 +0900 |
---|---|---|
committer | Veeresh Kadasani <external.vkadasani@jp.adit-jv.com> | 2019-07-16 08:52:53 +0000 |
commit | f332b6c0b04157d3472e1e8061cb7fb4aa3e8658 (patch) | |
tree | bece2b2ecdc6f77e09d4b98a4292e7cb19eed6fb /waltham-receiver/include/bitmap.h | |
parent | 5498049f5edcd05d4ebf4e856949b651c4543207 (diff) |
receiver: Introduce waltham-receiverguppy_7.0.4guppy/7.0.47.0.4guppy
NewFeature-AGL: SPEC-2445
waltham-receiver sample component is a receiver
side implementation for using waltham protocol to
obtain and process remote output received from
waltham-transmitter
Change-Id: I85983a0ac41c3a086f43fb5912e23f95609e3559
Signed-off-by: Veeresh Kadasani <external.vkadasani@jp.adit-jv.com>
Signed-off-by: Naoko Tanibata <tnaoko@jp.adit-jv.com>
(cherry picked from commit 3344b0a0696c2670ccdc7fa9fb619efdf3764fca)
Diffstat (limited to 'waltham-receiver/include/bitmap.h')
-rw-r--r-- | waltham-receiver/include/bitmap.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/waltham-receiver/include/bitmap.h b/waltham-receiver/include/bitmap.h new file mode 100644 index 0000000..3cef52d --- /dev/null +++ b/waltham-receiver/include/bitmap.h @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2013 DENSO CORPORATION + * + * Permission to use, copy, modify, distribute, and sell this software and + * its documentation for any purpose is hereby granted without fee, provided + * that the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation, and that the name of the copyright holders not be used in + * advertising or publicity pertaining to distribution of the software + * without specific, written prior permission. The copyright holders make + * no representations about the suitability of this software for any + * purpose. It is provided "as is" without express or implied warranty. + * + * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS + * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY + * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF + * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ +#ifndef IVICONTROLLER_BITMAP_H_ +#define IVICONTROLLER_BITMAP_H_ + +#include <stdint.h> + +int save_as_bitmap(const char *filename, + const char *buffer, + int32_t image_size, + int32_t width, + int32_t height, + int16_t bpp + ); + +#endif /* IVICONTROLLER_BITMAP_H_*/ |