]> git.sesse.net Git - vlc/commitdiff
Added a few missing fourcc to rawvideo decoder.
authorLaurent Aimar <fenrir@videolan.org>
Mon, 8 Feb 2010 20:38:19 +0000 (21:38 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 8 Feb 2010 20:42:10 +0000 (21:42 +0100)
modules/codec/rawvideo.c

index 5691eb4cd1a6e3a82eaf5cba19a69e311ddd5bec..fd71d99dd5fce5710584a3646732f570f4f32892 100644 (file)
@@ -92,9 +92,13 @@ static int OpenDecoder( vlc_object_t *p_this )
     {
         /* Planar YUV */
         case VLC_CODEC_I444:
+        case VLC_CODEC_J444:
         case VLC_CODEC_I422:
+        case VLC_CODEC_J422:
         case VLC_CODEC_I420:
+        case VLC_CODEC_J420:
         case VLC_CODEC_YV12:
+        case VLC_CODEC_YV9:
         case VLC_CODEC_I411:
         case VLC_CODEC_I410:
         case VLC_CODEC_GREY: