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

RGA/RGPNCG/src/ncg_vg_isr.c

Committer:
dkato
Date:
2017-04-24
Revision:
13:1ee2176ef13f
Parent:
3:9f857750e4e9

File content as of revision 13:1ee2176ef13f:

/******************************************************************************
* Copyright(c) 2010-2015 Renesas Electronics Corporation. All rights reserved.
*
* brief  : R-GPVG control functions
*
* author : Renesas Electronics Corporation
*
* history: 2010.10.08
*          - Created the initial code.
*          2011.03.07
*          - Fixed bug : NCGVG_Detach_ISR / [R-GPVG_common_P_033]
*          2012.08.22
*          - Moved definition to "ncg_vg_isr.h".
*            - RGPVG_INT_LEVEL
*          - Moved definition to "ncg_register.h".
*            - RTIP_VG_BASE
*            - VG_REG_VG_ISR
*          2012.08.22
*          - Added error message in the debug mode.
*          - Update all comments
*          2013.02.21
*          - Modified the argument of the NCGVG_RGPVG_ISR.
*          - Modified the call to R_INTC_RegistIntFunc function
*            by NCGVG_Attach_ISR.
*          2014.12.22
*          - Applied to OSPL and RGA.
*
*******************************************************************************/


/*=============================================================================
 * Includes
 */

#include "Project_Config.h"
#include    "ncg_defs.h"
#include    "ncg_debug.h"
#include    "ncg_vg_isr.h"
#include    "RGA.h"

/* Depending on the build environment */
#include    "r_typedefs.h"
#include    "r_ospl.h"

#ifdef  RGAH_VERSION

/*=============================================================================
 * Internal definitions
 */


/*=============================================================================
 *  Prototyping of internal functions
 */
static void NCGVG_RGPVG_ISR(void) ;
static void NCGVG_RGPVG_ISR_0(void) ;
static void NCGVG_RGPVG_ISR_1(void) ;
static void NCGVG_RGPVG_ISR_2(void) ;
static void NCGVG_RGPVG_ISR_3(void) ;


/*=============================================================================
 *  Private global variables and functions
 */
static NCGboolean NCGVG_ISR_Initialized  = NCG_FALSE ;
static NCGVGISRfp NCGVG_pRGPVG_Interrupt = NCG_NULL ;


/*=============================================================================
 *  Global Function
 */

/*----------------------------------------------------------------------------
 NAME       : NCGVG_Attach_ISR
 FUNCTION   : Attach the function pointer of OpenVG ISR.
 PARAMETERS : pfnInterrupt : [IN ] The pointer to the function of OpenVG ISR.
 RETURN     : Error code of the NCG.
------------------------------------------------------------------------------*/
NCGint32
NCGVG_Attach_ISR(
    NCGVGISRfp      pfnInterrupt )
{
    NCGint32        rc_val = NCG_no_err;
    bsp_int_err_t   eb;
    errnum_t        e;

    NCG_DEBUG_PRINT_STRING( "[LOG] NCGVG_Attach_ISR" );

    NCG_ASSERT(pfnInterrupt != NCG_NULL);

    if( NCGVG_ISR_Initialized != NCG_FALSE ) {
        NCG_DEBUG_MAKE_MSG_START( NCG_G_MASSAGE_BUFF, "[NCG][ERROR]NCGVG_Attach_ISR(1) Initialized.%s" )
        NCG_DEBUG_MAKE_MSG_PARAMETER( NCG_CRLF )
        NCG_DEBUG_MAKE_MSG_END();
        NCG_DEBUG_PRINT_MSG( NCG_G_MASSAGE_BUFF );
        rc_val = NCG_err_isr_management_failed ;
    } else {
        NCGVG_ISR_Initialized  = NCG_TRUE ;
        NCGVG_pRGPVG_Interrupt = pfnInterrupt ;

        /* Regist function */
        eb= R_BSP_InterruptWrite( BSP_INT_SRC_INT0, NCGVG_RGPVG_ISR_0 );
        IF ( eb != BSP_INT_SUCCESS ) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
        eb= R_BSP_InterruptWrite( BSP_INT_SRC_INT1, NCGVG_RGPVG_ISR_1 );
        IF ( eb != BSP_INT_SUCCESS ) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
        eb= R_BSP_InterruptWrite( BSP_INT_SRC_INT2, NCGVG_RGPVG_ISR_2 );
        IF ( eb != BSP_INT_SUCCESS ) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
        eb= R_BSP_InterruptWrite( BSP_INT_SRC_INT3, NCGVG_RGPVG_ISR_3 );
        IF ( eb != BSP_INT_SUCCESS ) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }

        /* set priority */
        e= R_OSPL_SetInterruptPriority( BSP_INT_SRC_INT0, NCGVG_INT_LEVEL );
        IF(e) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
        e= R_OSPL_SetInterruptPriority( BSP_INT_SRC_INT1, NCGVG_INT_LEVEL );
        IF(e) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
        e= R_OSPL_SetInterruptPriority( BSP_INT_SRC_INT2, NCGVG_INT_LEVEL );
        IF(e) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
        e= R_OSPL_SetInterruptPriority( BSP_INT_SRC_INT3, NCGVG_INT_LEVEL );
        IF(e) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }

        /* Enable interrupt from Renesas OpenVG library */
        eb= R_BSP_InterruptControl( BSP_INT_SRC_INT0, BSP_INT_CMD_INTERRUPT_ENABLE, FIT_NO_PTR );
        IF ( eb != BSP_INT_SUCCESS ) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
        eb= R_BSP_InterruptControl( BSP_INT_SRC_INT1, BSP_INT_CMD_INTERRUPT_ENABLE, FIT_NO_PTR );
        IF ( eb != BSP_INT_SUCCESS ) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
        eb= R_BSP_InterruptControl( BSP_INT_SRC_INT2, BSP_INT_CMD_INTERRUPT_ENABLE, FIT_NO_PTR );
        IF ( eb != BSP_INT_SUCCESS ) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
        eb= R_BSP_InterruptControl( BSP_INT_SRC_INT3, BSP_INT_CMD_INTERRUPT_ENABLE, FIT_NO_PTR );
        IF ( eb != BSP_INT_SUCCESS ) {
            rc_val = NCG_err_isr_management_failed;
            goto fin;
        }
    }

fin:
    return rc_val;
}


/*----------------------------------------------------------------------------
 NAME       : NCGVG_Detach_ISR
 FUNCTION   : Detach the function pointer of OpenVG ISR.
 PARAMETERS : pfnInterrupt : [IN ] The pointer to the function of OpenVG ISR.
 RETURN     : Error code of the NCG.
------------------------------------------------------------------------------*/
NCGint32
NCGVG_Detach_ISR(
    NCGVGISRfp      pfnInterrupt )
{
    NCGint32        rc_val = NCG_no_err;
    bsp_int_err_t   eb;

    NCG_DEBUG_PRINT_STRING( "[LOG] NCGVG_Detach_ISR" );

    NCG_ASSERT(pfnInterrupt != NCG_NULL);

    if ( NCGVG_ISR_Initialized == NCG_FALSE ) {
        NCG_DEBUG_MAKE_MSG_START( NCG_G_MASSAGE_BUFF, "[NCG][ERROR]NCGVG_Detach_ISR(1) Not initialized.%s" )
        NCG_DEBUG_MAKE_MSG_PARAMETER( NCG_CRLF )
        NCG_DEBUG_MAKE_MSG_END();
        NCG_DEBUG_PRINT_MSG( NCG_G_MASSAGE_BUFF );
        rc_val = NCG_err_isr_management_failed;
    } else {
        NCGVG_ISR_Initialized = NCG_FALSE ;

        if( pfnInterrupt == NCGVG_pRGPVG_Interrupt ) {
            /* Disable interrupt from Renesas OpenVG library */
            eb= R_BSP_InterruptControl( BSP_INT_SRC_INT3, BSP_INT_CMD_INTERRUPT_DISABLE, FIT_NO_PTR );
            IF ( eb != BSP_INT_SUCCESS ) {
                rc_val = NCG_err_isr_management_failed;
                goto fin;
            }
            eb= R_BSP_InterruptControl( BSP_INT_SRC_INT2, BSP_INT_CMD_INTERRUPT_DISABLE, FIT_NO_PTR );
            IF ( eb != BSP_INT_SUCCESS ) {
                rc_val = NCG_err_isr_management_failed;
                goto fin;
            }
            eb= R_BSP_InterruptControl( BSP_INT_SRC_INT1, BSP_INT_CMD_INTERRUPT_DISABLE, FIT_NO_PTR );
            IF ( eb != BSP_INT_SUCCESS ) {
                rc_val = NCG_err_isr_management_failed;
                goto fin;
            }
            eb= R_BSP_InterruptControl( BSP_INT_SRC_INT0, BSP_INT_CMD_INTERRUPT_DISABLE, FIT_NO_PTR );
            IF ( eb != BSP_INT_SUCCESS ) {
                rc_val = NCG_err_isr_management_failed;
                goto fin;
            }

            /* Unregist function */
            eb= R_BSP_InterruptWrite( BSP_INT_SRC_INT3, FIT_NO_FUNC );
            IF ( eb != BSP_INT_SUCCESS ) {
                rc_val = NCG_err_isr_management_failed;
                goto fin;
            }
            eb= R_BSP_InterruptWrite( BSP_INT_SRC_INT2, FIT_NO_FUNC );
            IF ( eb != BSP_INT_SUCCESS ) {
                rc_val = NCG_err_isr_management_failed;
                goto fin;
            }
            eb= R_BSP_InterruptWrite( BSP_INT_SRC_INT1, FIT_NO_FUNC );
            IF ( eb != BSP_INT_SUCCESS ) {
                rc_val = NCG_err_isr_management_failed;
                goto fin;
            }
            eb= R_BSP_InterruptWrite( BSP_INT_SRC_INT0, FIT_NO_FUNC );
            IF ( eb != BSP_INT_SUCCESS ) {
                rc_val = NCG_err_isr_management_failed;
                goto fin;
            }

            NCGVG_pRGPVG_Interrupt = NCG_NULL ;
        } else {
            NCG_DEBUG_MAKE_MSG_START( NCG_G_MASSAGE_BUFF, "[NCG][ERROR]NCGVG_Detach_ISR(2) Miss match function pointer.%s" )
            NCG_DEBUG_MAKE_MSG_PARAMETER( NCG_CRLF )
            NCG_DEBUG_MAKE_MSG_END();
            NCG_DEBUG_PRINT_MSG( NCG_G_MASSAGE_BUFF );
            rc_val = NCG_err_isr_management_failed;
        }
    }

fin:
    return rc_val;
}


/*=============================================================================
 *  Internal functions
 */

/*-----------------------------------------------------------------------------
 NAME       : NCGVG_RGPVG_ISR
 FUNCTION   : The Interrrupt from OpenVG.
 PARAMETERS :
 RETURN     : None.
-----------------------------------------------------------------------------*/
static void NCGVG_RGPVG_ISR(void)
{
    NCGuint32 ret ;
    errnum_t  e;

    NCG_DEBUG_PRINT_STRING( "[LOG] NCGVG_RGPVG_ISR" );

    if( NCGVG_pRGPVG_Interrupt == NCG_NULL ) {
        NCG_DEBUG_MAKE_MSG_START( NCG_G_MASSAGE_BUFF, "[NCG][INFO]NCGVG_RGPVG_ISR Not initialized.%s" )
        NCG_DEBUG_MAKE_MSG_PARAMETER( NCG_CRLF )
        NCG_DEBUG_MAKE_MSG_END();
        NCG_DEBUG_PRINT_MSG( NCG_G_MASSAGE_BUFF );
    } else {
        ret = NCGVG_pRGPVG_Interrupt() ;
        if ( ret != 0 ) {
            NCG_DEBUG_MAKE_MSG_START( NCG_G_MASSAGE_BUFF, "[NCG][ERROR]NCGVG_RGPVG_ISR(0x%08x)%s" )
            NCG_DEBUG_MAKE_MSG_PARAMETER( ret )
            NCG_DEBUG_MAKE_MSG_PARAMETER( NCG_CRLF )
            NCG_DEBUG_MAKE_MSG_END();
            NCG_DEBUG_PRINT_MSG( NCG_G_MASSAGE_BUFF );
        }

        e= R_GRAPHICS_OnInterrupting();
        if ( e != 0 ) {
            NCG_DEBUG_MAKE_MSG_START( NCG_G_MASSAGE_BUFF, "[NCG][ERROR]NCGVG_RGPVG_ISR(e=0x%08x)%s" )
            NCG_DEBUG_MAKE_MSG_PARAMETER( e )
            NCG_DEBUG_MAKE_MSG_PARAMETER( NCG_CRLF )
            NCG_DEBUG_MAKE_MSG_END();
            NCG_DEBUG_PRINT_MSG( NCG_G_MASSAGE_BUFF );
        }
    }

    return ;
}

/*-----------------------------------------------------------------------------
 NAME       : NCGVG_RGPVG_ISR_0
 FUNCTION   : The Interrrupt from OpenVG.
 PARAMETERS :
 RETURN     : None.
-----------------------------------------------------------------------------*/
static void NCGVG_RGPVG_ISR_0(void)
{
    NCGVG_RGPVG_ISR();

    GIC_EndInterrupt( BSP_INT_SRC_INT0 );
}

/*-----------------------------------------------------------------------------
 NAME       : NCGVG_RGPVG_ISR_1
 FUNCTION   : The Interrrupt from OpenVG.
 PARAMETERS :
 RETURN     : None.
-----------------------------------------------------------------------------*/
static void NCGVG_RGPVG_ISR_1(void)
{
    NCGVG_RGPVG_ISR();

    GIC_EndInterrupt( BSP_INT_SRC_INT1 );
}

/*-----------------------------------------------------------------------------
 NAME       : NCGVG_RGPVG_ISR_2
 FUNCTION   : The Interrrupt from OpenVG.
 PARAMETERS :
 RETURN     : None.
-----------------------------------------------------------------------------*/
static void NCGVG_RGPVG_ISR_2(void)
{
    NCGVG_RGPVG_ISR();

    GIC_EndInterrupt( BSP_INT_SRC_INT2 );
}

/*-----------------------------------------------------------------------------
 NAME       : NCGVG_RGPVG_ISR_3
 FUNCTION   : The Interrrupt from OpenVG.
 PARAMETERS :
 RETURN     : None.
-----------------------------------------------------------------------------*/
static void NCGVG_RGPVG_ISR_3(void)
{
    NCGVG_RGPVG_ISR();

    GIC_EndInterrupt( BSP_INT_SRC_INT3 );
}

#endif
/* -- end of file -- */