diff options
author | uid32519 <none@none> | 2001-07-04 20:32:29 +0000 |
---|---|---|
committer | uid32519 <none@none> | 2001-07-04 20:32:29 +0000 |
commit | 733a94dbd41f79c4a1b7e137bd8e032eebfaf043 (patch) | |
tree | 676ede9ee4bb316870ca7cba71aafab4a8dad864 /src/libspudec/xine_decoder.c | |
parent | 6140dca53aa5cc3d72b851f66360eecee72430e4 (diff) | |
download | xine-lib-733a94dbd41f79c4a1b7e137bd8e032eebfaf043.tar.gz xine-lib-733a94dbd41f79c4a1b7e137bd8e032eebfaf043.tar.bz2 |
latest overlay patches from James, simple overlays should work
CVS patchset: 254
CVS date: 2001/07/04 20:32:29
Diffstat (limited to 'src/libspudec/xine_decoder.c')
-rw-r--r-- | src/libspudec/xine_decoder.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/libspudec/xine_decoder.c b/src/libspudec/xine_decoder.c index bcbcbb4ce..8f9acdeb6 100644 --- a/src/libspudec/xine_decoder.c +++ b/src/libspudec/xine_decoder.c @@ -1,6 +1,8 @@ /* * Copyright (C) 2000-2001 the xine project * + * Copyright (C) James Courtier-Dutton James@superbug.demon.co.uk - July 2001 + * * This file is part of xine, a unix video player. * * xine is free software; you can redistribute it and/or modify @@ -17,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.1 2001/07/04 17:10:24 uid32519 Exp $ + * $Id: xine_decoder.c,v 1.2 2001/07/04 20:32:29 uid32519 Exp $ * * stuff needed to turn libspu into a xine decoder plugin */ @@ -82,6 +84,7 @@ void spudec_init (spu_decoder_t *this_gen, vo_instance_t *vo_out) { } +/* overlay_txt is just for test purposes */ u_int *overlay_txt (vo_overlay_t *spu, float o1) { u_int x, y; @@ -141,7 +144,7 @@ void spudec_decode_data (spu_decoder_t *this_gen, buf_element_t *buf) { printf("X=%d Y=%d w=%d h=%d\n", this->spu->x,this->spu->y, this->spu->width,this->spu->height); - /* overlay_txt(this->spu,1.0); ??? */ + /* overlay_txt(this->spu,1.0); Just for test purposes */ this->spu->PTS = buf->PTS; this->vo_out->queue_overlay (this->vo_out, this->spu); this->spu = NULL; |