diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-04-05 08:48:24 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-06-01 08:33:11 +0200 |
commit | 41776ba9c0ebbb71394cefdf7dd1b243e6c852d5 (patch) | |
tree | b282e400618dc04d9a431ef518f54a73f74b32cb /avconv.h | |
parent | e19d48dfce52f1417f7f06143b96fed00cbcdc52 (diff) | |
download | ffmpeg-41776ba9c0ebbb71394cefdf7dd1b243e6c852d5.tar.gz |
avconv: do not use the stream codec context for decoding
Diffstat (limited to 'avconv.h')
-rw-r--r-- | avconv.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -219,6 +219,7 @@ typedef struct InputStream { AVStream *st; int discard; /* true if stream data should be discarded */ int decoding_needed; /* true if the packets must be decoded in 'raw_fifo' */ + AVCodecContext *dec_ctx; AVCodec *dec; AVFrame *decoded_frame; AVFrame *filter_frame; /* a ref of decoded_frame, to be sent to filters */ |