[vlc-devel] commit: Fixed J420/J422/J440/J444 definitions in fourcc.c (Laurent Aimar )
git version control
git at videolan.org
Mon Feb 8 22:03:35 CET 2010
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Mon Feb 8 21:40:43 2010 +0100| [cc7f8d5d36de4fbab2d68c7d15fd7a7b9cf7ffd3] | committer: Laurent Aimar
Fixed J420/J422/J440/J444 definitions in fourcc.c
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cc7f8d5d36de4fbab2d68c7d15fd7a7b9cf7ffd3
---
src/misc/fourcc.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index 2c72c8e..59a783a 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -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"),
More information about the vlc-devel
mailing list