fftools/ffmpeg_mux: make copy_initial_nonkeyframes private to muxing code

It is no longer used outside of ffmpeg_mux*
This commit is contained in:
Anton Khirnov 2023-04-13 14:45:58 +02:00
parent 7f8827f28e
commit 30699c103f
4 changed files with 3 additions and 3 deletions

View file

@ -394,7 +394,7 @@ void of_streamcopy(OutputStream *ost, const AVPacket *pkt, int64_t dts)
}
if (!ms->streamcopy_started && !(pkt->flags & AV_PKT_FLAG_KEY) &&
!ost->copy_initial_nonkeyframes)
!ms->copy_initial_nonkeyframes)
return;
if (!ms->streamcopy_started) {