aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/ffmpeg_mux_init.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-03-27 08:12:14 +0200
committerAnton Khirnov <anton@khirnov.net>2023-04-13 15:11:56 +0200
commitfd91ac11ed5aa2a22a02a89f8a363551a368c638 (patch)
tree3f0d08f88d8c53db6e181d02b32d88bf968bd273 /fftools/ffmpeg_mux_init.c
parent83da6d3f54fc85784e0ef843ee6e0c03e338722e (diff)
downloadffmpeg-fd91ac11ed5aa2a22a02a89f8a363551a368c638.tar.gz
fftools/ffmpeg: move OutputStream.last_filter_pts to OutputFilter
This value is associated with the filtergraph output rather than the output stream, so this is a more appropriate place for it.
Diffstat (limited to 'fftools/ffmpeg_mux_init.c')
-rw-r--r--fftools/ffmpeg_mux_init.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c
index ee5829c7fe..3490c99c94 100644
--- a/fftools/ffmpeg_mux_init.c
+++ b/fftools/ffmpeg_mux_init.c
@@ -649,7 +649,6 @@ static OutputStream *new_output_stream(Muxer *mux, const OptionsContext *o,
ost->ist->st->discard = ost->ist->user_set_discard;
}
ost->last_mux_dts = AV_NOPTS_VALUE;
- ost->last_filter_pts = AV_NOPTS_VALUE;
MATCH_PER_STREAM_OPT(copy_initial_nonkeyframes, i,
ost->copy_initial_nonkeyframes, oc, st);