Searched refs:img_data (Results 1 – 3 of 3) sorted by relevance
/lvgl-latest/src/libs/bin_decoder/ |
D | lv_bin_decoder.c | 419 uint8_t * img_data = NULL; in lv_bin_decoder_get_area() local 447 img_data = decoded->data; /*Get the buffer to operate on*/ in lv_bin_decoder_get_area() 478 decode_indexed_line(cf, dsc->palette, x_fraction, w_px, buf, (lv_color32_t *)img_data); in lv_bin_decoder_get_area() 491 res = fs_read_file_at(f, offset, img_data, len, NULL); in lv_bin_decoder_get_area() 505 res = fs_read_file_at(f, offset, img_data, len, NULL); in lv_bin_decoder_get_area() 515 res = fs_read_file_at(f, offset, img_data + len, w_px * 1, NULL); in lv_bin_decoder_get_area() 652 uint8_t * img_data = decoded->data; in decode_indexed() local 655 uint8_t * out = img_data; in decode_indexed() 801 uint8_t * img_data = decoded->data; in decode_rgb() local 804 res = fs_read_file_at(f, sizeof(lv_image_header_t), img_data, len, &rn); in decode_rgb() [all …]
|
/lvgl-latest/src/draw/vg_lite/ |
D | lv_vg_lite_decoder.c | 51 static void image_color32_pre_mul(lv_color32_t * img_data, uint32_t px_size); 90 static void image_color32_pre_mul(lv_color32_t * img_data, uint32_t px_size) in image_color32_pre_mul() argument 93 lv_color_premultiply(img_data); in image_color32_pre_mul() 94 img_data++; in image_color32_pre_mul()
|
/lvgl-latest/src/libs/ffmpeg/ |
D | lv_ffmpeg.c | 317 uint8_t * img_data = ffmpeg_get_image_data(ffmpeg_ctx); in decoder_open() local 323 decoded->data = img_data; in decoder_open() 345 uint8_t * img_data = ffmpeg_ctx->video_dst_data[0]; in ffmpeg_get_image_data() local 347 if(img_data == NULL) { in ffmpeg_get_image_data() 351 return img_data; in ffmpeg_get_image_data()
|