diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-28 15:10:21 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-10-29 14:19:10 +0100 |
commit | c872d310cd9c605e5f994ad8ac79dc72303c0d29 (patch) | |
tree | 7ca8aa161a1d65ddbb56e56c7e10311628a5a3a8 /avconv.h | |
parent | 8b64c2ba0382892cad9e1a5ba601696d4cbb4d04 (diff) | |
download | ffmpeg-c872d310cd9c605e5f994ad8ac79dc72303c0d29.tar.gz |
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.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -305,6 +305,8 @@ typedef struct OutputStream { int copy_initial_nonkeyframes; enum AVPixelFormat pix_fmts[2]; + + AVCodecParserContext *parser; } OutputStream; typedef struct OutputFile { |