diff options
author | Andreas Heinchen <heinchen@users.sourceforge.net> | 2003-05-04 12:27:01 +0000 |
---|---|---|
committer | Andreas Heinchen <heinchen@users.sourceforge.net> | 2003-05-04 12:27:01 +0000 |
commit | ba50445aa0e424b843903e4e572bb2cad9a6caa2 (patch) | |
tree | 89eef864e83f2f09019a794e7fb14cfdaa309e54 | |
parent | 42de18c6df0d07de6aecb8b551c0dbd1692c78cd (diff) | |
download | xine-lib-ba50445aa0e424b843903e4e572bb2cad9a6caa2.tar.gz xine-lib-ba50445aa0e424b843903e4e572bb2cad9a6caa2.tar.bz2 |
Removed another spelling mistake
CVS patchset: 4763
CVS date: 2003/05/04 12:27:01
-rw-r--r-- | src/libtheora/xine_decoder.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libtheora/xine_decoder.c b/src/libtheora/xine_decoder.c index e4f5ed54d..7c6c326fd 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.4 2003/05/03 17:27:02 heinchen Exp $ + * $Id: xine_decoder.c,v 1.5 2003/05/04 12:27:01 heinchen Exp $ * * xine decoder plugin using libtheora * @@ -179,7 +179,8 @@ 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) { - printf ("libtheora:Recieved a bad packet\n"); + if (this->xine->verbosity >= XINE_VERBOSITY_LOG) + printf ("libtheora:Received an bad packet\n"); } else if (!this->skipframes) { theora_decode_YUVout(&this->t_state,&yuv); |