Browse Source

kate: output SDR full range by default

We don't want to keep the colorimetry of the video.
pull/180/head
Steve Lhomme 11 months ago
parent
commit
68119b28d8
  1. 4
      modules/codec/kate.c

4
modules/codec/kate.c

@ -852,6 +852,10 @@ exit:
fmt.i_height =
fmt.i_visible_height = p_fmt_src->i_height;
fmt.i_x_offset = fmt.i_y_offset = 0;
fmt.transfer = TRANSFER_FUNC_SRGB;
fmt.primaries = COLOR_PRIMARIES_SRGB;
fmt.space = COLOR_SPACE_SRGB;
fmt.color_range = COLOR_RANGE_FULL;
subpicture_region_t *p_r = subpicture_region_New( &fmt );
if( !p_r )

Loading…
Cancel
Save