diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-01-23 18:42:20 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-01-30 09:52:00 +0100 |
commit | 1b2c539a0f4b48ed124ff6dc375bd67111efdddc (patch) | |
tree | 9bc33cde252151a5247911834e03229cd36fc586 /fftools/ffmpeg_demux.c | |
parent | b3d1916ba03086d9d1e80a2ff5fdee2c915152ae (diff) | |
download | ffmpeg-1b2c539a0f4b48ed124ff6dc375bd67111efdddc.tar.gz |
fftools/ffmpeg_dec: pass AVCodecParameters through DecoderOpts
Do not retrieve it from InputStream directly.
This is a step towards decoupling Decoder and InputStream.
Diffstat (limited to 'fftools/ffmpeg_demux.c')
-rw-r--r-- | fftools/ffmpeg_demux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fftools/ffmpeg_demux.c b/fftools/ffmpeg_demux.c index f66319aafe..6216b7c684 100644 --- a/fftools/ffmpeg_demux.c +++ b/fftools/ffmpeg_demux.c @@ -931,6 +931,7 @@ static int ist_use(InputStream *ist, int decoding_needed) ds->dec_opts.name = ds->dec_name; ds->dec_opts.codec = ist->dec; + ds->dec_opts.par = ist->par; ret = dec_open(ist, d->sch, ds->sch_idx_dec, &ist->decoder_opts, &ds->dec_opts); |