From 2a4e3d21101c9fe19af4d242878cefad3886eebe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 16 Sep 2012 15:33:57 +0200 Subject: [PATCH] vpx: Rename vp8 plugin to vpx This is using libvpx, which can support more codecs than just VP8 and will likely support future codecs. --- ext/{vp8 => vpx}/GstVP8Enc.prs | 0 ext/{vp8 => vpx}/Makefile.am | 12 ++++++------ ext/{vp8 => vpx}/gstvp8dec.c | 0 ext/{vp8 => vpx}/gstvp8dec.h | 0 ext/{vp8 => vpx}/gstvp8enc.c | 0 ext/{vp8 => vpx}/gstvp8enc.h | 0 ext/{vp8 => vpx}/gstvp8utils.c | 0 ext/{vp8 => vpx}/gstvp8utils.h | 0 ext/{vp8 => vpx}/plugin.c | 2 +- 9 files changed, 7 insertions(+), 7 deletions(-) rename ext/{vp8 => vpx}/GstVP8Enc.prs (100%) rename ext/{vp8 => vpx}/Makefile.am (73%) rename ext/{vp8 => vpx}/gstvp8dec.c (100%) rename ext/{vp8 => vpx}/gstvp8dec.h (100%) rename ext/{vp8 => vpx}/gstvp8enc.c (100%) rename ext/{vp8 => vpx}/gstvp8enc.h (100%) rename ext/{vp8 => vpx}/gstvp8utils.c (100%) rename ext/{vp8 => vpx}/gstvp8utils.h (100%) rename ext/{vp8 => vpx}/plugin.c (99%) 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) -- 2.7.4