diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-10 17:17:06 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-10 17:17:06 +0000 |
commit | 75a3e6582d0570541b1f6bdc54821b7550721128 (patch) | |
tree | 61abe7268f7736dbce0d4fe53773d525dc1231f4 | |
parent | 6bb42cf0a4ce6535361afed7960ae4460867c82d (diff) | |
download | xine-lib-75a3e6582d0570541b1f6bdc54821b7550721128.tar.gz xine-lib-75a3e6582d0570541b1f6bdc54821b7550721128.tar.bz2 |
disable debugging printf
CVS patchset: 6384
CVS date: 2004/04/10 17:17:06
-rw-r--r-- | src/libspudec/spu.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libspudec/spu.c b/src/libspudec/spu.c index 4e8b76eef..893c67a9d 100644 --- a/src/libspudec/spu.c +++ b/src/libspudec/spu.c @@ -36,7 +36,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.74 2004/04/09 15:01:29 mroi Exp $ + * $Id: spu.c,v 1.75 2004/04/10 17:17:06 mroi Exp $ * */ @@ -209,7 +209,9 @@ void spudec_decode_nav(spudec_decoder_t *this, buf_element_t *buf) { if (this->pci_cur.pci.hli.hl_gi.hli_ss != 0 && pci.hli.hl_gi.hli_s_ptm > this->pci_cur.pci.hli.hl_gi.hli_s_ptm) { pci_node_t *node = &this->pci_cur; - printf("libspudec: DEBUG: allocating new PCI node for hli_s_ptm %d\n", pci.hli.hl_gi.hli_s_ptm); +#ifdef LOG_DEBUG + printf("libspudec: allocating new PCI node for hli_s_ptm %d\n", pci.hli.hl_gi.hli_s_ptm); +#endif /* append PCI at the end of the list */ while (node->next) node = node->next; node->next = (pci_node_t *)xine_xmalloc(sizeof(pci_node_t)); |