Commit 74be690b authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Add support for 2Vuy rawvideo. Patch from Ilkka Ollakka.

parent b100f43e
...@@ -107,7 +107,9 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -107,7 +107,9 @@ static int OpenDecoder( vlc_object_t *p_this )
case VLC_FOURCC('R','V','1','6'): case VLC_FOURCC('R','V','1','6'):
case VLC_FOURCC('R','V','1','5'): case VLC_FOURCC('R','V','1','5'):
break; break;
case VLC_FOURCC('2','V','u','y'):
p_dec->fmt_in.i_codec = VLC_FOURCC('U','Y','V','Y');
break;
case VLC_FOURCC('y','v','1','2'): case VLC_FOURCC('y','v','1','2'):
p_dec->fmt_in.i_codec = VLC_FOURCC('Y','V','1','2'); p_dec->fmt_in.i_codec = VLC_FOURCC('Y','V','1','2');
break; break;
......
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