Skip to content

Commit df30ef0

Browse files
committed
Update JPEG decoding configuration to use BT709 color standard
1 parent 231e2c9 commit df30ef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/remote_webview/remote_webview.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ bool RemoteWebView::decode_jpeg_tile_to_lcd_(int16_t dst_x, int16_t dst_y, const
378378
jpeg_decode_cfg_t jcfg{};
379379
jcfg.output_format = JPEG_DECODE_OUT_FORMAT_RGB565;
380380
jcfg.rgb_order = JPEG_DEC_RGB_ELEMENT_ORDER_BGR;
381-
jcfg.conv_std = JPEG_YUV_RGB_CONV_STD_BT601;
381+
jcfg.conv_std = JPEG_YUV_RGB_CONV_STD_BT709;
382382

383383
memcpy(hw_decode_input_buf_, data, len);
384384

0 commit comments

Comments
 (0)