diff options
author | James Almer <jamrial@gmail.com> | 2023-07-17 20:22:55 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-10-06 10:11:19 -0300 |
commit | 27fcc8dd9f9fea7a520e9c4be043f3a05bf324cd (patch) | |
tree | a28202c592ceb38e8b39c0ed7328e3efa809a239 /fftools | |
parent | d372c2f3d3ac4f45cc40f6eb353de294d2ddd90f (diff) | |
download | ffmpeg-27fcc8dd9f9fea7a520e9c4be043f3a05bf324cd.tar.gz |
fftools/ffplay: stop injecting stream side data in packets
This is no longer needed as the side data is available for decoders in the
AVCodecContext.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'fftools')
-rw-r--r-- | fftools/ffplay.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fftools/ffplay.c b/fftools/ffplay.c index f5354575c9..d8c69e10bc 100644 --- a/fftools/ffplay.c +++ b/fftools/ffplay.c @@ -2794,8 +2794,6 @@ static int read_thread(void *arg) if (genpts) ic->flags |= AVFMT_FLAG_GENPTS; - av_format_inject_global_side_data(ic); - if (find_stream_info) { AVDictionary **opts; int orig_nb_streams = ic->nb_streams; |