diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-01-05 21:29:37 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-01-05 21:29:37 +0000 |
commit | e7776382d3c2cf58c7cd0127f9c29581a5469679 (patch) | |
tree | 69916f9afd1c5a4fee45217b8439486ff17cb48c /src/libspudec/spu.c | |
parent | c7e12ec82d1c5a44e3cc15b9112d62a6cc3b3776 (diff) | |
download | xine-lib-e7776382d3c2cf58c7cd0127f9c29581a5469679.tar.gz xine-lib-e7776382d3c2cf58c7cd0127f9c29581a5469679.tar.bz2 |
NAV packets not provide input to SPU clut,trans and clip info all in libspudec.
Still need a communication between libspudec and dvdnav for button numbers.
CVS patchset: 1342
CVS date: 2002/01/05 21:29:37
Diffstat (limited to 'src/libspudec/spu.c')
-rw-r--r-- | src/libspudec/spu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libspudec/spu.c b/src/libspudec/spu.c index 1b0289f93..59b1f0cd4 100644 --- a/src/libspudec/spu.c +++ b/src/libspudec/spu.c @@ -35,7 +35,7 @@ * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: spu.c,v 1.28 2002/01/05 18:14:27 jcdutton Exp $ + * $Id: spu.c,v 1.29 2002/01/05 21:29:37 jcdutton Exp $ * */ @@ -218,13 +218,14 @@ void spu_do_commands(spu_state_t *state, spu_seq_t* seq, vo_overlay_t *ovl) ovl->trans[2] = trans->entry1; ovl->trans[1] = trans->entry2; ovl->trans[0] = trans->entry3; +/**************************88 if ( (trans->entry0 | trans->entry1 | trans->entry2 | trans->entry3) == 0) { ovl->trans[3] = 15; ovl->trans[2] = 15; ovl->trans[1] = 15; ovl->trans[0] = 0; } - +*************************/ #ifdef LOG_DEBUG printf ("spu: \ttrans [%d %d %d %d]\n", ovl->trans[0], ovl->trans[1], ovl->trans[2], ovl->trans[3]); |