summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-04-05 08:48:24 +0200
committerAnton Khirnov <anton@khirnov.net>2014-06-01 08:33:11 +0200
commit41776ba9c0ebbb71394cefdf7dd1b243e6c852d5 (patch)
treeb282e400618dc04d9a431ef518f54a73f74b32cb /avconv.h
parente19d48dfce52f1417f7f06143b96fed00cbcdc52 (diff)
avconv: do not use the stream codec context for decoding
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/avconv.h b/avconv.h
index 56ce9f01ff..64d8ad0b16 100644
--- a/avconv.h
+++ b/avconv.h
@@ -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 */