diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-11-30 20:35:48 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-11-30 20:35:48 +0000 |
commit | 917fa5603cb9fa67c224846bcbf34bce4a8baa75 (patch) | |
tree | 246b2eed720e616da7f594e6acc2ee70914e90ed | |
parent | 2c170f65f62f5aa9dd853fc92cb7661e4f1d7176 (diff) | |
download | xine-lib-917fa5603cb9fa67c224846bcbf34bce4a8baa75.tar.gz xine-lib-917fa5603cb9fa67c224846bcbf34bce4a8baa75.tar.bz2 |
SPU CLUT from new dvdnav fixed.
CVS patchset: 1146
CVS date: 2001/11/30 20:35:48
-rw-r--r-- | src/libspudec/xine_decoder.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libspudec/xine_decoder.c b/src/libspudec/xine_decoder.c index 0f30aecf6..25d80f7b3 100644 --- a/src/libspudec/xine_decoder.c +++ b/src/libspudec/xine_decoder.c @@ -19,7 +19,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: xine_decoder.c,v 1.41 2001/11/30 19:31:55 jcdutton Exp $ + * $Id: xine_decoder.c,v 1.42 2001/11/30 20:35:48 jcdutton Exp $ * * stuff needed to turn libspu into a xine decoder plugin */ @@ -221,6 +221,7 @@ static void spudec_decode_data (spu_decoder_t *this_gen, buf_element_t *buf) { cur_seq = &this->spu_stream_state[stream_id].ra_seq; if (buf->type == BUF_SPU_CLUT) { + printf("libspudec: SPU CLUT\n"); if (buf->content[0]) { /* cheap endianess detection */ xine_fast_memcpy(this->state.clut, buf->content, sizeof(uint32_t)*16); } else { |