]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/swf.h
Use skip_spaces() in the "redir" demuxer instead of "while (isspace(&p)) p++".
[ffmpeg] / libavformat / swf.h
index a138987ca43865f1c037d4340fc2c51772ebd393..69064a281c146f20661ffb8df2e0e93b806b2799 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Flash Compatible Streaming Format common header.
- * Copyright (c) 2000 Fabrice Bellard.
- * Copyright (c) 2003 Tinic Uro.
+ * Copyright (c) 2000 Fabrice Bellard
+ * Copyright (c) 2003 Tinic Uro
  *
  * This file is part of FFmpeg.
  *
 #include <assert.h>
 
 typedef struct {
-    int audio_stream_index;
-    offset_t duration_pos;
-    offset_t tag_pos;
-    offset_t vframes_pos;
+    int64_t duration_pos;
+    int64_t tag_pos;
+    int64_t vframes_pos;
     int samples_per_frame;
     int sound_samples;
     int swf_frame_number;
     int video_frame_number;
     int frame_rate;
     int tag;
-    AVFifoBuffer audio_fifo;
+    AVFifoBuffer *audio_fifo;
     AVCodecContext *audio_enc, *video_enc;
 } SWFContext;