From 789be9a726efbdffd802c1b770b76148460e6220 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sun, 23 Dec 2001 04:38:37 +0000 Subject: much build fixage turns out synaesthesia and smoothwav depend on gtk, maybe they should go to ext/ Original commit message from CVS: much build fixage turns out synaesthesia and smoothwav depend on gtk, maybe they should go to ext/ --- gst/rtjpeg/Makefile.am | 2 +- gst/rtjpeg/gstrtjpeg.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'gst/rtjpeg') diff --git a/gst/rtjpeg/Makefile.am b/gst/rtjpeg/Makefile.am index 157ac760..8adeae0b 100644 --- a/gst/rtjpeg/Makefile.am +++ b/gst/rtjpeg/Makefile.am @@ -2,7 +2,7 @@ filterdir = $(libdir)/gst filter_LTLIBRARIES = libgstrtjpeg.la -libgstrtjpeg_la_SOURCES = gstrtjpeg.c rtjpegenc.c rtjpegdec.c RTjpeg.c +libgstrtjpeg_la_SOURCES = gstrtjpeg.c gstrtjpegenc.c gstrtjpegdec.c RTjpeg.c libgstrtjpeg_la_CFLAGS = $(GST_CFLAGS) noinst_HEADERS = gstrtjpegenc.h gstrtjpegdec.h RTjpeg.h diff --git a/gst/rtjpeg/gstrtjpeg.c b/gst/rtjpeg/gstrtjpeg.c index 335914f6..c34d0f61 100644 --- a/gst/rtjpeg/gstrtjpeg.c +++ b/gst/rtjpeg/gstrtjpeg.c @@ -41,13 +41,13 @@ conversion utilities"); /* create an elementfactory for the rtjpegenc element */ enc = gst_elementfactory_new("rtjpegenc",GST_TYPE_RTJPEGENC, - &rtjpegenc_details); + &gst_rtjpegenc_details); g_return_val_if_fail(enc != NULL, FALSE); gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (enc)); /* create an elementfactory for the rtjpegdec element */ dec = gst_elementfactory_new("rtjpegdec",GST_TYPE_RTJPEGDEC, - &rtjpegdec_details); + &gst_rtjpegdec_details); g_return_val_if_fail(dec != NULL, FALSE); gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (dec)); -- cgit v1.2.1