Commit 43db2ff1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

XCB/XVideo: ignore ARGB picture format

parent 5ab6e093
...@@ -147,6 +147,8 @@ static vlc_fourcc_t ParseFormat (vout_display_t *vd, ...@@ -147,6 +147,8 @@ static vlc_fourcc_t ParseFormat (vout_display_t *vd,
case 32: case 32:
if (f->depth == 24) if (f->depth == 24)
return VLC_CODEC_RGB32; return VLC_CODEC_RGB32;
if (f->depth == 32)
return 0; /* ARGB -> VLC cannot do that currently */
break; break;
case 24: case 24:
if (f->depth == 24) if (f->depth == 24)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment