diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-07-03 16:08:38 +0100 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2010-06-02 19:28:15 -0700 |
commit | 9b1ee36328d531bfa0720c075a1f9c56a559556c (patch) | |
tree | 5767b1e085638125a24c280ddbb948d21318b0e5 /ext/vp8 | |
parent | 6aa3eea8aac0fb889b8afb60c33da1d589810f73 (diff) | |
download | gstreamer-plugins-bad-9b1ee36328d531bfa0720c075a1f9c56a559556c.tar.gz |
basevideo, vp8: guard unstable API with GST_USE_UNSTABLE_API
Add some guards and fat warnings to the header files with still unstable
API, so people who just look at the installed headers know that it
actually is unstable API.
Merging previous commit into current codebase.
Diffstat (limited to 'ext/vp8')
-rw-r--r-- | ext/vp8/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/vp8/Makefile.am b/ext/vp8/Makefile.am index ca9c7a10b..cd58e28a8 100644 --- a/ext/vp8/Makefile.am +++ b/ext/vp8/Makefile.am @@ -11,7 +11,8 @@ libgstvp8_la_CFLAGS = \ $(GST_PLUGINS_BAD_CFLAGS) \ $(GST_PLUGINS_BASE_CFLAGS) \ $(GST_BASE_CFLAGS) \ - $(GST_CFLAGS) + $(GST_CFLAGS) \ + -DGST_USE_UNSTABLE_API libgstvp8_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstvp8_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) libgstvp8_la_LIBADD += $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_MAJORMINOR@ -lgstvideo-@GST_MAJORMINOR@ |