diff options
author | James Almer <jamrial@gmail.com> | 2018-03-21 11:27:49 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-03-23 22:03:22 -0300 |
commit | f5ceb15bb692d5121a976c3638811b96fc14f85f (patch) | |
tree | aac36027bddc1eae4e0430379b21e4b8d000b8ce /fftools/ffmpeg.h | |
parent | 3e3d56776166b7529df7cc37d48a5d2a2596050b (diff) | |
download | ffmpeg-f5ceb15bb692d5121a976c3638811b96fc14f85f.tar.gz |
ffmpeg: remove dead call to av_parser_change()
It's been a noop for years, and it's been argued that in-band headers
should not be forcedly removed without the user's explicit request.
Also, as the FIXME line stated, this is a job for a bitstream filter
like extract_extradata, remove_extradata, dump_extradata, and
filter_units.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 8195f73e8b..d44b7a5c72 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -526,9 +526,6 @@ typedef struct OutputStream { int keep_pix_fmt; - AVCodecParserContext *parser; - AVCodecContext *parser_avctx; - /* stats */ // combined size of all the packets written uint64_t data_size; |