Graphics framework for GR-PEACH. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Dependents:   ImageZoomInout_Sample ImageRotaion_Sample ImageScroll_Sample GR-PEACH_LCD_4_3inch_Save_to_USB ... more

License

When you use this library, we judge you have agreed to the following contents.

https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Note

If you import the GraphicsFramework library, please import GR-PEACH_video library and R_BSP library together.



JPEG Converter

The JPEG Converter driver implements encode and decode functionality which uses the JCU of the RZ/A Series.

Hello World!

Import programJCU_HelloWorld

Hello World for JCU(JPEG Codec Unit). JCU is JPEG codec unit of RZ/A1. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

API

Import library

Data Structures

struct bitmap_buff_info_t
Bitmap data setting struct. More...
struct encode_options_t
Encode option setting. More...

Public Types

enum jpeg_conv_error_t {
JPEG_CONV_OK = 0, JPEG_CONV_JCU_ERR = -1, JPEG_CONV_FORMA_ERR = -2, JPEG_CONV_PARAM_ERR = -3,
JPEG_CONV_BUSY = -4, JPEG_CONV_PARAM_RANGE_ERR = -7
}

Error codes.

More...
enum wr_rd_swa_t {
WR_RD_WRSWA_NON = 0, WR_RD_WRSWA_8BIT = 1, WR_RD_WRSWA_16BIT = 2, WR_RD_WRSWA_16_8BIT = 3,
WR_RD_WRSWA_32BIT = 4, WR_RD_WRSWA_32_8BIT = 5, WR_RD_WRSWA_32_16BIT = 6, WR_RD_WRSWA_32_16_8BIT = 7
}

Write/Read image pixcel frame buffer swap setting.

More...
enum wr_rd_format_t { WR_RD_YCbCr422 = 0x00, WR_RD_ARGB8888 = 0x01, WR_RD_RGB565 = 0x02 }

Write/Read image pixcel format selects.

More...
enum sub_sampling_t { SUB_SAMPLING_1_1 = 0x00, SUB_SAMPLING_1_2 = 0x01, SUB_SAMPLING_1_4 = 0x02, SUB_SAMPLING_1_8 = 0x03 }

Thinning output image selects.

More...
enum cbcr_offset_t { CBCR_OFFSET_0 = 0x00, CBCR_OFFSET_128 = 0x01 }

Cb/Cr range selects for decode.

More...

Public Member Functions

JPEG_Converter ()
Constructor method of JPEG converter(encode/decode)
virtual ~JPEG_Converter ()
Destructor method of JPEG converter(encode/decode)
JPEG_Converter::jpeg_conv_error_t decode (void *pJpegBuff, bitmap_buff_info_t *psOutputBuff)
Decode JPEG to rinear data.
JPEG_Converter::jpeg_conv_error_t decode (void *pJpegBuff, bitmap_buff_info_t *psOutputBuff, decode_options_t *pOptions)
JPEG data decode to bitmap.
JPEG_Converter::jpeg_conv_error_t encode ( bitmap_buff_info_t *psInputBuff, void *pJpegBuff, size_t *pEncodeSize)
Encode rinear data to JPEG.
JPEG_Converter::jpeg_conv_error_t encode ( bitmap_buff_info_t *psInputBuff, void *pJpegBuff, size_t *pEncodeSize, encode_options_t *pOptions)
Bitmap data encode to JPEG.
JPEG_Converter::jpeg_conv_error_t SetQuality (const uint8_t qual)
Set encode quality.

Correspondence file

A correspondence file of JPEG Converter is as the following table.

JPEGCorrespondence
Width>0(greater than 0)
Height>0(greater than 0)
Color formatYCbCr444, YCbCr422, YCbCr420, YCbCr411
BitmapCorrespondence
Width>0(greater than 0)
Height>0(greater than 0)
Color formatYCbCr422

Notice

You run JPEG converter once destruction each time.

You set whether these JPEG files aren't input, or it check error setting decode(set in "flag" = true). The JPEG file which becomes correspondence outside will be the following condition.

  • File besides the above-mentioned correspondence file.
  • As information in the JPEG file, WIDTH or HEIGHT is larger than output buffer setting.

Buffer area is used encode/decode, set 8 bytes align and non-cash memory area. The output buffer when decoding, is made beyond the size decided in the size of the JPEG file, the format, setting of thinning out. You make output buffer for decode/encode to enough big size in order to stock this result. JPEG Converter, if you do not particularly perform specified, does not check size against the output data at the time of encoding and decoding. You set the output buffer so that there is no effect of corruption by the output data.

Color format

Color format in case to be converted from Bitmap to JPEG is either ARGB8888 or RGB555, YCbCr422. Color format of the If you want to convert from JPEG file to Bitmap file is YCbCr422. You correct "alpha(member of decode_options_t)" of setting and "output_cb_cr_offset(member of decode_options_t)" according to color format when decoding.

  • example
    decode to ARGB8888(WR_RD_ARGB8888 set in format member of bitmap_buff_info_t)
    alpha = 0x01-0xFF
    output_cb_cr_offset = CBCR_OFFSET_0

    decode to YCbCr422(WR_RD_YCbCr422 set in format member of bitmap_buff_info_t)
    alpha = 0
    output_cb_cr_offset = CBCR_OFFSET_0 or CBCR_OFFSET_128

    decode to RGB565(WR_RD_RGB565 set in format member of bitmap_buff_info_t)
    alpha = 0
    output_cb_cr_offset = CBCR_OFFSET_0

Decode/encode settings are optional

If omitted encode/decode settings, it will work with the following settings.
[Decode option setting (member of decode_options_t)]

  • Vertical sub sampling is thinning output image to 1/1.
  • Horizontal sub sampling is thinning output image to 1/1.
  • Output data of Cb/Cr range is -128 to 127.
  • Output data of swap in 8-bit units: 2-1-4-3-6-5-8-7.
  • Alpha value of 0.
  • JPEG format correspondence outside error check.
  • It decode in a synchronous function.

[Encode option setting (member of encode_options_t)]

  • DRI value is 0.
  • Encoding JPEG file start width offset is 0.
  • Encoding JPEG file start height offset is 0.
  • Input data of Cb/Cr range of input data is -128 to 127.
  • Input data swap in 8-bit units: 2-1-4-3-6-5-8-7.
  • It don't check encode size.
  • Quantization Y use default table(Quality75).
  • Quantization C use default table(Quality75).
  • Huffman Y DC use default table.
  • Huffman C DC use default table.
  • Huffman Y AC use default table.
  • Huffman C AC use default table.
  • It encode in a synchronous function.

Synchronous/asynchronous switching

Decoding and encoding setting to operate asynchronously by setting a callback function(decode_options_t and encode_options_t).

Quality

Quality changes are possible. If you want to change the Quality, please specify the table made of Quality you want to change the address of the setting. If you do not want to change the Quality, it will operate at Quality75.

RGA

The RGA library implements fast drawing functionality which uses the RGA of the RZ/A Series.
Supporting compiler is ARMCC, GCC ARM and IAR.

Hello World!

Import programRGA_HelloWorld

Hello World for RGA(Renesas Graphics Architecture). RGA is the Graphics Library of RZ/A1. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Revision:
0:37e1e6a45ced
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/jcu/inc/r_jcu_api.h	Wed Aug 19 08:58:26 2015 +0000
@@ -0,0 +1,577 @@
+/*******************************************************************************
+* DISCLAIMER
+* This software is supplied by Renesas Electronics Corporation and is only
+* intended for use with Renesas products. No other uses are authorized. This
+* software is owned by Renesas Electronics Corporation and is protected under
+* all applicable laws, including copyright laws.
+* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
+* THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
+* LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
+* AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
+* TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
+* ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
+* FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
+* ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
+* BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+* Renesas reserves the right, without notice, to make changes to this software
+* and to discontinue the availability of this software. By using this software,
+* you agree to the additional terms and conditions found by accessing the
+* following link:
+* http://www.renesas.com/disclaimer
+* Copyright (C) 2012 - 2015 Renesas Electronics Corporation. All rights reserved.
+*******************************************************************************/
+/**
+* @file  r_jcu_api.h
+* @brief   JCU (JPEG hardware) driver API. Main Header.
+*
+* $Module: JCU $ $PublicVersion: 1.00 $ (=JCU_VERSION)
+* $Rev: 38 $
+* $Date:: 2014-03-18 16:14:45 +0900#$
+*/
+
+#ifndef JCU_API_H_
+#define JCU_API_H_
+
+/******************************************************************************
+Includes   <System Includes> , "Project Includes"
+******************************************************************************/
+#include    <stddef.h>
+#include    "r_jcu_user.h"
+#include    "r_ospl.h"
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+/******************************************************************************
+Typedef definitions
+******************************************************************************/
+
+/**
+* @enum   jcu_status_information_t
+* @brief  Status
+*
+*    - JCU_STATUS_UNDEF - 0x00, Undefined
+*    - JCU_STATUS_INIT - 0x01, Initialized
+*    - JCU_STATUS_SELECTED - 0x02, Codec is selected
+*    - JCU_STATUS_READY - 0x08, Ready
+*    - JCU_STATUS_RUN - 0x10, Run
+*    - JCU_STATUS_INTERRUPTING - 0x40, Interrupting
+*    - JCU_STATUS_INTERRUPTED - 0x80, Interrupted
+*/
+typedef enum {
+    JCU_STATUS_UNDEF        = 0x00,
+    JCU_STATUS_INIT         = 0x01,
+    JCU_STATUS_SELECTED     = 0x02,
+    JCU_STATUS_READY        = 0x08,
+    JCU_STATUS_RUN          = 0x10,
+    JCU_STATUS_INTERRUPTING = 0x40,
+    JCU_STATUS_INTERRUPTED  = 0x80
+} jcu_status_information_t;
+
+
+/**
+* @struct  jcu_async_status_t
+* @brief  Status of asynchronize
+*/
+typedef struct st_jcu_async_status_t  jcu_async_status_t;
+struct st_jcu_async_status_t {
+    jcu_status_information_t  Status;
+    bit_flags_fast32_t        SubStatusFlags;
+    bool_t                    IsPaused;
+    bool_t                    IsEnabledInterrupt;
+    r_ospl_flag32_t           InterruptEnables;
+    r_ospl_flag32_t           InterruptFlags;
+    r_ospl_flag32_t           CancelFlags;  /*<r_ospl_cancel_flag_t>*/
+};
+
+
+/* Section: Global */
+/**
+* @enum   SubStatusFlags
+* @brief  Sub Status
+*
+*    - JCU_SUB_INFOMATION_READY - 0x00000008
+*    - JCU_SUB_DECODE_OUTPUT_PAUSE - 0x00000100
+*    - JCU_SUB_DECODE_INPUT_PAUSE - 0x00000200
+*    - JCU_SUB_ENCODE_OUTPUT_PAUSE - 0x00001000
+*    - JCU_SUB_ENCODE_INPUT_PAUSE - 0x00002000
+*/
+#define JCU_SUB_INFOMATION_READY    0x00000008
+#define JCU_SUB_DECODE_OUTPUT_PAUSE 0x00000100
+#define JCU_SUB_DECODE_INPUT_PAUSE  0x00000200
+#define JCU_SUB_ENCODE_OUTPUT_PAUSE 0x00001000
+#define JCU_SUB_ENCODE_INPUT_PAUSE  0x00002000
+
+
+/**
+* @def  jcu_interrupt_line_t
+* @brief  Interrupt Lines
+*
+*    - JCU_INTERRUPT_LINE_JEDI - 1
+*    - JCU_INTERRUPT_LINE_JDTI - 2
+*    - JCU_INTERRUPT_LINE_ALL - 1 | 2
+*/
+typedef uint_fast32_t  jcu_interrupt_line_t;
+#define  JCU_INTERRUPT_LINE_JEDI  0x00000001u
+#define  JCU_INTERRUPT_LINE_JDTI  0x00000002u
+#define  JCU_INTERRUPT_LINE_ALL \
+    ( JCU_INTERRUPT_LINE_JEDI | JCU_INTERRUPT_LINE_JDTI )
+
+
+/**
+* @typedef  jcu_interrupt_lines_t
+* @brief  Bit flags of <jcu_interrupt_line_t>
+*/
+typedef bit_flags_fast32_t /*<jcu_interrupt_line_t>*/  jcu_interrupt_lines_t;
+
+
+/******************************************************************************
+Macro definitions
+******************************************************************************/
+
+
+/**
+* @def  JCU_VERSION
+* @brief  VERSION
+* @par Parameters
+*    None
+* @return  None.
+*/
+#define JCU_VERSION  100
+
+
+/**
+* @def  JCU_VERSION_STRING
+* @brief  String of <JCU_VERSION>
+* @par Parameters
+*    None
+* @return  None.
+*/
+#define JCU_VERSION_STRING  "1.00"
+
+
+/**
+* @def  JCU_INT_TYPE_NUM
+* @brief  The number of the interrupt source
+* @par Parameters
+*    None
+* @return  None.
+*/
+#define JCU_INT_TYPE_NUM  0x0009
+
+
+/**
+* @def  JCU_COLOR_ELEMENT_NUM
+* @brief  Y,Cb and Cr
+* @par Parameters
+*    None
+* @return  None.
+*/
+#define JCU_COLOR_ELEMENT_NUM   3
+
+
+/******************************************************************************
+Struct & Enum definitions
+******************************************************************************/
+
+/**
+* @enum   jcu_errorcode_t
+* @brief  Error code of JCU driver
+*
+*    - JCU_ERROR_OK - 0
+*    - JCU_ERROR_PARAM - 0x4501
+*    - JCU_ERROR_STATUS - 0x4502
+*    - JCU_ERROR_CODEC_TYPE - 0x4503
+*    - JCU_ERROR_LIMITATION - 0x4504
+*/
+enum { E_CATEGORY_JCU_ERR = 0x4500 };  /* Offset of JCU error code */
+typedef errnum_t  jcu_errorcode_t;
+enum {
+    JCU_ERROR_OK            = 0x0000,
+    JCU_ERROR_PARAM         = 0x4501,
+    JCU_ERROR_STATUS        = 0x4502,
+    JCU_ERROR_CODEC_TYPE    = 0x4503,
+    JCU_ERROR_LIMITATION    = 0x4504
+};
+
+
+/**
+* @enum   jcu_detail_error_t
+* @brief  Kind of detailed error for decoding
+*
+*    - JCU_JCDERR_OK - 0x0000
+*    - JCU_JCDERR_SOI_NOT_FOUND - 0x4521
+*    - JCU_JCDERR_INVALID_SOF - 0x4522
+*    - JCU_JCDERR_UNPROVIDED_SOF - 0x4523
+*    - JCU_JCDERR_SOF_ACCURACY - 0x4524
+*    - JCU_JCDERR_DQT_ACCURACY - 0x4525
+*    - JCU_JCDERR_COMPONENT_1 - 0x4526
+*    - JCU_JCDERR_COMPONENT_2 - 0x4527
+*    - JCU_JCDERR_NO_SOF0_DQT_DHT - 0x4528
+*    - JCU_JCDERR_SOS_NOT_FOUND - 0x4529
+*    - JCU_JCDERR_EOI_NOT_FOUND - 0x452A
+*    - JCU_JCDERR_RESTART_INTERVAL - 0x452B
+*    - JCU_JCDERR_IMAGE_SIZE - 0x452C
+*    - JCU_JCDERR_LAST_MCU_DATA - 0x452D
+*    - JCU_JCDERR_BLOCK_DATA - 0x452E
+*/
+enum { E_CATEGORY_JCU_JCDERR = 0x4520 };  /* Offset of JCU detail error code */
+typedef errnum_t  jcu_detail_error_t;
+enum {
+    JCU_JCDERR_OK                = 0x0000,
+    JCU_JCDERR_SOI_NOT_FOUND     = 0x4521,
+    JCU_JCDERR_INVALID_SOF       = 0x4522,
+    JCU_JCDERR_UNPROVIDED_SOF    = 0x4523,
+    JCU_JCDERR_SOF_ACCURACY      = 0x4524,
+    JCU_JCDERR_DQT_ACCURACY      = 0x4525,
+    JCU_JCDERR_COMPONENT_1       = 0x4526,
+    JCU_JCDERR_COMPONENT_2       = 0x4527,
+    JCU_JCDERR_NO_SOF0_DQT_DHT   = 0x4528,
+    JCU_JCDERR_SOS_NOT_FOUND     = 0x4529,
+    JCU_JCDERR_EOI_NOT_FOUND     = 0x452A,
+    JCU_JCDERR_RESTART_INTERVAL  = 0x452B,
+    JCU_JCDERR_IMAGE_SIZE        = 0x452C,
+    JCU_JCDERR_LAST_MCU_DATA     = 0x452D,
+    JCU_JCDERR_BLOCK_DATA        = 0x452E
+};
+
+
+/**
+* @enum   jcu_codec_t
+* @brief  The type of codec
+*
+*    - JCU_ENCODE - 0
+*    - JCU_DECODE - 1
+*/
+typedef enum {
+    JCU_ENCODE  = 0,
+    JCU_DECODE  = 1
+} jcu_codec_t;
+
+
+/**
+* @struct  jcu_count_mode_param_t
+* @brief  Buffer settings for separating decode or encode
+*/
+typedef struct {
+    struct {
+        /** true: It uses the count mode process. */
+        bool_t      isEnable;
+
+        /** Address is changed when processing is stopped. */
+        bool_t      isInitAddress;
+
+        /** This is enable when isInitAddrss is true. */
+        uint32_t   *restartAddress;
+
+        /** Encode:8line Decode:8byte. */
+        uint32_t    dataCount;
+
+    } inputBuffer;
+
+    struct {
+        /** true: It uses the count mode process. */
+        bool_t      isEnable;
+
+        /** Address is changed when processing is stopped. */
+        bool_t      isInitAddress;      /*    */
+
+        /** This is enable when isInitAddress is true. */
+        uint32_t    *restartAddress;    /*     */
+
+        /** Encode:8byte Decode:8line. */
+        uint32_t    dataCount;
+
+    } outputBuffer;
+} jcu_count_mode_param_t;
+
+
+/* Section: Global */
+/**
+* @enum   jcu_continue_type_t
+* @brief  Type of continue buffer
+*
+*    - JCU_INPUT_BUFFER - 0
+*    - JCU_OUTPUT_BUFFER - 1
+*    - JCU_IMAGE_INFO - 2
+*/
+typedef enum {
+    JCU_INPUT_BUFFER,
+    JCU_OUTPUT_BUFFER,
+    JCU_IMAGE_INFO
+} jcu_continue_type_t;
+
+
+/**
+* @def  jcu_int_detail_error_t
+* @brief  Bit flags of detail error
+*
+*    - JCU_INT_ERROR_RESTART_INTERVAL_DATA - INT7_MASK
+*    - JCU_INT_ERROR_SEGMENT_TOTAL_DATA - INT6_MASK
+*    - JCU_INT_ERROR_MCU_BLOCK_DATA - INT5_MASK
+*    - JCU_INT_ERROR_ALL - e.g. for mask
+*/
+typedef uint_fast32_t  jcu_int_detail_error_t;
+#define JCU_INT_ERROR_RESTART_INTERVAL_DATA  (0x80u)
+#define JCU_INT_ERROR_SEGMENT_TOTAL_DATA     (0x40u)
+#define JCU_INT_ERROR_MCU_BLOCK_DATA         (0x20u)
+#define JCU_INT_ERROR_ALL \
+	( JCU_INT_ERROR_RESTART_INTERVAL_DATA | JCU_INT_ERROR_SEGMENT_TOTAL_DATA | \
+	JCU_INT_ERROR_MCU_BLOCK_DATA )
+
+
+/**
+* @typedef  jcu_int_detail_errors_t
+* @brief  Bit flags of detail error
+*/
+typedef bit_flags_fast32_t /*<jcu_int_detail_error_t>*/  jcu_int_detail_errors_t;
+
+
+/**
+* @enum   jcu_swap_t
+* @brief  SampleEnum
+*
+*    - SymbolA - 0, NULL
+*    - SymbolB - 1
+*/
+typedef int_t jcu_swap_t;
+#define JCU_SWAP_NONE                           (0x00)
+#define JCU_SWAP_BYTE                           (0x01)
+#define JCU_SWAP_WORD                           (0x02)
+#define JCU_SWAP_WORD_AND_BYTE                  (0x03)
+#define JCU_SWAP_LONG_WORD                      (0x04)
+#define JCU_SWAP_LONG_WORD_AND_BYTE             (0x05)
+#define JCU_SWAP_LONG_WORD_AND_WORD             (0x06)
+#define JCU_SWAP_LONG_WORD_AND_WORD_AND_BYTE    (0x07)
+
+
+/**
+* @struct  jcu_buffer_t
+* @brief  Buffer settings
+*/
+typedef struct {
+    jcu_swap_t    swapSetting;
+    uint32_t     *address;
+} jcu_buffer_t;
+
+
+/**
+* @struct  jcu_buffer_param_t
+* @brief  Buffer parameter for input and output
+*/
+typedef struct {
+    jcu_buffer_t  source;
+    jcu_buffer_t  destination;
+    int16_t       lineOffset;
+} jcu_buffer_param_t;
+
+
+/* Section: Global */
+/**
+* @enum   jcu_sub_sampling_t
+* @brief  Sub sampling settings for decoding
+*
+*    - JCU_SUB_SAMPLING_1_1 - 0x00 = 1/1
+*    - JCU_SUB_SAMPLING_1_2 - 0x01 = 1/2
+*    - JCU_SUB_SAMPLING_1_4 - 0x02 = 1/4
+*    - JCU_SUB_SAMPLING_1_8 - 0x03 = 1/8
+*/
+typedef enum {
+    JCU_SUB_SAMPLING_1_1 = 0x00,
+    JCU_SUB_SAMPLING_1_2 = 0x01,
+    JCU_SUB_SAMPLING_1_4 = 0x02,
+    JCU_SUB_SAMPLING_1_8 = 0x03
+} jcu_sub_sampling_t;
+
+
+/**
+* @enum   jcu_decode_format_t
+* @brief  Kind of pixel format can process the decoding
+*
+*    - JCU_OUTPUT_YCbCr422 - 0x00
+*    - JCU_OUTPUT_ARGB8888 - 0x01
+*    - JCU_OUTPUT_RGB565 - 0x02
+*/
+typedef enum {
+    JCU_OUTPUT_YCbCr422 = 0x00,
+    JCU_OUTPUT_ARGB8888 = 0x01,
+    JCU_OUTPUT_RGB565   = 0x02
+} jcu_decode_format_t;
+
+
+/**
+* @enum   jcu_cbcr_offset_t
+* @brief  Cb/Cr offset
+*
+*    - JCU_CBCR_OFFSET_0 - 0 = No offset
+*    - JCU_CBCR_OFFSET_128 - 1 = +128 offset
+*/
+typedef enum {
+    JCU_CBCR_OFFSET_0 = 0,
+    JCU_CBCR_OFFSET_128 = 1
+} jcu_cbcr_offset_t;
+
+
+/**
+* @enum   jcu_jpeg_format_t
+* @brief  Kind of pixel format for the jpeg file format when decoding
+*
+*    - JCU_JPEG_YCbCr444 - 0
+*    - JCU_JPEG_YCbCr422 - 1
+*    - JCU_JPEG_YCbCr420 - 2
+*    - JCU_JPEG_YCbCr411 - 6
+*/
+typedef enum {
+    JCU_JPEG_YCbCr444   = 0x00,
+    JCU_JPEG_YCbCr422   = 0x01,
+    JCU_JPEG_YCbCr420   = 0x02,
+    JCU_JPEG_YCbCr411   = 0x06
+} jcu_jpeg_format_t;
+
+
+/**
+* @struct  jcu_image_info_t
+* @brief  Image information data store variable
+*/
+typedef struct {
+    uint32_t            width;
+    uint32_t            height;
+    jcu_jpeg_format_t   encodedFormat;
+} jcu_image_info_t;
+
+
+/* Section: Global */
+/**
+* @enum   jcu_table_no_t
+* @brief  The index of the table
+*
+*    - JCU_TABLE_NO_0 - 0
+*    - JCU_TABLE_NO_1 - 1
+*    - JCU_TABLE_NO_2 - 2
+*    - JCU_TABLE_NO_3 - 3
+*/
+typedef enum {
+    JCU_TABLE_NO_0 = 0,
+    JCU_TABLE_NO_1 = 1,
+    JCU_TABLE_NO_2 = 2,
+    JCU_TABLE_NO_3 = 3
+} jcu_table_no_t;
+
+
+/**
+* @enum   jcu_huff_t
+* @brief  Kind of Huffman table
+*
+*    - JCU_HUFFMAN_AC - 0
+*    - JCU_HUFFMAN_DC - 1
+*/
+typedef enum {
+    JCU_HUFFMAN_AC,
+    JCU_HUFFMAN_DC
+} jcu_huff_t;
+
+
+/**
+* @enum   jcu_color_element_t
+* @brief  Kind of color data for using the encoder parameter
+*
+*    - JCU_ELEMENT_Y - 0
+*    - JCU_ELEMENT_Cb - 1
+*    - JCU_ELEMENT_Cr - 2
+*/
+typedef enum {
+    JCU_ELEMENT_Y,
+    JCU_ELEMENT_Cb,
+    JCU_ELEMENT_Cr
+} jcu_color_element_t;
+
+
+/**
+* @struct  jcu_decode_param_t
+* @brief  Setting parameter for the Decoding
+*/
+typedef struct {
+    jcu_sub_sampling_t  verticalSubSampling;
+    jcu_sub_sampling_t  horizontalSubSampling;
+    jcu_decode_format_t decodeFormat;
+    jcu_cbcr_offset_t   outputCbCrOffset;
+    uint8_t             alpha;
+} jcu_decode_param_t;
+
+
+/**
+* @struct  jcu_encode_param_t
+* @brief  Setting parameter for the Encoding
+*/
+typedef struct {
+    jcu_jpeg_format_t   encodeFormat;
+    int32_t             QuantizationTable[JCU_COLOR_ELEMENT_NUM];
+    int32_t             HuffmanTable[JCU_COLOR_ELEMENT_NUM];
+    uint32_t            DRI_value;
+    uint32_t            width;
+    uint32_t            height;
+    jcu_cbcr_offset_t   inputCbCrOffset;
+} jcu_encode_param_t;
+
+
+/* Section: Global */
+/**
+* @enum   jcu_codec_status_t
+* @brief  Codec type
+*
+*    - JCU_CODEC_NOT_SELECTED - -1
+*    - JCU_STATUS_ENCODE - 0
+*    - JCU_STATUS_DECODE - 1
+*/
+typedef enum {
+    JCU_CODEC_NOT_SELECTED  = -1,
+    JCU_STATUS_ENCODE       = 0,
+    JCU_STATUS_DECODE       = 1
+} jcu_codec_status_t;
+
+
+/******************************************************************************
+Variable Externs
+******************************************************************************/
+
+/******************************************************************************
+Imported global variables and functions (from other files)
+******************************************************************************/
+
+/******************************************************************************
+Functions Prototypes
+******************************************************************************/
+jcu_errorcode_t R_JCU_Initialize( void *const  NullConfig );
+jcu_errorcode_t R_JCU_Terminate(void);
+jcu_errorcode_t R_JCU_TerminateAsync( r_ospl_async_t *const  async );
+jcu_errorcode_t R_JCU_SelectCodec(const jcu_codec_t codec);
+jcu_errorcode_t R_JCU_Start(void);
+jcu_errorcode_t R_JCU_StartAsync( r_ospl_async_t *const  async );
+jcu_errorcode_t R_JCU_SetCountMode(const jcu_count_mode_param_t *const buffer);
+jcu_errorcode_t R_JCU_Continue(const jcu_continue_type_t type);
+jcu_errorcode_t R_JCU_ContinueAsync(const jcu_continue_type_t type, r_ospl_async_t *const  async);
+void            R_JCU_GetAsyncStatus(const jcu_async_status_t **const  out_Status);
+jcu_errorcode_t R_JCU_SetDecodeParam(const jcu_decode_param_t *const decode, const jcu_buffer_param_t *const buffer);
+jcu_errorcode_t R_JCU_SetPauseForImageInfo(const bool_t is_pause);
+jcu_errorcode_t R_JCU_GetImageInfo(jcu_image_info_t *const buffer);
+jcu_errorcode_t R_JCU_SetErrorFilter(jcu_int_detail_errors_t filter);
+jcu_errorcode_t R_JCU_SetQuantizationTable(const jcu_table_no_t tableNo, const uint8_t *const table);
+jcu_errorcode_t R_JCU_SetHuffmanTable(const jcu_table_no_t tableNo, const jcu_huff_t type, const uint8_t *const table);
+jcu_errorcode_t R_JCU_SetEncodeParam(const jcu_encode_param_t *const encode, const jcu_buffer_param_t *const buffer);
+jcu_errorcode_t R_JCU_GetEncodedSize(size_t *const out_Size);
+jcu_errorcode_t R_JCU_Set2ndCacheAttribute( r_ospl_axi_cache_attribute_t const  read_cache_attribute,
+        r_ospl_axi_cache_attribute_t const  write_cache_attribute );
+
+#ifndef R_OSPL_NDEBUG
+void            R_JCU_PrintRegisters(void);
+#endif
+
+/* For interrupt callback */
+errnum_t        R_JCU_OnInterrupting( const r_ospl_interrupt_t *const  InterruptSource );
+errnum_t        R_JCU_OnInterrupted(void);
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* #define JCU_API_H_ */