diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-04-09 13:53:52 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-04-09 13:53:52 +0000 |
commit | ce3eaf6e094d025149ff0090f3de9437c39aab67 (patch) | |
tree | b2c62ddd34aa02d61a9eddac75296a7e3308859b /src/xine-engine | |
parent | 8ff820b65a21d201083237710298881e28d1f895 (diff) | |
download | xine-lib-ce3eaf6e094d025149ff0090f3de9437c39aab67.tar.gz xine-lib-ce3eaf6e094d025149ff0090f3de9437c39aab67.tar.bz2 |
patch to fix libsputext on seeks by Zoltán Böszörményi
CVS patchset: 1703
CVS date: 2002/04/09 13:53:52
Diffstat (limited to 'src/xine-engine')
-rw-r--r-- | src/xine-engine/load_plugins.c | 4 | ||||
-rw-r--r-- | src/xine-engine/video_decoder.c | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index a980bbf4a..3c4b7b03c 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.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: load_plugins.c,v 1.71 2002/03/14 17:28:06 guenter Exp $ + * $Id: load_plugins.c,v 1.72 2002/04/09 13:53:52 miguelfreitas Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -534,7 +534,7 @@ void load_decoder_plugins (xine_t *this, spu_decoder_t *sdp; int streamtype; - sdp = (spu_decoder_t *) initplug(4, this); + sdp = (spu_decoder_t *) initplug(5, this); if (sdp) { sdp->metronom = this->metronom; diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c index 359c28274..7bc3d68a1 100644 --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_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: video_decoder.c,v 1.81 2002/04/09 03:38:01 miguelfreitas Exp $ + * $Id: video_decoder.c,v 1.82 2002/04/09 13:53:52 miguelfreitas Exp $ * */ @@ -185,6 +185,9 @@ void *video_decoder_loop (void *this_gen) { if (this->cur_video_decoder_plugin) { this->cur_video_decoder_plugin->reset (this->cur_video_decoder_plugin); } + if (this->cur_spu_decoder_plugin) { + this->cur_spu_decoder_plugin->reset (this->cur_spu_decoder_plugin); + } break; case BUF_CONTROL_DISCONTINUITY: |