diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-27 04:33:48 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-27 04:33:48 +0000 |
commit | ed03be6c49b6c3e88a91e306c79b6b7393115f0d (patch) | |
tree | 91fd8fa76176e9b5f1b715be5a6482400918f665 /libavformat/swf.h | |
parent | 2aaf590b17f40923a65d3cd017068293022b75ea (diff) | |
download | ffmpeg-ed03be6c49b6c3e88a91e306c79b6b7393115f0d.tar.gz |
use AVFifoBuffer
Originally committed as revision 13462 to svn://svn.ffmpeg.org/ffmpeg/trunk
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; |