diff options
Diffstat (limited to 'libavformat/swf.h')
-rw-r--r-- | libavformat/swf.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavformat/swf.h b/libavformat/swf.h index 1b9b7fff35..809e1c59ed 100644 --- a/libavformat/swf.h +++ b/libavformat/swf.h @@ -23,6 +23,7 @@ #ifndef FFMPEG_SWF_H #define FFMPEG_SWF_H +#include "libavutil/fifo.h" #include "avformat.h" #include "riff.h" /* for CodecTag */ @@ -73,10 +74,7 @@ typedef struct { int video_frame_number; int frame_rate; int tag; - - uint8_t audio_fifo[AUDIO_FIFO_SIZE]; - int audio_in_pos; - + AVFifoBuffer audio_fifo; int video_type; int audio_type; } SWFContext; |