VLC Capture from RGB devices show Red as Blue and Blue as Red colors
When user capture from device with RGB24 (RV24) color space he get incorrect colors. Red color shown as Blue and Blue - as Red. In source code at file modules\access\dshow\dshow.cpp at lines 674-676 code: fmt.video.i_bmask = 0x00ff0000; fmt.video.i_gmask = 0x0000ff00; fmt.video.i_rmask = 0x000000ff; need to change: fmt.video.i_rmask = 0x00ff0000; fmt.video.i_gmask = 0x0000ff00; fmt.video.i_bmask = 0x000000ff; to show correct color. (http://msdn.microsoft.com/en-us/library/dd407253%28VS.85%29.aspx?ppud=4)