From: Gwenole Beauchesne Date: Fri, 16 Nov 2012 15:18:52 +0000 (+0100) Subject: codecparsers: always build parserutils first. X-Git-Tag: submit/2.0alpha/20121130.011817~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ab3ce293261ee6cfc6fbcf94adf60225ee83b89;p=profile%2Fivi%2Fgstreamer-vaapi.git codecparsers: always build parserutils first. Fix commit 18245b4 so that to link and build parserutils.[ch] first. This is needed since that's the common dependency for actual codec parsers (gstvc1parser.c for instance). --- diff --git a/gst-libs/gst/codecparsers/Makefile.am b/gst-libs/gst/codecparsers/Makefile.am index 007da41..9b40eb6 100644 --- a/gst-libs/gst/codecparsers/Makefile.am +++ b/gst-libs/gst/codecparsers/Makefile.am @@ -17,8 +17,12 @@ libgstvaapi_codecparsers_libs = \ $(GST_LIBS) \ $(NULL) -gen_source_c = gstvc1parser.c parserutils.c -gen_source_h = gstvc1parser.h parserutils.h +gen_source_c = parserutils.c +gen_source_h = parserutils.h + +# Always build VC-1 parser for now +gen_source_c += gstvc1parser.c +gen_source_h += gstvc1parser.h if USE_LOCAL_CODEC_PARSERS_JPEG gen_source_c += gstjpegparser.c