summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-10-27 20:08:41 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-10-27 20:08:41 +0000
commite184c1e714de20deef200dc51509644091ebb0c6 (patch)
tree24ba6d52b753b2ab58aa2614edd01fcc2e43466a
parent26b208f249f5e6a50bc9b439b9b3d58aea6e8b88 (diff)
downloadxine-lib-e184c1e714de20deef200dc51509644091ebb0c6.tar.gz
xine-lib-e184c1e714de20deef200dc51509644091ebb0c6.tar.bz2
less noise
CVS patchset: 3051 CVS date: 2002/10/27 20:08:41
-rw-r--r--src/libspudec/xine_decoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libspudec/xine_decoder.c b/src/libspudec/xine_decoder.c
index 9242fc8f0..5b7e235d5 100644
--- a/src/libspudec/xine_decoder.c
+++ b/src/libspudec/xine_decoder.c
@@ -19,7 +19,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.82 2002/10/26 16:13:16 mroi Exp $
+ * $Id: xine_decoder.c,v 1.83 2002/10/27 20:08:41 mroi Exp $
*
* stuff needed to turn libspu into a xine decoder plugin
*/
@@ -276,11 +276,11 @@ static void spudec_dispose (spu_decoder_t *this_gen) {
/* returns a bool for error/success.*/
static int spudec_get_nav_pci (spu_decoder_t *this_gen, pci_t *pci) {
spudec_decoder_t *this = (spudec_decoder_t *) this_gen;
- printf("get_nav_pci() called\n");
+ /*printf("get_nav_pci() called\n");*/
if (!this || !pci)
return 0;
- printf("get_nav_pci() coping nav_pci\n");
+ /*printf("get_nav_pci() coping nav_pci\n");*/
pthread_mutex_lock(&this->nav_pci_lock);
memcpy(pci, &this->pci, sizeof(pci_t) );
pthread_mutex_unlock(&this->nav_pci_lock);