From 372694279b2e328e0144d73c15fcbcbc616cfad9 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Wed, 31 Aug 2005 18:07:29 +0000 Subject: [PATCH] all these plugins are moved to gst-plugins-ugly Original commit message from CVS: all these plugins are moved to gst-plugins-ugly --- ChangeLog | 52 ++++++++++++++++++++ configure.ac | 123 +----------------------------------------------- ext/Makefile.am | 55 ---------------------- po/af.po | 9 ++-- po/az.po | 9 ++-- po/cs.po | 9 ++-- po/en_GB.po | 9 ++-- po/hu.po | 9 ++-- po/it.po | 10 ++-- po/nb.po | 6 +-- po/nl.po | 9 ++-- po/or.po | 9 ++-- po/sq.po | 9 ++-- po/sr.po | 9 ++-- po/sv.po | 11 ++--- po/uk.po | 9 ++-- po/vi.po | 13 +++-- sys/Makefile.am | 4 +- 18 files changed, 112 insertions(+), 252 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0c62918c7e..89f77de95a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,55 @@ +2005-08-31 Thomas Vander Stichele + + * configure.ac: + * ext/Makefile.am: + * ext/mad/Makefile.am: + * ext/mad/gstid3tag.c: + * ext/mad/gstmad.c: + * ext/mad/gstmad.h: + * gst/mpegaudio/.cvsignore: + * gst/mpegaudio/Makefile.am: + * gst/mpegaudio/README.crh: + * gst/mpegaudio/common.c: + * gst/mpegaudio/common.h: + * gst/mpegaudio/encode.c: + * gst/mpegaudio/encoder.h: + * gst/mpegaudio/fixes.txt: + * gst/mpegaudio/gstmpegaudio.c: + * gst/mpegaudio/gstmpegaudio.h: + * gst/mpegaudio/mpegaudio.vcproj: + * gst/mpegaudio/musicin.c: + * gst/mpegaudio/musicin.h: + * gst/mpegaudio/psy.c: + * gst/mpegaudio/putbits.c: + * gst/mpegaudio/putbits.h: + * gst/mpegaudio/readme.txt: + * gst/mpegaudio/release.txt: + * gst/mpegaudio/subs.c: + * gst/mpegaudio/table_absthr.h: + * gst/mpegaudio/table_alloc.h: + * gst/mpegaudio/table_cb.h: + * gst/mpegaudio/table_enwindow.h: + * gst/mpegaudio/table_th.h: + * gst/mpegaudio/tables.c: + * gst/mpegaudio/tonal.c: + * po/af.po: + * po/az.po: + * po/cs.po: + * po/en_GB.po: + * po/hu.po: + * po/it.po: + * po/nb.po: + * po/nl.po: + * po/or.po: + * po/sq.po: + * po/sr.po: + * po/sv.po: + * po/uk.po: + * po/vi.po: + * sys/Makefile.am: + + all these plugins are moved to gst-plugins-ugly + 2005-08-31 Michael Smith * configure.ac: diff --git a/configure.ac b/configure.ac index c3acfc52b8..64b9741e19 100644 --- a/configure.ac +++ b/configure.ac @@ -285,11 +285,7 @@ AC_SUBST(GST_PLUGIN_LDFLAGS) dnl these are all the gst plug-ins, compilable without additional libs GST_PLUGINS_ALL="\ - mpegaudioparse \ qtdemux \ - realmedia \ - silence \ - mpegaudioparse \ " dnl see if we can build C++ plug-ins @@ -321,42 +317,11 @@ dnl ========================================================================== dnl ============================= sys plug-ins ================================ dnl ========================================================================== -dnl *** OSS audio *** (Linux, *BSD) -translit(dnm, m, l) AM_CONDITIONAL(USE_OSS, true) -GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [ - HAVE_OSS="yes" -dnl Linux and newer BSD versions : - AC_CHECK_HEADER(sys/soundcard.h, [ - AC_DEFINE(HAVE_OSS_INCLUDE_IN_SYS,, [Define if OSS includes are in /sys/]) - ] , [ -dnl Some old BSD versions : - AC_CHECK_HEADER(soundcard.h, [ - AC_DEFINE(HAVE_OSS_INCLUDE_IN_ROOT,, [Define if OSS includes are in /]) - ], [ - dnl Some old BSD versions : - AC_CHECK_HEADER(machine/soundcard.h, [ - AC_DEFINE(HAVE_OSS_INCLUDE_IN_MACHINE,, [Define if OSS includes are in /machine/]) - ], [ - HAVE_OSS="no" - ]) - ]) - ]) -]) dnl ########################### dnl # Configure external libs # dnl ########################### -dnl *** AMR-NB *** -translit(dnm, m, l) AM_CONDITIONAL(USE_AMRNB, true) -GST_CHECK_FEATURE(AMRNB, [AMR-NB], amrnbdec amrnbenc, [ - GST_CHECK_LIBHEADER(AMRNB, amrnb, - Decoder_Interface_init, -lm, - amrnb/interf_dec.h, - AMRNB_LIBS="-lamrnb -lm" - AC_SUBST(AMRNB_LIBS)) -]) - dnl **** Free AAC Decoder (FAAD) **** translit(dnm, m, l) AM_CONDITIONAL(USE_FAAD, true) GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [ @@ -390,80 +355,6 @@ return 0; AC_SUBST(FAAD_LIBS) ]) -dnl *** lame *** -translit(dnm, m, l) AM_CONDITIONAL(USE_LAME, true) -GST_CHECK_FEATURE(LAME, [lame mp3 encoder library], lame, [ - GST_CHECK_LIBHEADER(LAME, mp3lame, lame_init, -lm, lame/lame.h, - [ - HAVE_LAME="yes" - LAME_LIBS="-lmp3lame -lm" - dnl is lame presets available - LAME_CFLAGS="" - AC_TRY_RUN([ -#include -int main (int argc, char *argv[]) -{ - printf("%d\n", MEDIUM); - return 0; -} - ], - [LAME_CFLAGS="-DGSTLAME_PRESET"], - [LAME_CFLAGS=""] - ) - AC_SUBST(LAME_CFLAGS) - AC_SUBST(LAME_LIBS) - ]) -]) - -dnl *** mad *** -dnl FIXME: we could use header checks here as well IMO -translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true) -GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [ - dnl check with pkg-config first - PKG_CHECK_MODULES(MAD, mad >= 0.15 id3tag >= 0.15, HAVE_MAD="yes", HAVE_MAD="no") - if test "x$HAVE_MAD" = "xno"; then - dnl fall back to oldskool detection - AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad") - if test "x$HAVE_MAD" = "xyes"; then - HAVE_MAD="no" - save_LIBS=$LIBS - LIBS="-lz" - AC_CHECK_LIB(id3tag, id3_tag_options, HAVE_MAD="yes" MAD_LIBS="-lmad -lid3tag -lz") - LIBS=$save_LIBS - fi - fi -]) -AC_SUBST(MAD_LIBS) - -dnl *** mpeg2dec *** -translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true) -GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [ - PKG_CHECK_MODULES(MPEG2DEC, libmpeg2 >= 0.4.0, - HAVE_MPEG2DEC="yes", HAVE_MPEG2DEC="no") - AC_SUBST(MPEG2DEC_CFLAGS) - AC_SUBST(MPEG2DEC_LIBS) -]) - -dnl *** shout2 *** -translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT2, true) -GST_CHECK_FEATURE(SHOUT2, [shout2 plug-in], shout2send, [ - PKG_CHECK_MODULES(SHOUT2, shout >= 2.0, [ - HAVE_SHOUT2="yes" - AC_SUBST(SHOUT2_CFLAGS) - AC_SUBST(SHOUT2_LIBS) - ], [ - AM_PATH_SHOUT2(HAVE_SHOUT2="yes", HAVE_SHOUT2="no") - AC_SUBST(SHOUT2_CFLAGS) - AC_SUBST(SHOUT2_LIBS) - ]) -]) - -dnl *** sidplay : works with libsidplay 1.36.x (not 2.x.x) *** -translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true) -GST_CHECK_FEATURE(SIDPLAY, [sidplay plug-in], sidplay, [ - GST_PATH_SIDPLAY() -]) - dnl also add builddir include for enumtypes and marshal GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GST_ERROR" @@ -514,28 +405,16 @@ AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin]) dnl ######################### dnl # Make the output files # dnl ######################### +dnl po/Makefile.in AC_CONFIG_FILES( Makefile gst-plugins.spec gst/Makefile -gst/mpegaudioparse/Makefile -gst/dvdlpcmdec/Makefile gst/qtdemux/Makefile -gst/realmedia/Makefile -gst/silence/Makefile sys/Makefile -sys/oss/Makefile ext/Makefile -ext/amrnb/Makefile ext/faad/Makefile -ext/lame/Makefile -ext/mad/Makefile -ext/mpeg2dec/Makefile -ext/sidplay/Makefile -gst-libs/Makefile -gst-libs/gst/Makefile -po/Makefile.in common/Makefile common/m4/Makefile m4/Makefile diff --git a/ext/Makefile.am b/ext/Makefile.am index 29d56a2fea..3b7d90a92c 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -1,15 +1,3 @@ -# if USE_A52DEC -# A52DEC_DIR=a52dec -# else -A52DEC_DIR= -# endif - -if USE_AMRNB - AMRNB_DIR=amrnb -else - AMRNB_DIR= -endif - # if USE_ARTS # ARTS_DIR=arts # else @@ -70,18 +58,6 @@ DIVX_DIR= DTS_DIR= # endif -# if USE_DVDREAD -# DVDREAD_DIR=dvdread -# else -DVDREAD_DIR= -# endif - -# if USE_DVDNAV -# DVDNAV_DIR=dvdnav -# else -DVDNAV_DIR= -# endif - # if USE_FAAC # FAAC_DIR=faac # else @@ -118,12 +94,6 @@ HERMES_DIR= JACK_DIR= # endif -if USE_LAME -LAME_DIR=lame -else -LAME_DIR= -endif - # if USE_LCS # LCS_DIR=lcs # else @@ -154,18 +124,6 @@ LIBVISUAL_DIR= LIBMMS_DIR= # endif -if USE_MAD -MAD_DIR=mad -else -MAD_DIR= -endif - -if USE_MPEG2DEC - MPEG2DEC_DIR=mpeg2dec -else - MPEG2DEC_DIR= -endif - # if USE_MPEG2ENC # MPEG2ENC_DIR=mpeg2enc # else @@ -214,12 +172,6 @@ SDL_DIR= SHOUT_DIR= # endif -if USE_SIDPLAY -SIDPLAY_DIR=sidplay -else -SIDDPLAY_DIR= -endif - # if USE_SMOOTHWAVE # SMOOTHWAVE_DIR=smoothwave # else @@ -269,8 +221,6 @@ XINE_DIR= # endif SUBDIRS=\ - $(A52DEC_DIR) \ - $(AMRNB_DIR) \ $(ARTS_DIR) \ $(ARTSC_DIR) \ $(AUDIOFILE_DIR) \ @@ -281,7 +231,6 @@ SUBDIRS=\ $(DIRECTFB_DIR) \ $(DIVX_DIR) \ $(DTS_DIR) \ - $(DVDNAV_DIR) \ $(NAS_DIR) \ $(FAAC_DIR) \ $(FAAD_DIR) \ @@ -289,13 +238,10 @@ SUBDIRS=\ $(HERMES_DIR) \ $(LIBMMS_DIR) \ $(JACK_DIR) \ - $(LAME_DIR) \ $(LCS_DIR) \ $(LIBDV_DIR) \ $(LIBFAME_DIR) \ $(LIBVISUAL_DIR) \ - $(MAD_DIR) \ - $(MPEG2DEC_DIR) \ $(MPEG2ENC_DIR) \ $(MPLEX_DIR) \ $(MUSEPACK_DIR) \ @@ -303,7 +249,6 @@ SUBDIRS=\ $(POLYP_DIR) \ $(SDL_DIR) \ $(SHOUT_DIR) \ - $(SIDPLAY_DIR) \ $(SMOOTHWAVE_DIR) \ $(SNAPSHOT_DIR) \ $(SNDFILE_DIR) \ diff --git a/po/af.po b/po/af.po index fb8e5dea80..72f5bf02e8 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.7.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-03-18 14:16+0200\n" "Last-Translator: Petri Jooste \n" "Language-Team: Afrikaans \n" @@ -39,10 +39,6 @@ msgstr "Geen l msgid "Could not write to file \"%s\"." msgstr "Kon nie skryf na l璔r \"%s\" nie." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "Geen of ongeldige klanktoevoer, AVI-stroom sal korrup wees." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -88,6 +84,9 @@ msgstr "Kon nie video-toestel \"%s\" toemaak nie." msgid "Could not write to device \"%s\"." msgstr "Kon nie skryf na toestel \"%s\" nie." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "Geen of ongeldige klanktoevoer, AVI-stroom sal korrup wees." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "OSS-toestel \"%s\" is reeds in gebruik deur 'n ander program." diff --git a/po/az.po b/po/az.po index 772e629139..f291988e30 100644 --- a/po/az.po +++ b/po/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins-0.8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-03-19 18:29+0200\n" "Last-Translator: Metin Amiroff \n" "Language-Team: Azerbaijani \n" @@ -40,10 +40,6 @@ msgstr "Fayl ad覺 verilmyib." msgid "Could not write to file \"%s\"." msgstr "\"%s\" fayl覺na yaz覺la bilmdi." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "Shv ya da olmayan audio girii, AVI yay覺m覺 pozulacaqd覺r." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -89,6 +85,9 @@ msgstr "\"%s\" video avadanl覺覺 balana bilmdi." msgid "Could not write to device \"%s\"." msgstr "\"%s\" avadanl覺覺na yaz覺la bilmdi." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "Shv ya da olmayan audio girii, AVI yay覺m覺 pozulacaqd覺r." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "\"%s\" OSS avadanl覺覺 baqa bir proqram trfindn istifadddir." diff --git a/po/cs.po b/po/cs.po index dfe981faab..00b9ea11d5 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-08-08 22:58+0200\n" "Last-Translator: Miloslav Trmac \n" "Language-Team: Czech \n" @@ -42,10 +42,6 @@ msgstr "Nezad獺n n獺zev souboru." msgid "Could not write to file \"%s\"." msgstr "Nemohu zapisovat do souboru \"%s\"." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "鬚獺dn羸 nebo neplatn羸 vstup zvuku, proud AVI bude po禳kozen." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -91,6 +87,9 @@ msgstr "Nemohu zav穩t za穩zen穩 videa \"%s\"." msgid "Could not write to device \"%s\"." msgstr "Nemohu zapisovat do za穩zen穩 \"%s\"." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "鬚獺dn羸 nebo neplatn羸 vstup zvuku, proud AVI bude po禳kozen." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "Za穩zen穩 OSS \"%s\" ji鱉 pou鱉穩v獺 jin羸 program." diff --git a/po/en_GB.po b/po/en_GB.po index ab97549a21..eabc48228f 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-04-26 10:41-0400\n" "Last-Translator: Gareth Owen \n" "Language-Team: English (British) \n" @@ -38,10 +38,6 @@ msgstr "No filename specified." msgid "Could not write to file \"%s\"." msgstr "Could not write to file \"%s\"." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "No or invalid input audio, AVI stream will be corrupt." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -87,6 +83,9 @@ msgstr "Could not close video device \"%s\"." msgid "Could not write to device \"%s\"." msgstr "Could not write to device \"%s\"." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "No or invalid input audio, AVI stream will be corrupt." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "OSS device \"%s\" is already in use by another program." diff --git a/po/hu.po b/po/hu.po index cf9edcadba..bfd53adb18 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-07-18 11:03+0200\n" "Last-Translator: Laszlo Dvornik \n" "Language-Team: Hungarian \n" @@ -38,10 +38,6 @@ msgstr "Nincs f獺jln矇v megadva." msgid "Could not write to file \"%s\"." msgstr "Nem lehet 穩rni a(z) \"%s\" f獺jlba." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "Nincs vagy 矇rv矇nytelen bemeneti hang, az AVI-folyam s矇r羹lt lesz." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -87,6 +83,9 @@ msgstr "Nem lehet lez獺rni a(z) \"%s\" videoeszk繹zt." msgid "Could not write to device \"%s\"." msgstr "Nem lehet 穩rni a(z) \"%s\" eszk繹zre." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "Nincs vagy 矇rv矇nytelen bemeneti hang, az AVI-folyam s矇r羹lt lesz." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "A(z) \"%s\" OSS-eszk繹zt m獺r haszn獺lja egy m獺sik program." diff --git a/po/it.po b/po/it.po index de33c67c28..67c219c347 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-11-07 19:11+0100\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -39,10 +39,6 @@ msgstr "Nessun nome di file specificato." msgid "Could not write to file \"%s\"." msgstr "Impossibile scrivere sul file 竄%s罈." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "Ingresso audio assente o non valido. Lo stream AVI risulter corrotto." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -88,6 +84,10 @@ msgstr "Impossibile chiudere il device video 竄%s罈." msgid "Could not write to device \"%s\"." msgstr "Impossibile scrivere sul device 竄%s罈." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "" +#~ "Ingresso audio assente o non valido. Lo stream AVI risulter corrotto." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "Il device OSS 竄%s罈 癡 gi usato da un altro programma." diff --git a/po/nb.po b/po/nb.po index 6ba7b63a50..1e04691710 100644 --- a/po/nb.po +++ b/po/nb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-10-04 15:54+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian Bokmaal \n" @@ -38,10 +38,6 @@ msgstr "Ingen filnavn oppgitt." msgid "Could not write to file \"%s\"." msgstr "Kunne ikke skrive til fil 竄%s罈." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "" - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." diff --git a/po/nl.po b/po/nl.po index fccc775172..e7ab24f8a6 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-08-05 16:26+0200\n" "Last-Translator: Elros Cyriatan \n" "Language-Team: Dutch \n" @@ -39,10 +39,6 @@ msgstr "Geen bestandsnaam opgegeven." msgid "Could not write to file \"%s\"." msgstr "Kon niet schrijven naar bestand \"%s\"." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "Geen of ongeldig invoergeluid, AVI-stroom zal slecht zijn." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -88,6 +84,9 @@ msgstr "Kon videoapparaat \"%s\" niet sluiten." msgid "Could not write to device \"%s\"." msgstr "Kon niet schrijven naar apparaat \"%s\"." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "Geen of ongeldig invoergeluid, AVI-stroom zal slecht zijn." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "OSS-apparaat \"%s\" is al in gebruik door een ander programma." diff --git a/po/or.po b/po/or.po index 11df740315..f1b08956c7 100644 --- a/po/or.po +++ b/po/or.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins-0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-09-27 13:32+0530\n" "Last-Translator: Gora Mohanty \n" "Language-Team: Oriya \n" @@ -40,10 +40,6 @@ msgstr "酮酯酮酮詮玷 酮徇狡酮酮耜洧酮擒洫 酮酮耜酮耜酮酮賴洶 酮嫩酮 msgid "Could not write to file \"%s\"." msgstr "\"%s\" 酮徇狡酮酮 酮耜酮酮賴牲酯酮耜狡 酮兒狡酮嫩玷酮." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "酮兒玷酮眇酮 酮抉酮眇洧酮 酮兒狡酮嫩玷酮 酮眇狡 酮酮眇酮 酮酮酮. 酮.酮冢玷.酮酮. 酮抉狡酮啤狡 酮冢酮啤炤酯酮 酮嫩酮酮能玷酮." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -89,6 +85,9 @@ msgstr "\"%s\" 酮冢玷酮﹤玷酮 酮能洧酯酮戈酮 酮眇洧酯酮 酮酮啤玷酮嫩 msgid "Could not write to device \"%s\"." msgstr "\"%s\" 酮能洧酯酮戈酮啤為酯 酮耜酮酮賴牲酯酮耜狡 酮兒狡酮嫩玷酮." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "酮兒玷酮眇酮 酮抉酮眇洧酮 酮兒狡酮嫩玷酮 酮眇狡 酮酮眇酮 酮酮酮. 酮.酮冢玷.酮酮. 酮抉狡酮啤狡 酮冢酮啤炤酯酮 酮嫩酮酮能玷酮." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "\"%s\" 酮.酮酮.酮酮. 酮能洧酯酮戈酮 酮芹酮啤酮眇為酯 酮酮兒酮 酮酮擒為酮賴酮 酮舟酮眇狡酮啤狡 酮眇酮能洵酮嫩狡酮 酮酮啤狡酮能狡酮酮酮." diff --git a/po/sq.po b/po/sq.po index e776df8516..4ece802731 100644 --- a/po/sq.po +++ b/po/sq.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-08-07 20:29+0200\n" "Last-Translator: Laurent Dhima \n" "Language-Team: Albanian \n" @@ -38,10 +38,6 @@ msgstr "Nuk 禱sht禱 p禱rcaktuar emri i file." msgid "Could not write to file \"%s\"." msgstr "I pamundur shkrimi tek file \"%s\"." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "Input audio i gabuar ose mungon, stream AVI mund t禱 jet禱 i d禱mtuar." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -87,6 +83,9 @@ msgstr "E pamundur mbyllja e dispozitivit video \"%s\"." msgid "Could not write to device \"%s\"." msgstr "I pamundur shkrimi n禱 dispozitivin \"%s\"." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "Input audio i gabuar ose mungon, stream AVI mund t禱 jet禱 i d禱mtuar." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "" #~ "Dispozitivi OSS \"%s\" 禱sht禱 duke u p禱rdorur nga nj禱 tjet禱r program." diff --git a/po/sr.po b/po/sr.po index 267c411791..76cd5da87e 100644 --- a/po/sr.po +++ b/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.7.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-03-13 00:18+0100\n" "Last-Translator: Danilo Segan \n" "Language-Team: Serbian \n" @@ -40,10 +40,6 @@ msgstr "邾迮 迡訄郋迮郕迮 郇邽迮 郱訄迡訄郋." msgid "Could not write to file \"%s\"." msgstr "迮 邾郋迣 迡訄 郈邽迮邾 迡訄郋迮郕 %s." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "苺郅訄郱郇郋迣 郱赲郕訄 郇迮邾訄 邽郅邽 迮 郇迮邽郈訄赲訄郇, 郋郕 迮 訇邽邽 邽郕赲訄迮郇." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -89,6 +85,9 @@ msgstr "迮 邾郋迣 迡訄 郱訄赲郋邽邾 赲邽迡迮郋 迮訄 %s." msgid "Could not write to device \"%s\"." msgstr "迮 邾郋迣 迡訄 郈邽迮邾 郇訄 赲邽迡迮郋 迮訄 %s." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "苺郅訄郱郇郋迣 郱赲郕訄 郇迮邾訄 邽郅邽 迮 郇迮邽郈訄赲訄郇, 郋郕 迮 訇邽邽 邽郕赲訄迮郇." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "OSS 迮訄 %s 赲迮 郕郋邽邽 郇迮郕邽 郈郋迣訄邾." diff --git a/po/sv.po b/po/sv.po index e973e8d5e2..3f11e6d156 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,13 +2,13 @@ # Copyright (C) 2004 Free Software Foundation, Inc. # Christian Rose , 2004. # -# $Id: sv.po,v 1.19 2005/08/28 17:59:20 wingo Exp $ +# $Id: sv.po,v 1.20 2005/08/31 18:07:28 thomasvs Exp $ # msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-08-03 20:53+0200\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -40,10 +40,6 @@ msgstr "Inget filnamn angivet." msgid "Could not write to file \"%s\"." msgstr "Kunde inte skriva till filen \"%s\"." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "Inget eller ogiltigt inljud. AVI-fl繹det kommer att skadas." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -89,6 +85,9 @@ msgstr "Kunde inte st瓣nga vidoeenheten \"%s\"." msgid "Could not write to device \"%s\"." msgstr "Kunde inte skriva till enheten \"%s\"." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "Inget eller ogiltigt inljud. AVI-fl繹det kommer att skadas." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "OSS-enheten \"%s\" anv瓣nds redan av ett annat program." diff --git a/po/uk.po b/po/uk.po index 6cb3f27994..cac0a0c0ba 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2004-08-03 15:40+0200\n" "Last-Translator: Maxim V. Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -39,10 +39,6 @@ msgstr "迮 赲郕訄郱訄郇邽邿 訄邿郅." msgid "Could not write to file \"%s\"." msgstr "迮 赲迡訄 郱訄郈邽訄邽 訄邿郅 \"%s\"." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "迡郇邿 訄訇郋 郇迮郈訄赲邽郅郇邽邿 赲迡 郱赲郕, AVI 郈郋郕 訇迡迮 郈郋郕郋迡迠迮郇邽邿." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -88,6 +84,9 @@ msgstr "迮 赲迡訄 郱訄郕邽邽 赲迡迮郋 郈邽邿 \"%s\". msgid "Could not write to device \"%s\"." msgstr "迮 赲迡訄 郱訄郈邽訄邽 郈邽邿 \"%s\"." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "迡郇邿 訄訇郋 郇迮郈訄赲邽郅郇邽邿 赲迡 郱赲郕, AVI 郈郋郕 訇迡迮 郈郋郕郋迡迠迮郇邽邿." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "OSS 郈邽邿 \"%s\" 赲迠迮 赲邽郕郋邽郋赲 郇郋 郈郋迣訄邾郋." diff --git a/po/vi.po b/po/vi.po index 51135faf25..f2ac86f8e8 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins-0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-08-25 11:45+0200\n" +"POT-Creation-Date: 2005-08-31 16:10+0200\n" "PO-Revision-Date: 2005-01-22 17:17+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -40,12 +40,6 @@ msgstr "Chがa ghi r繭 t礙n t廕計 tin." msgid "Could not write to file \"%s\"." msgstr "瓊 kh繫ng ghi が廙θ vo t廕計 tin \"%s\"." -#: gst/avi/gstavimux.c:1007 -msgid "No or invalid input audio, AVI stream will be corrupt." -msgstr "" -"Chがa c籀 d廙 li廙u 璽m thanh nh廕計, ho廕搾 d廙 li廙u 璽m thanh nh廕計 kh繫ng h廙φ l廙. S廕 " -"c籀 d簷ng AVI hが." - #: sys/dxr3/dxr3audiosink.c:296 #, c-format msgid "Could not open audio device \"%s\" for writing." @@ -91,6 +85,11 @@ msgstr "瓊 kh繫ng 籀ng が廙θ thi廕篙 b廙 廕τh 廙ng \"%s\"." msgid "Could not write to device \"%s\"." msgstr "瓊 kh繫ng ghi が廙θ vo thi廕篙 b廙 \"%s\"." +#~ msgid "No or invalid input audio, AVI stream will be corrupt." +#~ msgstr "" +#~ "Chがa c籀 d廙 li廙u 璽m thanh nh廕計, ho廕搾 d廙 li廙u 璽m thanh nh廕計 kh繫ng h廙φ l廙. " +#~ "S廕 c籀 d簷ng AVI hが." + #~ msgid "OSS device \"%s\" is already in use by another program." #~ msgstr "M廙t chがヾng tr穫nh kh獺c ang s廙 d廙叩g thi廕篙 b廙 OSS \"%s\"." diff --git a/sys/Makefile.am b/sys/Makefile.am index b86f3fec79..b8ca3c9143 100644 --- a/sys/Makefile.am +++ b/sys/Makefile.am @@ -40,6 +40,6 @@ # GL_DIR= # endif -SUBDIRS=$(OSS_DIR) +SUBDIRS = -DIST_SUBDIRS=oss +DIST_SUBDIRS =