]> git.sesse.net Git - vlc/commitdiff
Fixed J420/J422/J440/J444 definitions in fourcc.c
authorLaurent Aimar <fenrir@videolan.org>
Mon, 8 Feb 2010 20:40:43 +0000 (21:40 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 8 Feb 2010 20:42:11 +0000 (21:42 +0100)
src/misc/fourcc.c

index 2c72c8e4f96260fea2c9220692c0dde125c4d1fd..59a783a953141d4455e04b4d9056432b91ed3394 100644 (file)
@@ -627,13 +627,13 @@ static const entry_t p_list_video[] = {
     B(VLC_CODEC_I444, "Planar 4:4:4 YUV"),
         A("I444"),
 
-    B(VLC_CODEC_I420, "Planar 4:2:0 YUV full scale"),
+    B(VLC_CODEC_J420, "Planar 4:2:0 YUV full scale"),
         A("J420"),
-    B(VLC_CODEC_I422, "Planar 4:2:2 YUV full scale"),
+    B(VLC_CODEC_J422, "Planar 4:2:2 YUV full scale"),
         A("J422"),
-    B(VLC_CODEC_I444, "Planar 4:4:0 YUV full scale"),
+    B(VLC_CODEC_J440, "Planar 4:4:0 YUV full scale"),
         A("J440"),
-    B(VLC_CODEC_I444, "Planar 4:4:4 YUV full scale"),
+    B(VLC_CODEC_J444, "Planar 4:4:4 YUV full scale"),
         A("J444"),
 
     B(VLC_CODEC_YUVP, "Palettized YUV with palette element Y:U:V:A"),