search for: audio_typ

Displaying 9 results from an estimated 9 matches for "audio_typ".

Did you mean: audio_type
2007 Jan 29
0
3 commits - autogen.sh configure.ac player/.gitignore player/Makefile.am player/swfdec_playback_alsa.c player/swfdec_playback.c player/swfdec_playback_none.c
...LSA" = "no"; then - AC_MSG_WARN([cannot find alsa, player will be disabled]) +dnl +dnl audio backend +dnl +AC_ARG_WITH(audio, + [AC_HELP_STRING([--with-audio=@<:@auto/alsa/none@:>@], + [audio backend to use])],, + [with_audio=auto]) + +AUDIO_TYPE= +if test "$with_audio" = "auto" -o "$with_audio" = "alsa"; then + PKG_CHECK_MODULES(ALSA, alsa >= 1.0, AUDIO_TYPE=alsa) + if test "$AUDIO_TYPE" = "alsa"; then + with_audio=alsa + else + AC_MSG_WARN([no alsa audio support]) +...
2007 Jul 07
0
2 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...gtk/Makefile.am b/libswfdec-gtk/Makefile.am index 84a2e8e..97efc67 100644 --- a/libswfdec-gtk/Makefile.am +++ b/libswfdec-gtk/Makefile.am @@ -1,5 +1,3 @@ -if WITH_GTK - # this workaround is needed or autotools don't generate the .deps/*.Plo files correctly swfdec_playback.c: swfdec_playback_$(AUDIO_TYPE).c Makefile cmp -s $(srcdir)/swfdec_playback_$(AUDIO_TYPE).c swfdec_playback.c \ @@ -38,8 +36,6 @@ libswfdec_ at SWFDEC_MAJORMINOR@include_HEA swfdec_gtk_player.h \ swfdec_gtk_widget.h -endif - EXTRA_DIST = \ swfdec_playback_alsa.c \ swfdec_playback_none.c diff --git a/player/Makefile...
2007 Jul 16
0
configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_playback_oss.c
...@:>@], + [AC_HELP_STRING([--with-audio=@<:@auto/alsa/oss/none@:>@], [audio backend to use])],, [with_audio=auto]) @@ -134,6 +134,8 @@ if test "$with_audio" = "auto" -o "$with PKG_CHECK_MODULES(ALSA, alsa >= 1.0, AUDIO_TYPE=alsa) if test "$AUDIO_TYPE" = "alsa"; then with_audio=alsa + AUDIO_CFLAGS=$ALSA_CFLAGS + AUDIO_LIBS=$ALSA_LIBS else if test "$with_audio" = "alsa"; then AC_MSG_ERROR([no alsa audio support]) @@ -141,8 +143,14 @@ if test "$wi...
2007 Jul 07
0
Branch 'as' - 3 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...gtk/Makefile.am b/libswfdec-gtk/Makefile.am index 84a2e8e..97efc67 100644 --- a/libswfdec-gtk/Makefile.am +++ b/libswfdec-gtk/Makefile.am @@ -1,5 +1,3 @@ -if WITH_GTK - # this workaround is needed or autotools don't generate the .deps/*.Plo files correctly swfdec_playback.c: swfdec_playback_$(AUDIO_TYPE).c Makefile cmp -s $(srcdir)/swfdec_playback_$(AUDIO_TYPE).c swfdec_playback.c \ @@ -38,8 +36,6 @@ libswfdec_ at SWFDEC_MAJORMINOR@include_HEA swfdec_gtk_player.h \ swfdec_gtk_widget.h -endif - EXTRA_DIST = \ swfdec_playback_alsa.c \ swfdec_playback_none.c diff --git a/player/Makefile...
2007 Nov 08
0
configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_playback_pa.c
...; then fi fi +dnl Use PA if ALSA wasn't found and we're auto and it's available. +dnl Disabled for now until the PA backend works. +if test "$with_audio" = "auto" -o "$with_audio" = "pa"; then + PKG_CHECK_MODULES(PA, libpulse-mainloop-glib, AUDIO_TYPE=pa) + if test "$AUDIO_TYPE" = "pa"; then + with_audio=pa + AUDIO_CFLAGS=$PA_CFLAGS + AUDIO_LIBS=$PA_LIBS + else + if test "$with_audio" = "pa"; then + AC_MSG_ERROR([no pulseaudio support]) + else + AC_MSG_WARN([no pulseaudio suppor...
2007 Jan 31
0
Branch 'interpreter' - 20 commits - autogen.sh configure.ac libswfdec/js libswfdec/swfdec_debug.h libswfdec/swfdec_js.c libswfdec/swfdec_js_color.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_script.c
...LSA" = "no"; then - AC_MSG_WARN([cannot find alsa, player will be disabled]) +dnl +dnl audio backend +dnl +AC_ARG_WITH(audio, + [AC_HELP_STRING([--with-audio=@<:@auto/alsa/none@:>@], + [audio backend to use])],, + [with_audio=auto]) + +AUDIO_TYPE= +if test "$with_audio" = "auto" -o "$with_audio" = "alsa"; then + PKG_CHECK_MODULES(ALSA, alsa >= 1.0, AUDIO_TYPE=alsa) + if test "$AUDIO_TYPE" = "alsa"; then + with_audio=alsa + else + AC_MSG_WARN([no alsa audio support]) +...
2007 Dec 01
1
OpenBSD related patches
Hello, list ! Here is diff of changes, i had to make to get swfdec running on OpenBSD 4.2-current. Regards Valery. P.S. Please cc me, i am not subscribed to the list -------------- next part -------------- A non-text attachment was scrubbed... Name: swfdec.diff Type: application/octet-stream Size: 11628 bytes Desc: not available Url :
2007 Mar 27
0
15 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/.gitignore libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h
...movie libswfdecui to libswfdec-gtk and make libswfdec-gtk an installed library diff --git a/configure.ac b/configure.ac index 5ac3db0..65be1fc 100644 --- a/configure.ac +++ b/configure.ac @@ -122,7 +122,11 @@ if test "$with_audio" = "auto" -o "$with if test "$AUDIO_TYPE" = "alsa"; then with_audio=alsa else - AC_MSG_WARN([no alsa audio support]) + if test "$with_audio" = "alsa"; then + AC_MSG_ERROR([no alsa audio support]) + else + AC_MSG_WARN([no alsa audio support]) + fi fi AUDIO_CFLAGS=$ALSA...
2007 Apr 17
0
8 commits - configure.ac doc/Makefile.am libswfdec/jpeg libswfdec/swfdec_debug.h libswfdec/swfdec_image.c
...- AC_MSG_WARN([cannot find GTK+-2.0, player will be disabled]) + AC_MSG_WARN([gtk+-2.0 >= $GTK_VER not found, disabling build of player]) fi AM_CONDITIONAL(WITH_GTK,[test "$HAVE_GTK" != "no"]) @@ -125,18 +127,20 @@ AC_SUBST(AUDIO_LIBS) AC_SUBST(AUDIO_CFLAGS) AC_SUBST(AUDIO_TYPE) -PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.1.1, HAVE_LIBOIL=yes, HAVE_LIBOIL=no) +LIBOIL_VER=0.3.1 +PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= $LIBOIL_VER, HAVE_LIBOIL=yes, HAVE_LIBOIL=no) AC_SUBST(LIBOIL_LIBS) AC_SUBST(LIBOIL_CFLAGS) if test "$HAVE_LIBOIL" = "no"; t...