]> git.sesse.net Git - vlc/commitdiff
Support for Indeo 5
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 14 Feb 2010 12:03:15 +0000 (13:03 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 14 Feb 2010 12:05:33 +0000 (13:05 +0100)
May Kostya Shishkov be praised for this.

NEWS
include/vlc_fourcc.h
modules/codec/avcodec/fourcc.c
src/misc/fourcc.c

diff --git a/NEWS b/NEWS
index 92c5b5dbdf7fe123362ff9323abf43bd759e58b0..9776fb9b8e111e57059c59b0f601ff63b223d57c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -22,12 +22,13 @@ Decoders:
  * HD dvb subtitles - Display Definition Segment support
  * PGS subtitles for Blu-Ray
  * Invmem module improvements
- * Support for Atrac1 codec
+ * Support for Atrac1 audio codec
  * Support for SSE3 and SSE4 capabilities
+ * Multiple improvements for subtitles styles .SRT and .SSA
  * Support for DxVA2 for H.264 decoding on GPU on Windows Vista and 7
  * Support for VAAPI for H.264 decoding on GPU on GNU/Linux
- * Multiple improvements for subtitles styles .SRT and .SSA
  * Audio/Video decoder using OpenMAX IL components
+ * Support for Indeo5 video codec
 
 Demuxers:
  * Support for ADPCM in .flv streams
index cfb17aac8088d633504d5036c720fd10c0ccbf5c..f766933fdc7164fde8cde0871bf271f519d363b2 100644 (file)
 #define VLC_CODEC_CDG       VLC_FOURCC('C','D','G',' ')
 #define VLC_CODEC_FRWU      VLC_FOURCC('F','R','W','U')
 #define VLC_CODEC_AMV       VLC_FOURCC('A','M','V',' ')
+#define VLC_CODEC_INDEO5    VLC_FOURCC('I','V','5','0')
 
 
 /* Planar YUV 4:1:0 Y:V:U */
index 6f695b0c3be27efb1a28d8e60f641ca8e7bfc877..fbec4592ea7ddfeeddbeaea5e70f2ded4a2e16e3 100644 (file)
@@ -200,6 +200,10 @@ static const struct
     { VLC_CODEC_FRWU, CODEC_ID_FRWU, VIDEO_ES },
 #endif
 
+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 53, 0 )
+    { VLC_CODEC_INDEO5, CODEC_ID_INDEO5, VIDEO_ES },
+#endif
+
     /* Videogames Codecs */
 
     { VLC_CODEC_INTERPLAY, CODEC_ID_INTERPLAY_VIDEO, VIDEO_ES },
@@ -216,6 +220,7 @@ static const struct
 
     { VLC_CODEC_AMV, CODEC_ID_AMV, VIDEO_ES },
 
+
 #if 0
 /*    UNTESTED VideoGames*/
     { VLC_FOURCC('W','C','3','V'), CODEC_ID_XAN_WC3,
index 59a783a953141d4455e04b4d9056432b91ed3394..d196721737f137e85620b2235772f527576870e1 100644 (file)
@@ -607,6 +607,11 @@ static const entry_t p_list_video[] = {
     B(VLC_CODEC_FRWU, "Forward Uncompressed" ),
         A("FRWU"),
 
+    B(VLC_CODEC_INDEO5, "Indeo Video v5"),
+        A("IV50"),
+        A("iv50"),
+
+
     /* */
     B(VLC_CODEC_YV12, "Planar 4:2:0 YVU"),
         A("YV12"),