Makefile.ffmpeg: enable h264_mp4toannexb bsf for libav muxer
This commit is contained in:
parent
1ae61a1c17
commit
69b585f0d0
1 changed files with 3 additions and 1 deletions
|
@ -58,6 +58,7 @@ COMPONENTS = avutil avformat avcodec swresample swscale avresample
|
||||||
DECODERS = mpeg2video mp2 ac3 eac3 h264 h264_vdpau aac aac_latm vorbis libvorbis
|
DECODERS = mpeg2video mp2 ac3 eac3 h264 h264_vdpau aac aac_latm vorbis libvorbis
|
||||||
ENCODERS = mpeg2video mp2 libx264 libvpx_vp8 libvpx_vp9 aac libaacplus vorbis libvorbis
|
ENCODERS = mpeg2video mp2 libx264 libvpx_vp8 libvpx_vp9 aac libaacplus vorbis libvorbis
|
||||||
MUXERS = mpegts mpeg2dvd matroska
|
MUXERS = mpegts mpeg2dvd matroska
|
||||||
|
BSFS = h264_mp4toannexb
|
||||||
|
|
||||||
LIBOGG = libogg-1.3.2
|
LIBOGG = libogg-1.3.2
|
||||||
LIBOGG_TB = $(LIBOGG).tar.gz
|
LIBOGG_TB = $(LIBOGG).tar.gz
|
||||||
|
@ -236,7 +237,8 @@ $(LIBAVDIR)/$(FFMPEG)/.tvh_build: \
|
||||||
$(foreach component,$(COMPONENTS),--enable-$(component)) \
|
$(foreach component,$(COMPONENTS),--enable-$(component)) \
|
||||||
$(foreach decoder,$(DECODERS),--enable-decoder=$(decoder)) \
|
$(foreach decoder,$(DECODERS),--enable-decoder=$(decoder)) \
|
||||||
$(foreach encoder,$(ENCODERS),--enable-encoder=$(encoder)) \
|
$(foreach encoder,$(ENCODERS),--enable-encoder=$(encoder)) \
|
||||||
$(foreach muxer,$(MUXERS),--enable-muxer=$(muxer))
|
$(foreach muxer,$(MUXERS),--enable-muxer=$(muxer)) \
|
||||||
|
$(foreach bsf,$(BSFS),--enable-bsf=$(bsf))
|
||||||
DESTDIR=$(LIBAVDIR)/build \
|
DESTDIR=$(LIBAVDIR)/build \
|
||||||
make -C $(LIBAVDIR)/$(FFMPEG) install
|
make -C $(LIBAVDIR)/$(FFMPEG) install
|
||||||
@touch $@
|
@touch $@
|
||||||
|
|
Loading…
Add table
Reference in a new issue