]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/iff.c
Use the configure check from r21351 and use it to properly define struct
[ffmpeg] / libavformat / iff.c
index 1fb94c057a55f0c65c7424eb8dcbbd9ac0035ce0..812ed23404e4d4bc4c52855fb4de49e387353219 100644 (file)
  */
 
 /**
- * @file iff.c
+ * @file libavformat/iff.c
  * IFF file demuxer
  * by Jaikrishnan Menon
  * for more information on the .iff file format, visit:
  * http://wiki.multimedia.cx/index.php?title=IFF
  */
 
+#include "libavutil/intreadwrite.h"
 #include "avformat.h"
 
 #define ID_8SVX       MKTAG('8','S','V','X')
@@ -52,7 +53,7 @@
 
 #define PACKET_SIZE 1024
 
-typedef enum {COMP_NONE, COMP_FIB, COMP_EXP} svx8_compression_t;
+typedef enum {COMP_NONE, COMP_FIB, COMP_EXP} svx8_compression_type;
 
 typedef struct {
     uint32_t  body_size;