diff avcodec.h @ 700:0fb4c66527e1 libavcodec

autodetect UMP4 (by adding a fourcc field to AVCodecContext)
author michaelni
date Thu, 26 Sep 2002 23:27:22 +0000
parents c622224012f0
children 85b071dfc7e3
line wrap: on
line diff
--- a/avcodec.h	Thu Sep 26 22:37:33 2002 +0000
+++ b/avcodec.h	Thu Sep 26 23:27:22 2002 +0000
@@ -5,8 +5,8 @@
 
 #define LIBAVCODEC_VERSION_INT 0x000406
 #define LIBAVCODEC_VERSION     "0.4.6"
-#define LIBAVCODEC_BUILD       4627
-#define LIBAVCODEC_BUILD_STR   "4627"
+#define LIBAVCODEC_BUILD       4628
+#define LIBAVCODEC_BUILD_STR   "4628"
 
 enum CodecID {
     CODEC_ID_NONE, 
@@ -675,6 +675,14 @@
      * decoding: unused
      */
     float dark_masking;
+    
+    /**
+     * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A')
+     * this is used to workaround some encoder bugs
+     * encoding: unused
+     * decoding: set by user
+     */
+    int fourcc;
 
     //FIXME this should be reordered after kabis API is finished ...
     //TODO kill kabi