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

Committer:
dkato
Date:
Mon Apr 24 08:16:23 2017 +0000
Revision:
13:1ee2176ef13f
Parent:
3:9f857750e4e9
Add "SetQuality()" to JCU.
; Bug fixes.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dkato 0:37e1e6a45ced 1 /*******************************************************************************
dkato 0:37e1e6a45ced 2 * DISCLAIMER
dkato 0:37e1e6a45ced 3 * This software is supplied by Renesas Electronics Corporation and is only
dkato 0:37e1e6a45ced 4 * intended for use with Renesas products. No other uses are authorized. This
dkato 0:37e1e6a45ced 5 * software is owned by Renesas Electronics Corporation and is protected under
dkato 0:37e1e6a45ced 6 * all applicable laws, including copyright laws.
dkato 0:37e1e6a45ced 7 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
dkato 0:37e1e6a45ced 8 * THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
dkato 0:37e1e6a45ced 9 * LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
dkato 0:37e1e6a45ced 10 * AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
dkato 0:37e1e6a45ced 11 * TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
dkato 0:37e1e6a45ced 12 * ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
dkato 0:37e1e6a45ced 13 * FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
dkato 0:37e1e6a45ced 14 * ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
dkato 0:37e1e6a45ced 15 * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
dkato 0:37e1e6a45ced 16 * Renesas reserves the right, without notice, to make changes to this software
dkato 0:37e1e6a45ced 17 * and to discontinue the availability of this software. By using this software,
dkato 0:37e1e6a45ced 18 * you agree to the additional terms and conditions found by accessing the
dkato 0:37e1e6a45ced 19 * following link:
dkato 0:37e1e6a45ced 20 * http://www.renesas.com/disclaimer
dkato 0:37e1e6a45ced 21 * Copyright (C) 2012 - 2015 Renesas Electronics Corporation. All rights reserved.
dkato 0:37e1e6a45ced 22 *******************************************************************************/
dkato 0:37e1e6a45ced 23 /**
dkato 0:37e1e6a45ced 24 * @file r_ospl_debug.c
dkato 0:37e1e6a45ced 25 * @brief Debug tools provided by OSPL.
dkato 0:37e1e6a45ced 26 *
dkato 0:37e1e6a45ced 27 * $Module: OSPL $ $PublicVersion: 0.90 $ (=R_OSPL_VERSION)
dkato 0:37e1e6a45ced 28 * $Rev: 35 $
dkato 0:37e1e6a45ced 29 * $Date:: 2014-04-15 21:38:18 +0900#$
dkato 0:37e1e6a45ced 30 */
dkato 0:37e1e6a45ced 31
dkato 0:37e1e6a45ced 32
dkato 0:37e1e6a45ced 33 /******************************************************************************
dkato 0:37e1e6a45ced 34 Includes <System Includes> , "Project Includes"
dkato 0:37e1e6a45ced 35 ******************************************************************************/
dkato 0:37e1e6a45ced 36 #include "r_ospl.h"
dkato 0:37e1e6a45ced 37 #include "r_ospl_debug.h"
dkato 0:37e1e6a45ced 38 #if R_OSPL_DEBUG_TOOL
dkato 0:37e1e6a45ced 39 #include <stdio.h>
dkato 0:37e1e6a45ced 40 #endif
dkato 0:37e1e6a45ced 41
dkato 0:37e1e6a45ced 42 /******************************************************************************
dkato 0:37e1e6a45ced 43 Typedef definitions
dkato 0:37e1e6a45ced 44 ******************************************************************************/
dkato 0:37e1e6a45ced 45
dkato 0:37e1e6a45ced 46 /**
dkato 0:37e1e6a45ced 47 * @struct r_ospl_debug_watch4_t
dkato 0:37e1e6a45ced 48 * @brief Watch context
dkato 0:37e1e6a45ced 49 *
dkato 0:37e1e6a45ced 50 * @par Description
dkato 0:37e1e6a45ced 51 * Member variables should not be accessed.
dkato 0:37e1e6a45ced 52 */
dkato 0:37e1e6a45ced 53 #if R_OSPL_DEBUG_TOOL
dkato 0:37e1e6a45ced 54 typedef struct st_r_ospl_debug_watch4_t r_ospl_debug_watch4_t;
dkato 0:37e1e6a45ced 55 struct st_r_ospl_debug_watch4_t {
dkato 0:37e1e6a45ced 56 volatile const uint32_t *Address;
dkato 0:37e1e6a45ced 57 uint32_t BreakValue;
dkato 0:37e1e6a45ced 58 bool_t IsPrintf;
dkato 0:37e1e6a45ced 59 };
dkato 0:37e1e6a45ced 60 static r_ospl_debug_watch4_t g_r_ospl_debug_watch4[ 10 ];
dkato 0:37e1e6a45ced 61 #endif
dkato 0:37e1e6a45ced 62
dkato 0:37e1e6a45ced 63
dkato 0:37e1e6a45ced 64 /******************************************************************************
dkato 0:37e1e6a45ced 65 Macro definitions
dkato 0:37e1e6a45ced 66 ******************************************************************************/
dkato 0:37e1e6a45ced 67
dkato 0:37e1e6a45ced 68 /******************************************************************************
dkato 0:37e1e6a45ced 69 Imported global variables and functions (from other files)
dkato 0:37e1e6a45ced 70 ******************************************************************************/
dkato 0:37e1e6a45ced 71
dkato 0:37e1e6a45ced 72 /******************************************************************************
dkato 0:37e1e6a45ced 73 Exported global variables and functions (to be accessed by other files)
dkato 0:37e1e6a45ced 74 ******************************************************************************/
dkato 0:37e1e6a45ced 75
dkato 0:37e1e6a45ced 76 /******************************************************************************
dkato 0:37e1e6a45ced 77 Private global variables and functions
dkato 0:37e1e6a45ced 78 ******************************************************************************/
dkato 0:37e1e6a45ced 79
dkato 0:37e1e6a45ced 80
dkato 0:37e1e6a45ced 81 /***********************************************************************
dkato 0:37e1e6a45ced 82 * Implement: R_D_Add
dkato 0:37e1e6a45ced 83 ************************************************************************/
dkato 0:37e1e6a45ced 84 #if R_OSPL_DEBUG_TOOL
dkato 0:37e1e6a45ced 85 void R_D_Add( int_fast32_t IndexNum, volatile const void *in_Address, uint32_t BreakValue, bool_t IsPrintf )
dkato 0:37e1e6a45ced 86 {
dkato 0:37e1e6a45ced 87 r_ospl_debug_watch4_t *self = &g_r_ospl_debug_watch4[ IndexNum ];
dkato 0:37e1e6a45ced 88 bool_t was_all_enabled; /* = false; */ /* QAC 3197 */
dkato 0:37e1e6a45ced 89 int_t r;
dkato 0:37e1e6a45ced 90
dkato 0:37e1e6a45ced 91 was_all_enabled = R_OSPL_DisableAllInterrupt();
dkato 0:37e1e6a45ced 92
dkato 0:37e1e6a45ced 93 if ( IS( IsPrintf ) ) {
dkato 0:37e1e6a45ced 94 r= printf( "Debug_add( %d, 0x%08X )\n", IndexNum, (uintptr_t) in_Address );
dkato 0:37e1e6a45ced 95 R_UNREFERENCED_VARIABLE( r ); /* QAC 3200 : This is not error information */
dkato 0:37e1e6a45ced 96 }
dkato 0:37e1e6a45ced 97 self->Address = (uint32_t *) in_Address;
dkato 0:37e1e6a45ced 98 self->BreakValue = BreakValue;
dkato 0:37e1e6a45ced 99 self->IsPrintf = IsPrintf;
dkato 0:37e1e6a45ced 100
dkato 0:37e1e6a45ced 101 if ( IS( was_all_enabled ) ) {
dkato 0:37e1e6a45ced 102 R_OSPL_EnableAllInterrupt();
dkato 0:37e1e6a45ced 103 }
dkato 0:37e1e6a45ced 104 }
dkato 0:37e1e6a45ced 105 #endif /* R_OSPL_DEBUG_TOOL */
dkato 0:37e1e6a45ced 106
dkato 0:37e1e6a45ced 107
dkato 0:37e1e6a45ced 108 /***********************************************************************
dkato 0:37e1e6a45ced 109 * Implement: R_D_Watch
dkato 0:37e1e6a45ced 110 ************************************************************************/
dkato 0:37e1e6a45ced 111 #if R_OSPL_DEBUG_TOOL
dkato 0:37e1e6a45ced 112 void R_D_Watch( int_fast32_t in_IndexNum )
dkato 0:37e1e6a45ced 113 {
dkato 0:37e1e6a45ced 114 r_ospl_debug_watch4_t *self = &g_r_ospl_debug_watch4[ in_IndexNum ];
dkato 0:37e1e6a45ced 115 bool_t was_all_enabled; /* = false; */ /* QAC 3197 */
dkato 0:37e1e6a45ced 116 int_t r;
dkato 0:37e1e6a45ced 117
dkato 0:37e1e6a45ced 118 was_all_enabled = R_OSPL_DisableAllInterrupt();
dkato 0:37e1e6a45ced 119
dkato 0:37e1e6a45ced 120 if ( self->Address != NULL ) {
dkato 0:37e1e6a45ced 121 if ( IS( self->IsPrintf ) ) {
1050186 3:9f857750e4e9 122 r= printf( "Debug_watch( %d ): 0x%08X\n", in_IndexNum, (uintptr_t) *self->Address );
dkato 0:37e1e6a45ced 123 R_UNREFERENCED_VARIABLE( r ); /* QAC 3200 : This is not error information */
1050186 3:9f857750e4e9 124 /* Cast of "uintptr_t" is for avoiding "format" warning of GNU_ARM */
dkato 0:37e1e6a45ced 125 }
dkato 0:37e1e6a45ced 126 if ( *self->Address == self->BreakValue ) {
dkato 0:37e1e6a45ced 127 R_DEBUG_BREAK();
dkato 0:37e1e6a45ced 128 }
dkato 0:37e1e6a45ced 129 }
dkato 0:37e1e6a45ced 130
dkato 0:37e1e6a45ced 131 if ( IS( was_all_enabled ) ) {
dkato 0:37e1e6a45ced 132 R_OSPL_EnableAllInterrupt();
dkato 0:37e1e6a45ced 133 }
dkato 0:37e1e6a45ced 134 }
dkato 0:37e1e6a45ced 135 #endif /* R_OSPL_DEBUG_TOOL */
dkato 0:37e1e6a45ced 136
dkato 0:37e1e6a45ced 137
dkato 0:37e1e6a45ced 138 /***********************************************************************
dkato 0:37e1e6a45ced 139 * Implement: R_D_AddToIntLog
dkato 0:37e1e6a45ced 140 ************************************************************************/
dkato 0:37e1e6a45ced 141 #if R_OSPL_DEBUG_TOOL
dkato 0:37e1e6a45ced 142 #define IntLogBreakID -1 /* -1=not break */
dkato 0:37e1e6a45ced 143
dkato 0:37e1e6a45ced 144 volatile uint_fast32_t g_DebugVar[ g_DebugVarCount ];
dkato 0:37e1e6a45ced 145 volatile int_fast32_t g_IntLog[ g_IntLogCount ];
dkato 0:37e1e6a45ced 146 volatile int_fast32_t g_IntLogLength;
dkato 0:37e1e6a45ced 147
dkato 0:37e1e6a45ced 148 void R_D_AddToIntLog( int_fast32_t in_Value ) /* Add to g_IntLog, g_IntLogLength */
dkato 0:37e1e6a45ced 149 {
dkato 0:37e1e6a45ced 150 g_IntLog[ (uint_fast32_t) g_IntLogLength % ( sizeof(g_IntLog) / sizeof(*g_IntLog) ) ] = in_Value;
dkato 0:37e1e6a45ced 151 if ( g_IntLogLength == IntLogBreakID ) {
dkato 0:37e1e6a45ced 152 R_DEBUG_BREAK();
dkato 0:37e1e6a45ced 153 }
dkato 0:37e1e6a45ced 154 g_IntLogLength += 1;
dkato 0:37e1e6a45ced 155 }
dkato 0:37e1e6a45ced 156 #endif /* R_OSPL_DEBUG_TOOL */
dkato 0:37e1e6a45ced 157
dkato 0:37e1e6a45ced 158
dkato 0:37e1e6a45ced 159 /***********************************************************************
dkato 0:37e1e6a45ced 160 * Implement: R_D_Counter
dkato 0:37e1e6a45ced 161 ************************************************************************/
dkato 0:37e1e6a45ced 162 #if R_OSPL_DEBUG_TOOL
dkato 0:37e1e6a45ced 163 bool_t R_D_Counter( int_fast32_t *in_out_Counter, int_fast32_t TargetCount, char_t *in_Label )
dkato 0:37e1e6a45ced 164 {
dkato 0:37e1e6a45ced 165 int_fast32_t counter;
dkato 0:37e1e6a45ced 166 bool_t is_stop;
dkato 0:37e1e6a45ced 167 int_t r;
dkato 0:37e1e6a45ced 168
dkato 0:37e1e6a45ced 169 counter = *in_out_Counter;
dkato 0:37e1e6a45ced 170 counter += 1;
dkato 0:37e1e6a45ced 171 is_stop = ( counter == TargetCount );
dkato 0:37e1e6a45ced 172 if ( in_Label != NULL ) {
dkato 0:37e1e6a45ced 173 r= printf( "%s %d:\n", in_Label, counter );
dkato 0:37e1e6a45ced 174 R_UNREFERENCED_VARIABLE( r ); /* QAC 3200 : This is not error information */
dkato 0:37e1e6a45ced 175 } else {
dkato 0:37e1e6a45ced 176 if ( counter == 1 ) {
dkato 0:37e1e6a45ced 177 printf( "R_D_Counter address: 0x%08X\n", (uintptr_t) in_out_Counter );
dkato 0:37e1e6a45ced 178 }
dkato 0:37e1e6a45ced 179 }
dkato 0:37e1e6a45ced 180 *in_out_Counter = counter;
dkato 0:37e1e6a45ced 181
dkato 0:37e1e6a45ced 182 return is_stop;
dkato 0:37e1e6a45ced 183 }
dkato 0:37e1e6a45ced 184 #endif /* R_OSPL_DEBUG_TOOL */
dkato 0:37e1e6a45ced 185
dkato 0:37e1e6a45ced 186