From 9b2dc29534b35d9e337274214853bc8d795f53c4 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 21 Jan 2013 21:10:18 +0100 Subject: avconv: convert to new refcounted AVFrame API --- avconv.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'avconv.h') diff --git a/avconv.h b/avconv.h index da7259e292..eb9df9b16a 100644 --- a/avconv.h +++ b/avconv.h @@ -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; -- cgit v1.2.3