summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-29 11:08:31 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-29 11:08:31 +0000
commit54ed6265dc721ebadf4b2cce71e2179431b71cc4 (patch)
tree695efee69bb8ecf78b7d1e16184ff21273a830f8
parentc5ed7dfd0d7a567841521fccc7082d688a3f16c3 (diff)
downloadxine-lib-54ed6265dc721ebadf4b2cce71e2179431b71cc4.tar.gz
xine-lib-54ed6265dc721ebadf4b2cce71e2179431b71cc4.tar.bz2
fix compilation failure then kick my ass...
CVS patchset: 5811 CVS date: 2003/11/29 11:08:31
-rw-r--r--src/libtheora/xine_decoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtheora/xine_decoder.c b/src/libtheora/xine_decoder.c
index cce78fb84..03bd6bd44 100644
--- a/src/libtheora/xine_decoder.c
+++ b/src/libtheora/xine_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: xine_decoder.c,v 1.16 2003/11/26 23:44:10 f1rmb Exp $
+ * $Id: xine_decoder.c,v 1.17 2003/11/29 11:08:31 f1rmb Exp $
*
* xine decoder plugin using libtheora
*
@@ -229,7 +229,7 @@ static void theora_decode_data (video_decoder_t *this_gen, buf_element_t *buf) {
ret=theora_decode_packetin( &this->t_state, &this->op);
if ( ret!=0) {
- xprintf(this->stream, XINE_VERBOSITY_LOG, "libtheora:Received an bad packet\n");
+ xprintf(this->stream->xine, XINE_VERBOSITY_LOG, "libtheora:Received an bad packet\n");
} else if (!this->skipframes) {
theora_decode_YUVout(&this->t_state,&yuv);