gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog backend/sound_handler_gst.cpp


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog backend/sound_handler_gst.cpp
Date: Mon, 30 Oct 2006 16:53:04 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  06/10/30 16:53:04

Modified files:
        .              : ChangeLog 
        backend        : sound_handler_gst.cpp 

Log message:
        Added stubs for aux-streaming.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1445&r2=1.1446
http://cvs.savannah.gnu.org/viewcvs/gnash/backend/sound_handler_gst.cpp?cvsroot=gnash&r1=1.22&r2=1.23

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1445
retrieving revision 1.1446
diff -u -b -r1.1445 -r1.1446
--- ChangeLog   30 Oct 2006 16:31:13 -0000      1.1445
+++ ChangeLog   30 Oct 2006 16:53:04 -0000      1.1446
@@ -6,6 +6,7 @@
        * macros/boost.m4: Applied patch from Bernhard Rosenkraenzer.
        * macros/glib.m4, macros/pango.m4: Fixed output.
        * macros/atk.m4: fixed issue due to typo (lack of '$').
+       * backend/sound_handler_gst.cpp: Added stubs for aux-streaming.
 
 2006-10-30 Hannes Mayr <address@hidden>
        * server/asobj/NetStream.cpp: added <unistd.h> include for sleep()

Index: backend/sound_handler_gst.cpp
===================================================================
RCS file: /sources/gnash/gnash/backend/sound_handler_gst.cpp,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -b -r1.22 -r1.23
--- backend/sound_handler_gst.cpp       21 Oct 2006 09:54:44 -0000      1.22
+++ backend/sound_handler_gst.cpp       30 Oct 2006 16:53:04 -0000      1.23
@@ -18,7 +18,7 @@
 // Based on sound_handler_sdl.cpp by Thatcher Ulrich http://tulrich.com 2003
 // which has been donated to the Public Domain.
 
-/* $Id: sound_handler_gst.cpp,v 1.22 2006/10/21 09:54:44 bjacques Exp $ */
+/* $Id: sound_handler_gst.cpp,v 1.23 2006/10/30 16:53:04 nihilus Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -678,6 +678,28 @@
                return muted;
        }
 
+       void attach_aux_streamer(aux_streamer_ptr /*ptr*/, void* /*owner*/)
+       {
+               cerr << __PRETTY_FUNCTION__ << "ERROR: unimplemented!" << endl;
+       }
+
+       void detach_aux_streamer(void* /*owner*/)
+       {
+               cerr << __PRETTY_FUNCTION__ << "ERROR: unimplemented!" << endl;
+       }
+
+       void convert_raw_data(
+       int16_t** /*adjusted_data*/,
+       int* /*adjusted_size*/,
+       void* /*data*/,
+       int /*sample_count*/,
+       int /*sample_size*/,
+       int /*sample_rate*/,
+       bool /*stereo*/)
+       {
+               cerr << __PRETTY_FUNCTION__ << "ERROR: unimplemented!" << endl;
+       }
+
 };
 
 




reply via email to

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