summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/post.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/xine-engine/post.c b/src/xine-engine/post.c
index 475a9b12f..66a9bbff2 100644
--- a/src/xine-engine/post.c
+++ b/src/xine-engine/post.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: post.c,v 1.6 2002/12/27 03:40:07 miguelfreitas Exp $
+ * $Id: post.c,v 1.7 2003/01/01 16:19:14 komadori Exp $
*/
/*
@@ -203,17 +203,14 @@ static audio_buffer_t * post_audio_get_buffer(xine_audio_port_t *port_gen) {
static void post_audio_put_buffer(xine_audio_port_t *port_gen, audio_buffer_t *buf,
xine_stream_t *stream) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
- return port->original_port->put_buffer(port->original_port, buf, stream);
}
static void post_audio_close(xine_audio_port_t *port_gen, xine_stream_t *stream) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
- return port->original_port->close(port->original_port, stream);
}
static void post_audio_exit(xine_audio_port_t *port_gen) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
- return port->original_port->exit(port->original_port);
}
static int post_audio_control (xine_audio_port_t *port_gen, int cmd, ...) {
@@ -232,7 +229,6 @@ static int post_audio_control (xine_audio_port_t *port_gen, int cmd, ...) {
static void post_audio_flush(xine_audio_port_t *port_gen) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
- return port->original_port->flush(port->original_port);
}
static int post_audio_status(xine_audio_port_t *port_gen, xine_stream_t *stream,