gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r9870: configure.ac: fix typo.


From: Bastiaan Jacques
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r9870: configure.ac: fix typo.
Date: Mon, 29 Sep 2008 21:33:38 +0200
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 9870
committer: Bastiaan Jacques <address@hidden>
branch nick: trunk
timestamp: Mon 2008-09-29 21:33:38 +0200
message:
  configure.ac: fix typo.
  libmedia/gst/AudioDecoderGst.cpp: For now, default to audioresample.
modified:
  configure.ac
  libmedia/gst/AudioDecoderGst.cpp
=== modified file 'configure.ac'
--- a/configure.ac      2008-09-29 18:35:49 +0000
+++ b/configure.ac      2008-09-29 19:33:38 +0000
@@ -1840,7 +1840,7 @@
 
 case "${media_handler}" in
   ffmpeg)  AC_DEFINE([USE_FFMPEG],  [1], [Use FFMPEG for media decoding]) ;;
-  gst)  AC_DEFINE([USE_GST],  [1], [Use FFMPEG for media decoding]) ;;
+  gst)  AC_DEFINE([USE_GST],  [1], [Use gstreamer for media decoding]) ;;
   *)
 esac
 dnl I'm kinda lazy, get rid of this later... //Markus

=== modified file 'libmedia/gst/AudioDecoderGst.cpp'
--- a/libmedia/gst/AudioDecoderGst.cpp  2008-09-29 18:35:49 +0000
+++ b/libmedia/gst/AudioDecoderGst.cpp  2008-09-29 19:33:38 +0000
@@ -88,7 +88,9 @@
         throw MediaException(_("AudioDecoderGst: internal error (caps creation 
failed)"));      
     }
 
-    bool rv = swfdec_gst_decoder_init (&_decoder, srccaps, sinkcaps, 
"audioconvert", "ffaudioresample", NULL);
+    // TODO: we may want to prefer other modules over audioresample, like 
ffaudioresample, if they are
+    // available.
+    bool rv = swfdec_gst_decoder_init (&_decoder, srccaps, sinkcaps, 
"audioconvert", "audioresample", NULL);
     if (!rv) {
         throw MediaException(_("AudioDecoderGst: initialisation failed."));    
  
     }


reply via email to

[Prev in Thread] Current Thread [Next in Thread]