diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-04-29 00:00:25 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-04-29 00:00:25 +0000 |
commit | 8b8776f69c49dee77073e805b6d23fed1054c960 (patch) | |
tree | ff88cd5f14ff8beee0dcb800c5d5d5442641a6eb /ext/Makefile.am | |
parent | 48892c24ed168126c3390d917421b0c17300dc23 (diff) | |
download | gst-plugins-bad-8b8776f69c49dee77073e805b6d23fed1054c960.tar.gz gst-plugins-bad-8b8776f69c49dee77073e805b6d23fed1054c960.tar.bz2 gst-plugins-bad-8b8776f69c49dee77073e805b6d23fed1054c960.zip |
New DTS decoder.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dts/Makefile.am:
* ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
(gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
(gst_dtsdec_channels), (gst_dtsdec_renegotiate),
(gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
(gst_dtsdec_loop), (gst_dtsdec_change_state),
(gst_dtsdec_set_property), (gst_dtsdec_get_property),
(plugin_init):
* ext/dts/gstdtsdec.h:
New DTS decoder.
* ext/faad/gstfaad.c: (gst_faad_sinkconnect),
(gst_faad_srcconnect):
Add ESDS atom handling (.m4a).
Diffstat (limited to 'ext/Makefile.am')
-rw-r--r-- | ext/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index bff4e4bf..be9169db 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -46,6 +46,12 @@ else DIVX_DIR= endif +if USE_DTS +DTS_DIR=dvdread +else +DTS_DIR= +endif + if USE_DVDREAD DVDREAD_DIR=dvdread else @@ -331,6 +337,7 @@ SUBDIRS=\ $(AUDIOFILE_DIR) \ $(CDPARANOIA_DIR) \ $(DIVX_DIR) \ + $(DTS_DIR) \ $(DVDREAD_DIR) \ $(DVDNAV_DIR) \ $(ESD_DIR) \ @@ -386,6 +393,7 @@ DIST_SUBDIRS=\ audiofile \ cdparanoia \ divx \ + dts \ dv \ dvdread \ dvdnav \ |