diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-01-21 21:10:18 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-03-08 07:40:50 +0100 |
commit | 9b2dc29534b35d9e337274214853bc8d795f53c4 (patch) | |
tree | 9dd0bab564b8677b98bceb4136dccdf8d728dfb8 /avconv.h | |
parent | 37045e422903695e610cca6ecb753df643ab9380 (diff) | |
download | ffmpeg-9b2dc29534b35d9e337274214853bc8d795f53c4.tar.gz |
avconv: convert to new refcounted AVFrame API
Diffstat (limited to 'avconv.h')
-rw-r--r-- | avconv.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -200,6 +200,7 @@ typedef struct InputStream { int decoding_needed; /* true if the packets must be decoded in 'raw_fifo' */ AVCodec *dec; AVFrame *decoded_frame; + AVFrame *filter_frame; /* a ref of decoded_frame, to be sent to filters */ int64_t start; /* time when read started */ /* predicted dts of the next packet read for this stream or (when there are @@ -223,9 +224,6 @@ typedef struct InputStream { int resample_channels; uint64_t resample_channel_layout; - /* a pool of free buffers for decoded data */ - FrameBuffer *buffer_pool; - /* decoded data from this stream goes into all those filters * currently video and audio only */ InputFilter **filters; |