]> git.sesse.net Git - ffmpeg/commit
avformat: only allow a single bitstream filter when muxing
authorMarton Balint <cus@passwd.hu>
Sat, 18 Apr 2020 08:49:54 +0000 (10:49 +0200)
committerMarton Balint <cus@passwd.hu>
Sun, 26 Apr 2020 20:39:01 +0000 (22:39 +0200)
commit1128aa875367f66ac11adc30364d5652919a2591
tree72a92801d4bff46f69093b364cc3bf2016d87ff7
parent499f43ae90c0b03264e874c199a5904280766782
avformat: only allow a single bitstream filter when muxing

Current muxers only use a single bitstream filter, so there is no need to
maintain code which operates on a list of bitstream filters. When multiple
bitstream filters are needed muxers can simply use a list bitstream filter.

If there is a use case in the future when different bitstream filters should be
added at subsequent packets then a new API possibly involving reconfiguring the
list bitstream filter can be added knowing the exact requirements.

Signed-off-by: Marton Balint <cus@passwd.hu>
libavformat/dashenc.c
libavformat/internal.h
libavformat/mux.c
libavformat/segment.c
libavformat/utils.c