Browse Source

screen/win32: use VLC_CODEC_RGB24 instead of VLC_CODEC_RGB24M

This is the chroma corresponding to the default RGB24M mask.
pull/162/head
Steve Lhomme 3 years ago
parent
commit
21bd9cffbd
  1. 2
      modules/access/screen/win32.c

2
modules/access/screen/win32.c

@ -132,7 +132,7 @@ int screen_InitCaptureGDI( demux_t *p_demux )
case 16: /* Yes it is really 15 bits (when using BI_RGB) */
i_chroma = VLC_CODEC_RGB15; break;
case 24:
i_chroma = VLC_CODEC_RGB24M; break;
i_chroma = VLC_CODEC_RGB24; break;
case 32:
i_chroma = VLC_CODEC_BGRX; break;
default:

Loading…
Cancel
Save