diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-08-24 13:34:05 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-08-24 13:34:05 +0000 |
commit | 0232ff9645070024f90e7c83b821fb472c46e34b (patch) | |
tree | e5c5184bc62d04459cc3abcf523d89414111bce5 | |
parent | 3885c61ec9614bfac270755db6025289e2f059d0 (diff) | |
download | gst-plugins-bad-0232ff9645070024f90e7c83b821fb472c46e34b.tar.gz gst-plugins-bad-0232ff9645070024f90e7c83b821fb472c46e34b.tar.bz2 gst-plugins-bad-0232ff9645070024f90e7c83b821fb472c46e34b.zip |
enable more; update for basetransform
Original commit message from CVS:
enable more; update for basetransform
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | ext/Makefile.am | 8 |
3 files changed, 15 insertions, 5 deletions
@@ -1,3 +1,12 @@ +2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org> + + * configure.ac: + * ext/Makefile.am: + lame and mpegaudioparse seem to work + * gst/videobox/gstvideobox.c: (gst_video_box_class_init), + (gst_video_box_transform_caps), (gst_video_box_get_unit_size): + update for basetransform changes + 2005-08-24 Jan Schmidt <thaytan@mad.scientist.com> * gst/level/gstlevel.c: (gst_level_message_new): GST_MESSAGE_SRC became a GObject @@ -5,7 +14,7 @@ 2005-08-23 Stefan Kost <ensonic@users.sf.net> * ext/speex/gstspeexenc.h: - Fixed include path of adapter + Fixed include path of adapter 2005-08-23 Wim Taymans <wim@fluendo.com> diff --git a/configure.ac b/configure.ac index ca0822da..ef595670 100644 --- a/configure.ac +++ b/configure.ac @@ -294,6 +294,7 @@ GST_PLUGINS_ALL="\ goom \ law \ level \ + mpegaudioparse \ qtdemux \ realmedia \ rtp \ diff --git a/ext/Makefile.am b/ext/Makefile.am index de7252cd..082884ee 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -172,11 +172,11 @@ endif LADSPA_DIR= # endif -# if USE_LAME -# LAME_DIR=lame -# else +if USE_LAME +LAME_DIR=lame +else LAME_DIR= -# endif +endif # if USE_LCS # LCS_DIR=lcs |