From: Sebastian Dröge Date: Sun, 16 Sep 2012 13:33:57 +0000 (+0200) Subject: vpx: Rename vp8 plugin to vpx X-Git-Tag: 1.19.3~509^2~6549 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a4e3d21101c9fe19af4d242878cefad3886eebe;p=platform%2Fupstream%2Fgstreamer.git vpx: Rename vp8 plugin to vpx This is using libvpx, which can support more codecs than just VP8 and will likely support future codecs. --- diff --git a/ext/vp8/GstVP8Enc.prs b/ext/vpx/GstVP8Enc.prs similarity index 100% rename from ext/vp8/GstVP8Enc.prs rename to ext/vpx/GstVP8Enc.prs diff --git a/ext/vp8/Makefile.am b/ext/vpx/Makefile.am similarity index 73% rename from ext/vp8/Makefile.am rename to ext/vpx/Makefile.am index 3b32713..f54ce1d 100644 --- a/ext/vp8/Makefile.am +++ b/ext/vpx/Makefile.am @@ -1,23 +1,23 @@ plugin_LTLIBRARIES = \ - libgstvp8.la + libgstvpx.la -libgstvp8_la_SOURCES = \ +libgstvpx_la_SOURCES = \ gstvp8dec.c \ gstvp8enc.c \ gstvp8utils.c \ plugin.c -libgstvp8_la_CFLAGS = \ +libgstvpx_la_CFLAGS = \ $(GST_PLUGINS_BASE_CFLAGS) \ $(GST_BASE_CFLAGS) \ $(GST_CFLAGS) \ $(VPX_CFLAGS) \ -DGST_USE_UNSTABLE_API -libgstvp8_la_LIBADD = \ +libgstvpx_la_LIBADD = \ $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ -lgstvideo-@GST_API_VERSION@ \ $(GST_BASE_LIBS) $(GST_LIBS) $(VPX_LIBS) -libgstvp8_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstvp8_la_LIBTOOLFLAGS = --tag=disable-static +libgstvpx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgstvpx_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = \ gstvp8dec.h \ diff --git a/ext/vp8/gstvp8dec.c b/ext/vpx/gstvp8dec.c similarity index 100% rename from ext/vp8/gstvp8dec.c rename to ext/vpx/gstvp8dec.c diff --git a/ext/vp8/gstvp8dec.h b/ext/vpx/gstvp8dec.h similarity index 100% rename from ext/vp8/gstvp8dec.h rename to ext/vpx/gstvp8dec.h diff --git a/ext/vp8/gstvp8enc.c b/ext/vpx/gstvp8enc.c similarity index 100% rename from ext/vp8/gstvp8enc.c rename to ext/vpx/gstvp8enc.c diff --git a/ext/vp8/gstvp8enc.h b/ext/vpx/gstvp8enc.h similarity index 100% rename from ext/vp8/gstvp8enc.h rename to ext/vpx/gstvp8enc.h diff --git a/ext/vp8/gstvp8utils.c b/ext/vpx/gstvp8utils.c similarity index 100% rename from ext/vp8/gstvp8utils.c rename to ext/vpx/gstvp8utils.c diff --git a/ext/vp8/gstvp8utils.h b/ext/vpx/gstvp8utils.h similarity index 100% rename from ext/vp8/gstvp8utils.h rename to ext/vpx/gstvp8utils.h diff --git a/ext/vp8/plugin.c b/ext/vpx/plugin.c similarity index 99% rename from ext/vp8/plugin.c rename to ext/vpx/plugin.c index cceae06..363e332 100644 --- a/ext/vp8/plugin.c +++ b/ext/vpx/plugin.c @@ -46,6 +46,6 @@ plugin_init (GstPlugin * plugin) GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, - vp8, + vpx, "VP8 plugin", plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)