Browse code

update doc, changelog, and increase libavcodec version for .cin files support

Originally committed as revision 6660 to svn://svn.ffmpeg.org/ffmpeg/trunk

Baptiste Coudurier authored on 2006/10/12 02:14:02
Showing 3 changed files
... ...
@@ -60,6 +60,7 @@ version <next>
60 60
 - VP6 video decoder
61 61
 - WavPack lossless audio decoder
62 62
 - Targa (.TGA) picture decoder
63
+- Delphine Software .cin demuxer/audio and video decoder
63 64
 
64 65
 version 0.4.9-pre1:
65 66
 
... ...
@@ -735,6 +735,8 @@ library:
735 735
 @item Smacker @tab    @tab X
736 736
 @tab Multimedia format used by many games.
737 737
 @item GXF @tab    @tab X
738
+@item CIN @tab    @tab X
739
+@tab Multimedia format used by Delphine Software games.
738 740
 @end multitable
739 741
 
740 742
 @code{X} means that encoding (resp. decoding) is supported.
... ...
@@ -837,6 +839,7 @@ following image formats are supported:
837 837
 @item RTjpeg                 @tab     @tab  X @tab Video encoding used in NuppelVideo files.
838 838
 @item KMVC                   @tab     @tab  X @tab Codec used in Worms games.
839 839
 @item VMware Video           @tab     @tab  X @tab Codec used in videos captured by VMware.
840
+@item Cin Video              @tab     @tab  X @tab Codec used in Delphine Software games.
840 841
 @end multitable
841 842
 
842 843
 @code{X} means that encoding (resp. decoding) is supported.
... ...
@@ -910,6 +913,8 @@ following image formats are supported:
910 910
 @item True Audio (TTA)       @tab      @tab X
911 911
 @item Smacker Audio          @tab      @tab X
912 912
 @item WavPack Audio          @tab      @tab X
913
+@item Cin Audio              @tab      @tab X
914
+@tab Codec used in Delphine Software games.
913 915
 @end multitable
914 916
 
915 917
 @code{X} means that encoding (resp. decoding) is supported.
... ...
@@ -37,8 +37,8 @@ extern "C" {
37 37
 #define AV_STRINGIFY(s)         AV_TOSTRING(s)
38 38
 #define AV_TOSTRING(s) #s
39 39
 
40
-#define LIBAVCODEC_VERSION_INT  ((51<<16)+(17<<8)+0)
41
-#define LIBAVCODEC_VERSION      51.17.0
40
+#define LIBAVCODEC_VERSION_INT  ((51<<16)+(18<<8)+0)
41
+#define LIBAVCODEC_VERSION      51.18.0
42 42
 #define LIBAVCODEC_BUILD        LIBAVCODEC_VERSION_INT
43 43
 
44 44
 #define LIBAVCODEC_IDENT        "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)