diff options
author | Mike Lampard <mlampard@users.sourceforge.net> | 2001-11-14 17:37:02 +0000 |
---|---|---|
committer | Mike Lampard <mlampard@users.sourceforge.net> | 2001-11-14 17:37:02 +0000 |
commit | 3ba6918e70153885ffe09af829072fee59ff4781 (patch) | |
tree | 89ee602a80b98c6688b6ca4559bd1a4a3e3643db | |
parent | f0ab488061f6201f20f76b5b7ef633dad43716f7 (diff) | |
download | xine-lib-3ba6918e70153885ffe09af829072fee59ff4781.tar.gz xine-lib-3ba6918e70153885ffe09af829072fee59ff4781.tar.bz2 |
remove some no-longer-needed bits. comment out the 0x10 command from
dxr3_flush, as it doesn't help...
CVS patchset: 1034
CVS date: 2001/11/14 17:37:02
-rw-r--r-- | src/dxr3/dxr3_decoder.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/dxr3/dxr3_decoder.c b/src/dxr3/dxr3_decoder.c index b3b8cbf65..f94e619fd 100644 --- a/src/dxr3/dxr3_decoder.c +++ b/src/dxr3/dxr3_decoder.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: dxr3_decoder.c,v 1.32 2001/11/14 15:17:01 mlampard Exp $ + * $Id: dxr3_decoder.c,v 1.33 2001/11/14 17:37:02 mlampard Exp $ * * dxr3 video and spu decoder plugin. Accepts the video and spu data * from XINE and sends it directly to the corresponding dxr3 devices. @@ -326,8 +326,8 @@ static void find_aspect(dxr3_decoder_t *this, uint8_t * buffer) static void dxr3_flush (video_decoder_t *this_gen) { dxr3_decoder_t *this = (dxr3_decoder_t *) this_gen; - puts("DXR3 Flushing!!"); - dxr3_mvcommand(this->fd_control, 0x11); + fprintf(stderr,"DXR3 Flushing!!"); +/* dxr3_mvcommand(this->fd_control, 0x10); */ } @@ -433,9 +433,6 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, this->video_decoder.priority = 10; this->scr_prio = cfg->lookup_int(cfg, "dxr3_scr_prio", 10); -/* temporarily force the dxr3 to be master - otherwise the plugin locks - whenever there is an audio disconuity... still does sometimes :( */ -//FIXME this->scr_prio = 20; this->enhanced_mode = cfg->lookup_int(cfg,"dxr3_buffer_mode", 0); if(this->enhanced_mode) |