]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/ogg2.h
TIFF decoder
[ffmpeg] / libavformat / ogg2.h
index 416a504274ffee31931aed478e38541cfbb8bc4e..dd6f24aab6ebd674d5ec3d25340118021cbc9fbd 100644 (file)
@@ -28,7 +28,7 @@
 #include "avformat.h"
 
 typedef struct ogg_codec {
-    uint8_t *magic;
+    int8_t *magic;
     uint8_t magicsize;
     int8_t *name;
     int (*header)(AVFormatContext *, int);
@@ -75,13 +75,11 @@ typedef struct ogg {
 
 extern ogg_codec_t vorbis_codec;
 extern ogg_codec_t theora_codec;
-#if 0
+extern ogg_codec_t flac_codec;
 extern ogg_codec_t ogm_video_codec;
 extern ogg_codec_t ogm_audio_codec;
 extern ogg_codec_t ogm_old_codec;
-extern ogg_codec_t flac_codec;
-#endif
 
-extern int vorbis_comment(AVFormatContext *ms, char *buf, int size);
+extern int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size);
 
 #endif