From 28b80940ff69c8d860e54dd326042f4bdc038fba Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 9 Jun 2009 20:29:52 +0000 Subject: [PATCH] Express the H.264 parser dependency on the golomb code in configure instead of in the Makefile as it is done for all other parts that depend on golomb. Originally committed as revision 19139 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 3 +++ libavcodec/Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 03c046aa91..ad33c79411 100755 --- a/configure +++ b/configure @@ -1088,6 +1088,9 @@ zlib_encoder_select="zlib" zmbv_decoder_select="zlib" zmbv_encoder_select="zlib" +# parsers +h264_parser_select="golomb" + # external libraries libamr_nb_decoder_deps="libamr_nb" libamr_nb_encoder_deps="libamr_nb" diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 2b675156fb..35bd0112b1 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -407,7 +407,7 @@ OBJS-$(CONFIG_DVBSUB_PARSER) += dvbsub_parser.o OBJS-$(CONFIG_DVDSUB_PARSER) += dvdsub_parser.o OBJS-$(CONFIG_H261_PARSER) += h261_parser.o OBJS-$(CONFIG_H263_PARSER) += h263_parser.o -OBJS-$(CONFIG_H264_PARSER) += h264_parser.o h264.o h264idct.o h264pred.o cabac.o golomb.o mpegvideo.o error_resilience.o +OBJS-$(CONFIG_H264_PARSER) += h264_parser.o h264.o h264idct.o h264pred.o cabac.o mpegvideo.o error_resilience.o OBJS-$(CONFIG_MJPEG_PARSER) += mjpeg_parser.o OBJS-$(CONFIG_MLP_PARSER) += mlp_parser.o mlp.o OBJS-$(CONFIG_MPEG4VIDEO_PARSER) += mpeg4video_parser.o h263.o mpeg12data.o mpegvideo.o error_resilience.o