]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Makefile.ffmpeg: enable h264_mp4toannexb bsf for libav muxer
authorJaroslav Kysela <perex@perex.cz>
Fri, 17 Oct 2014 11:50:59 +0000 (13:50 +0200)
committerJaroslav Kysela <perex@perex.cz>
Fri, 17 Oct 2014 11:50:59 +0000 (13:50 +0200)
Makefile.ffmpeg

index 7c1b908f29c57105f03d3839c992bef0aabb454f..7d6bc7fdb4eacf1b763fbf9384a57c6dbef4ed7c 100644 (file)
@@ -58,6 +58,7 @@ COMPONENTS      = avutil avformat avcodec swresample swscale avresample
 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
 MUXERS          = mpegts mpeg2dvd matroska
+BSFS            = h264_mp4toannexb
 
 LIBOGG          = libogg-1.3.2
 LIBOGG_TB       = $(LIBOGG).tar.gz
@@ -236,7 +237,8 @@ $(LIBAVDIR)/$(FFMPEG)/.tvh_build: \
                $(foreach component,$(COMPONENTS),--enable-$(component)) \
                $(foreach decoder,$(DECODERS),--enable-decoder=$(decoder)) \
                $(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 \
                make -C $(LIBAVDIR)/$(FFMPEG) install
        @touch $@