summaryrefslogtreecommitdiff
path: root/avconv.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-10-28 15:10:21 +0100
committerAnton Khirnov <anton@khirnov.net>2013-10-29 14:19:10 +0100
commitc872d310cd9c605e5f994ad8ac79dc72303c0d29 (patch)
tree7ca8aa161a1d65ddbb56e56c7e10311628a5a3a8 /avconv.h
parent8b64c2ba0382892cad9e1a5ba601696d4cbb4d04 (diff)
avconv: stop accessing AVStream.parser
It is private and must not be touched from outside of lavf.
Diffstat (limited to 'avconv.h')
-rw-r--r--avconv.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/avconv.h b/avconv.h
index eb7e37f875..cb3005d3bb 100644
--- a/avconv.h
+++ b/avconv.h
@@ -305,6 +305,8 @@ typedef struct OutputStream {
int copy_initial_nonkeyframes;
enum AVPixelFormat pix_fmts[2];
+
+ AVCodecParserContext *parser;
} OutputStream;
typedef struct OutputFile {