mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
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:
parent
18245b484d
commit
9ab3ce2932
1 changed files with 6 additions and 2 deletions
|
@ -17,8 +17,12 @@ libgstvaapi_codecparsers_libs = \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
gen_source_c = gstvc1parser.c parserutils.c
|
gen_source_c = parserutils.c
|
||||||
gen_source_h = gstvc1parser.h parserutils.h
|
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
|
if USE_LOCAL_CODEC_PARSERS_JPEG
|
||||||
gen_source_c += gstjpegparser.c
|
gen_source_c += gstjpegparser.c
|
||||||
|
|
Loading…
Reference in a new issue