summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Stembridge <jstembridge@users.sourceforge.net>2004-06-01 21:48:37 +0000
committerJames Stembridge <jstembridge@users.sourceforge.net>2004-06-01 21:48:37 +0000
commit7709868335e28c3acc25658a8d0a501ae8b8aec1 (patch)
treed9d7d817e4c3f6755e246b58f6b4312e3195e929
parent557c2e79434b053e18c43ca964cb15152af07e21 (diff)
downloadxine-lib-7709868335e28c3acc25658a8d0a501ae8b8aec1.tar.gz
xine-lib-7709868335e28c3acc25658a8d0a501ae8b8aec1.tar.bz2
Standardise prefix of debug output with error messages
CVS patchset: 6628 CVS date: 2004/06/01 21:48:37
-rw-r--r--src/libfaad/xine_decoder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libfaad/xine_decoder.c b/src/libfaad/xine_decoder.c
index b69da4183..e1a2ffed4 100644
--- a/src/libfaad/xine_decoder.c
+++ b/src/libfaad/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.33 2004/06/01 21:37:16 jstembridge Exp $
+ * $Id: xine_decoder.c,v 1.34 2004/06/01 21:48:37 jstembridge Exp $
*
*/
@@ -28,7 +28,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#define LOG_MODULE "faad_decoder"
+#define LOG_MODULE "libfaad"
#define LOG_VERBOSE
/*
@@ -87,8 +87,8 @@ static int faad_open_dec( faad_decoder_t *this ) {
this->faac_dec = faacDecOpen();
if( !this->faac_dec ) {
- xine_log (this->stream->xine, XINE_LOG_MSG,
- _("libfaad: libfaad faacDecOpen() failed.\n"));
+ xprintf( this->stream->xine, XINE_VERBOSITY_LOG,
+ _("libfaad: libfaad faacDecOpen() failed.\n"));
this->faac_failed++;
} else {
if( this->dec_config ) {