Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Makefile.ffmpeg: enable h264_mp4toannexb bsf for libav muxer
  • Loading branch information
perexg committed Oct 17, 2014
1 parent 1ae61a1 commit 69b585f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile.ffmpeg
Expand Up @@ -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
Expand Down Expand Up @@ -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 $@
Expand Down

0 comments on commit 69b585f

Please sign in to comment.