From b31ab745a506acb17a3f70119304d43b19a76988 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Sat, 14 Mar 2009 10:43:28 +0100 Subject: add new vdpau directory --- sys/vdpau/Makefile.am | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sys/vdpau/Makefile.am (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am new file mode 100644 index 00000000..03d87758 --- /dev/null +++ b/sys/vdpau/Makefile.am @@ -0,0 +1,11 @@ + +lib_LTLIBRARIES = \ + libgstvdpau.la + +libgstvdpau_la_SOURCES = + +libgstvdpau_la_CFLAGS = $(GST_CFLAGS) +libgstvdpau_la_LIBADD = $(GST_LIBS) +libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static + -- cgit v1.2.1 From b25f035fe5e02a14ae3f52912213ed6357f627f6 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Sun, 15 Mar 2009 21:21:49 +0100 Subject: vdpau: add basic base class for vdpau decoders --- sys/vdpau/Makefile.am | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index 03d87758..777a05cb 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -1,11 +1,14 @@ +plugin_LTLIBRARIES = libgstvdpau.la -lib_LTLIBRARIES = \ - libgstvdpau.la +libgstvdpau_la_SOURCES = \ + gstvdpaudecoder.c -libgstvdpau_la_SOURCES = - -libgstvdpau_la_CFLAGS = $(GST_CFLAGS) -libgstvdpau_la_LIBADD = $(GST_LIBS) +libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau +libgstvdpau_la_LIBADD = $(GST_LIBS) $(X11_LIBS) -lvdpau libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static +noinst_HEADERS = \ + gstvdpaudecoder.h + + -- cgit v1.2.1 From f2eea7d0ed8004d4630739b04daf27075d6834e5 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Fri, 20 Mar 2009 21:24:40 +0100 Subject: vdpau: implement downstream caps negotiation --- sys/vdpau/Makefile.am | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index 777a05cb..3e718abe 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -1,7 +1,8 @@ plugin_LTLIBRARIES = libgstvdpau.la libgstvdpau_la_SOURCES = \ - gstvdpaudecoder.c + gstvdpaudecoder.c\ + gstvdpauh264decoder.c libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau libgstvdpau_la_LIBADD = $(GST_LIBS) $(X11_LIBS) -lvdpau @@ -9,6 +10,8 @@ libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ - gstvdpaudecoder.h + gstvdpaudecoder.h\ + vdpauvariables.h \ + gstvdpauh264decoder.h -- cgit v1.2.1 From f6ed342f197ba0d977a1203fb10db0726e7e1858 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Wed, 25 Mar 2009 20:38:27 +0100 Subject: vdpau: focus on mpeg instead of h264 --- sys/vdpau/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index 3e718abe..94f7efbc 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -2,7 +2,7 @@ plugin_LTLIBRARIES = libgstvdpau.la libgstvdpau_la_SOURCES = \ gstvdpaudecoder.c\ - gstvdpauh264decoder.c + gstvdpaumpegdecoder.c libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau libgstvdpau_la_LIBADD = $(GST_LIBS) $(X11_LIBS) -lvdpau @@ -12,6 +12,6 @@ libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ gstvdpaudecoder.h\ vdpauvariables.h \ - gstvdpauh264decoder.h + gstvdpaumpegdecoder.h -- cgit v1.2.1 From 29d0c5bdd8beeb2b1ed25e8bf37eec9a135c5422 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Fri, 27 Mar 2009 16:55:19 +0100 Subject: vdpau: extract mpeg2 profile from codec_data --- sys/vdpau/Makefile.am | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index 94f7efbc..f66c4aa4 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -1,8 +1,9 @@ plugin_LTLIBRARIES = libgstvdpau.la libgstvdpau_la_SOURCES = \ - gstvdpaudecoder.c\ - gstvdpaumpegdecoder.c + gstvdpaudecoder.c \ + gstvdpaumpegdecoder.c \ + mpegutil.c libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau libgstvdpau_la_LIBADD = $(GST_LIBS) $(X11_LIBS) -lvdpau @@ -10,8 +11,9 @@ libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ - gstvdpaudecoder.h\ + gstvdpaudecoder.h \ vdpauvariables.h \ - gstvdpaumpegdecoder.h + gstvdpaumpegdecoder.h \ + mpegutil.h -- cgit v1.2.1 From 584b000583c7050689d7a93e5d6dc7083bbdfcbd Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Fri, 27 Mar 2009 17:11:04 +0100 Subject: vdpau: store vdpau function pointers in a local structure --- sys/vdpau/Makefile.am | 1 - 1 file changed, 1 deletion(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index f66c4aa4..b786be0d 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -12,7 +12,6 @@ libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ gstvdpaudecoder.h \ - vdpauvariables.h \ gstvdpaumpegdecoder.h \ mpegutil.h -- cgit v1.2.1 From a727e6a0229823170a89ca79b9f07b79fbc7a061 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Tue, 31 Mar 2009 22:53:40 +0200 Subject: vdpau: MPEG1 decoding know gives recognizable output --- sys/vdpau/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index b786be0d..ef43e5fd 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -6,7 +6,8 @@ libgstvdpau_la_SOURCES = \ mpegutil.c libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau -libgstvdpau_la_LIBADD = $(GST_LIBS) $(X11_LIBS) -lvdpau +libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \ + $(GST_PLUGINS_BASE) $(X11_LIBS) -lgstvideo-$(GST_MAJORMINOR) -lvdpau libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static -- cgit v1.2.1 From f74f44c24f97b03163b854516b025fed8e9b29a3 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Wed, 1 Apr 2009 21:19:18 +0200 Subject: vdpau: add gstvdpaudevice for abstracting vdpau initalization --- sys/vdpau/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index ef43e5fd..f5a5ed1e 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -1,9 +1,10 @@ plugin_LTLIBRARIES = libgstvdpau.la libgstvdpau_la_SOURCES = \ + gst-vdpau-device.c \ gstvdpaudecoder.c \ gstvdpaumpegdecoder.c \ - mpegutil.c + mpegutil.c \ libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \ @@ -12,8 +13,9 @@ libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ + gst-vdpau-device.h \ gstvdpaudecoder.h \ gstvdpaumpegdecoder.h \ - mpegutil.h + mpegutil.h -- cgit v1.2.1 From 21d774023635ecb3b261c4132a05b194b95b7f35 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Wed, 1 Apr 2009 21:26:45 +0200 Subject: vdpau: remove extra \ from Makefile.am --- sys/vdpau/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index f5a5ed1e..0ee88bf7 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -4,7 +4,7 @@ libgstvdpau_la_SOURCES = \ gst-vdpau-device.c \ gstvdpaudecoder.c \ gstvdpaumpegdecoder.c \ - mpegutil.c \ + mpegutil.c libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \ -- cgit v1.2.1 From 85acf023dff4bc48d9a043e6c8666ac36153c387 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Fri, 3 Apr 2009 17:51:16 +0200 Subject: vdpau: rename gst-vdpau-device.[ch] to gstvdpaudevice.[ch] --- sys/vdpau/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index 0ee88bf7..0e3b578e 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -1,7 +1,7 @@ plugin_LTLIBRARIES = libgstvdpau.la libgstvdpau_la_SOURCES = \ - gst-vdpau-device.c \ + gstvdpaudevice.c \ gstvdpaudecoder.c \ gstvdpaumpegdecoder.c \ mpegutil.c @@ -13,7 +13,7 @@ libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ - gst-vdpau-device.h \ + gstvdpaudevice.h \ gstvdpaudecoder.h \ gstvdpaumpegdecoder.h \ mpegutil.h -- cgit v1.2.1 From 85158b07eabb0d8fe7e4f29b06ea447a54505ad8 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Sat, 4 Apr 2009 20:53:35 +0200 Subject: vdpau: add new GstVdpauVideoYUV element GstVdpauDecoder now pushes GstVdpauVideoBuffers instead of doing VdpSurface -> YUV conversion. To get YUV data you now put in a GstVdpauVideoYUV element which takes GstVdpauVideoBuffers and outputs YUV data. --- sys/vdpau/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index 0e3b578e..ba286d54 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -4,7 +4,9 @@ libgstvdpau_la_SOURCES = \ gstvdpaudevice.c \ gstvdpaudecoder.c \ gstvdpaumpegdecoder.c \ - mpegutil.c + mpegutil.c \ + gstvdpauvideoyuv.c \ + gstvdpauvideobuffer.c libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \ @@ -16,6 +18,8 @@ noinst_HEADERS = \ gstvdpaudevice.h \ gstvdpaudecoder.h \ gstvdpaumpegdecoder.h \ + gstvdpauvideoyuv.h \ + gstvdpauvideobuffer.h \ mpegutil.h -- cgit v1.2.1 From 3d4a340cfa134615164af6a93b7ce9d36b84f191 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Sat, 4 Apr 2009 22:03:23 +0200 Subject: vdpau: move plugin definition to a new gstvdpau.c file fix up debug categories --- sys/vdpau/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index ba286d54..0b7e5e5c 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -6,7 +6,8 @@ libgstvdpau_la_SOURCES = \ gstvdpaumpegdecoder.c \ mpegutil.c \ gstvdpauvideoyuv.c \ - gstvdpauvideobuffer.c + gstvdpauvideobuffer.c \ + gstvdpau.c libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \ -- cgit v1.2.1 From f8e0c0bcc11735e14636c7ea45fd23253e6cef99 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Tue, 7 Apr 2009 20:46:49 +0200 Subject: vdpau: add new GstVdpauYUVVideo element the GstVdpauYUVVideo element takes raw YUV video and outputs GstVdpauVideoBuffers --- sys/vdpau/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index 0b7e5e5c..f10cae89 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -7,7 +7,8 @@ libgstvdpau_la_SOURCES = \ mpegutil.c \ gstvdpauvideoyuv.c \ gstvdpauvideobuffer.c \ - gstvdpau.c + gstvdpau.c \ + gstvdpauyuvvideo.c libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \ @@ -19,8 +20,9 @@ noinst_HEADERS = \ gstvdpaudevice.h \ gstvdpaudecoder.h \ gstvdpaumpegdecoder.h \ + mpegutil.h \ gstvdpauvideoyuv.h \ gstvdpauvideobuffer.h \ - mpegutil.h + gstvdpauyuvvideo.h -- cgit v1.2.1 From 48143abdab828f6ea475c678bccb5a263c50e657 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Mon, 13 Apr 2009 22:19:20 +0200 Subject: vdpau: rename all files and objects from Vdpau to Vdp --- sys/vdpau/Makefile.am | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index f10cae89..a603ec77 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -1,14 +1,14 @@ plugin_LTLIBRARIES = libgstvdpau.la libgstvdpau_la_SOURCES = \ - gstvdpaudevice.c \ - gstvdpaudecoder.c \ - gstvdpaumpegdecoder.c \ + gstvdpdevice.c \ + gstvdpdecoder.c \ + gstvdpmpegdecoder.c \ mpegutil.c \ - gstvdpauvideoyuv.c \ - gstvdpauvideobuffer.c \ - gstvdpau.c \ - gstvdpauyuvvideo.c + gstvdpvideoyuv.c \ + gstvdpvideobuffer.c \ + gstvdp.c \ + gstvdpyuvvideo.c libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \ @@ -17,12 +17,12 @@ libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ - gstvdpaudevice.h \ - gstvdpaudecoder.h \ - gstvdpaumpegdecoder.h \ + gstvdpdevice.h \ + gstvdpdecoder.h \ + gstvdpmpegdecoder.h \ mpegutil.h \ - gstvdpauvideoyuv.h \ - gstvdpauvideobuffer.h \ - gstvdpauyuvvideo.h + gstvdpvideoyuv.h \ + gstvdpvideobuffer.h \ + gstvdpyuvvideo.h -- cgit v1.2.1 From 27606d4e104ec0f78f8ef3c4171d68f5069c7c91 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Thu, 4 Jun 2009 19:17:14 +0200 Subject: vpdaumpegdec: remove useless GstVdpDecoder baseclass --- sys/vdpau/Makefile.am | 2 -- 1 file changed, 2 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index a603ec77..053332b0 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -2,7 +2,6 @@ plugin_LTLIBRARIES = libgstvdpau.la libgstvdpau_la_SOURCES = \ gstvdpdevice.c \ - gstvdpdecoder.c \ gstvdpmpegdecoder.c \ mpegutil.c \ gstvdpvideoyuv.c \ @@ -18,7 +17,6 @@ libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ gstvdpdevice.h \ - gstvdpdecoder.h \ gstvdpmpegdecoder.h \ mpegutil.h \ gstvdpvideoyuv.h \ -- cgit v1.2.1 From 8619160ec89ac7c8aed300f1f644fc0f50a294e8 Mon Sep 17 00:00:00 2001 From: Carl-Anton Ingmarsson Date: Fri, 5 Jun 2009 21:48:28 +0200 Subject: vdpaumpegdec: rename gstvdpmpegdecoder.[ch] to gstvdpmpegdec.[ch] --- sys/vdpau/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index 053332b0..f4380aff 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -2,7 +2,7 @@ plugin_LTLIBRARIES = libgstvdpau.la libgstvdpau_la_SOURCES = \ gstvdpdevice.c \ - gstvdpmpegdecoder.c \ + gstvdpmpegdec.c \ mpegutil.c \ gstvdpvideoyuv.c \ gstvdpvideobuffer.c \ @@ -17,7 +17,7 @@ libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ gstvdpdevice.h \ - gstvdpmpegdecoder.h \ + gstvdpmpegdec.h \ mpegutil.h \ gstvdpvideoyuv.h \ gstvdpvideobuffer.h \ -- cgit v1.2.1 From f45f87709c7da9105024b0ceedda0e3155526240 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Fri, 12 Jun 2009 16:39:39 +0100 Subject: VDPAU: Enhance the configure tests Check for the VDPAU headers in /usr/include/nvidia as they are on some platforms (Fedora/rpmfusion). Also check that the libvdpau library is available. --- sys/vdpau/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index f4380aff..f62ee0b4 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -9,9 +9,10 @@ libgstvdpau_la_SOURCES = \ gstvdp.c \ gstvdpyuvvideo.c -libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau +libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) $(VDPAU_CFLAGS) libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \ - $(GST_PLUGINS_BASE) $(X11_LIBS) -lgstvideo-$(GST_MAJORMINOR) -lvdpau + $(GST_PLUGINS_BASE) $(X11_LIBS) -lgstvideo-$(GST_MAJORMINOR) \ + $(VDPAU_LIBS) libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static -- cgit v1.2.1 From 8c89eb9a5be9307867c836f9072ecaf0cdee2e42 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Thu, 18 Jun 2009 17:06:23 +0100 Subject: VDPAU: Fix build flags to pull in gst-plugins-base libs --- sys/vdpau/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/vdpau/Makefile.am') diff --git a/sys/vdpau/Makefile.am b/sys/vdpau/Makefile.am index f62ee0b4..93a7513a 100644 --- a/sys/vdpau/Makefile.am +++ b/sys/vdpau/Makefile.am @@ -9,9 +9,9 @@ libgstvdpau_la_SOURCES = \ gstvdp.c \ gstvdpyuvvideo.c -libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) $(VDPAU_CFLAGS) +libgstvdpau_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X11_CFLAGS) $(VDPAU_CFLAGS) libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \ - $(GST_PLUGINS_BASE) $(X11_LIBS) -lgstvideo-$(GST_MAJORMINOR) \ + $(GST_PLUGINS_BASE_LIBS) $(X11_LIBS) -lgstvideo-$(GST_MAJORMINOR) \ $(VDPAU_LIBS) libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static -- cgit v1.2.1