summaryrefslogtreecommitdiff
path: root/src/libxineadec/logpcm.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-09-04 23:31:05 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-09-04 23:31:05 +0000
commit403f01979cef7e03b8322ddb870e3959c8de0f77 (patch)
tree0c40e03354069d59379b924ac9deeee0d17b10d8 /src/libxineadec/logpcm.c
parentd1010f51a2cb07ba83d71423ab740a5a0c3d0934 (diff)
downloadxine-lib-403f01979cef7e03b8322ddb870e3959c8de0f77.tar.gz
xine-lib-403f01979cef7e03b8322ddb870e3959c8de0f77.tar.bz2
merging in the new_api branch ... unfortunately video_out / vo_scale is broken now ... matthias/miguel: please fix it :-)
CVS patchset: 2606 CVS date: 2002/09/04 23:31:05
Diffstat (limited to 'src/libxineadec/logpcm.c')
-rw-r--r--src/libxineadec/logpcm.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libxineadec/logpcm.c b/src/libxineadec/logpcm.c
index ede098d9c..f755681ba 100644
--- a/src/libxineadec/logpcm.c
+++ b/src/libxineadec/logpcm.c
@@ -30,7 +30,7 @@
* http://sox.sourceforge.net/
* which listed the code as being lifted from Sun Microsystems.
*
- * $Id: logpcm.c,v 1.2 2002/09/01 04:26:20 tmmm Exp $
+ * $Id: logpcm.c,v 1.3 2002/09/04 23:31:10 guenter Exp $
*
*/
@@ -41,9 +41,10 @@
#include <stdlib.h>
#include <string.h>
-#include "audio_out.h"
#include "buffer.h"
#include "xine_internal.h"
+#include "video_out.h"
+#include "audio_out.h"
#include "xineutils.h"
#include "bswap.h"
@@ -263,8 +264,6 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, xine_t *xine) {
this = (logpcm_decoder_t *) malloc (sizeof (logpcm_decoder_t));
- this->audio_decoder.interface_version = iface_version;
- this->audio_decoder.can_handle = logpcm_can_handle;
this->audio_decoder.init = logpcm_init;
this->audio_decoder.decode_data = logpcm_decode_data;
this->audio_decoder.reset = logpcm_reset;