[vlc-devel] commit: [FFmpeg] support for native RV40 (Jean-Baptiste Kempf )

git version control git at videolan.org
Mon Dec 1 08:15:00 CET 2008


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Dec  1 07:56:13 2008 +0100| [07dc019fff656ff82057828e044b66321f48172a] | committer: Jean-Baptiste Kempf 

[FFmpeg] support for native RV40

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=07dc019fff656ff82057828e044b66321f48172a
---

 modules/codec/avcodec/fourcc.c |   19 +++++++++++++------
 1 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/modules/codec/avcodec/fourcc.c b/modules/codec/avcodec/fourcc.c
index bfacf28..3e3d30a 100644
--- a/modules/codec/avcodec/fourcc.c
+++ b/modules/codec/avcodec/fourcc.c
@@ -562,19 +562,26 @@ static const struct
 
     /* Real Video */
     { VLC_FOURCC('R','V','1','0'), CODEC_ID_RV10,
-      VIDEO_ES, "Real Video 10" },
+      VIDEO_ES, "Real Video 1.0" },
     { VLC_FOURCC('r','v','1','0'), CODEC_ID_RV10,
-      VIDEO_ES, "Real Video 10" },
+      VIDEO_ES, "Real Video 1.0" },
     { VLC_FOURCC('R','V','1','3'), CODEC_ID_RV10,
-      VIDEO_ES, "Real Video 13" },
+      VIDEO_ES, "Real Video 1.3" },
     { VLC_FOURCC('r','v','1','3'), CODEC_ID_RV10,
-      VIDEO_ES, "Real Video 13" },
+      VIDEO_ES, "Real Video 1.3" },
 #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 51, 15, 1 )
     { VLC_FOURCC('R','V','2','0'), CODEC_ID_RV20,
-      VIDEO_ES, "Real Video 20" },
+      VIDEO_ES, "Real Video 2.0" },
     { VLC_FOURCC('r','v','2','0'), CODEC_ID_RV20,
-      VIDEO_ES, "Real Video 20" },
+      VIDEO_ES, "Real Video 2.0" },
 #endif
+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 5, 0 )
+    { VLC_FOURCC('R','V','4','0'), CODEC_ID_RV40,
+      VIDEO_ES, "Real Video 4.0" },
+    { VLC_FOURCC('r','v','4','0'), CODEC_ID_RV40,
+      VIDEO_ES, "Real Video 4.0" },
+#endif
+
 
     /* Apple Video */
     { VLC_FOURCC('r','p','z','a'), CODEC_ID_RPZA,




More information about the vlc-devel mailing list