summaryrefslogtreecommitdiff
path: root/src/libspudec/spu.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-12-26 21:53:41 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-12-26 21:53:41 +0000
commit4b80217cb872335e6f01de22d58fc0778da265c6 (patch)
treeaec4ac26159e8e0670263c00cbab7be4ce3e4cab /src/libspudec/spu.c
parentc42215d759320ab0cfb4d997064535c0bf32f785 (diff)
downloadxine-lib-4b80217cb872335e6f01de22d58fc0778da265c6.tar.gz
xine-lib-4b80217cb872335e6f01de22d58fc0778da265c6.tar.bz2
- cleanup internal interfaces for rewiring
- fix UI_PLAYBACK_FINISHED rifle CVS patchset: 3686 CVS date: 2002/12/26 21:53:41
Diffstat (limited to 'src/libspudec/spu.c')
-rw-r--r--src/libspudec/spu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libspudec/spu.c b/src/libspudec/spu.c
index c05e949c2..b96a9ae9d 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.57 2002/11/26 16:05:00 mroi Exp $
+ * $Id: spu.c,v 1.58 2002/12/26 21:53:42 miguelfreitas Exp $
*
*/
@@ -84,7 +84,7 @@ void spudec_decode_nav(spudec_decoder_t *this, buf_element_t *buf) {
uint32_t header_len;
pci_t pci;
dsi_t dsi;
- video_overlay_instance_t *ovl_instance = this->vo_out->get_overlay_instance (this->vo_out);
+ video_overlay_instance_t *ovl_instance = this->stream->video_out->get_overlay_instance (this->stream->video_out);
p = buf->content;
if (p[0] || p[1] || (p[2] != 1)) {
@@ -276,7 +276,7 @@ void spudec_reassembly (spudec_seq_t *seq, uint8_t *pkt_data, u_int pkt_len)
void spudec_process (spudec_decoder_t *this, uint32_t stream_id) {
spudec_seq_t *cur_seq;
- video_overlay_instance_t *ovl_instance = this->vo_out->get_overlay_instance (this->vo_out);
+ video_overlay_instance_t *ovl_instance = this->stream->video_out->get_overlay_instance (this->stream->video_out);
int pending = 1;
cur_seq = &this->spudec_stream_state[stream_id].ra_seq;