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).
This commit is contained in:
Gwenole Beauchesne 2012-11-16 16:18:52 +01:00
parent 18245b484d
commit 9ab3ce2932

View file

@ -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