summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-03-03 00:02:30 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-03-03 00:02:30 +0000
commitd9015de7fe7b4cf8aefd8c6da22944595a5ec9c9 (patch)
tree5faf85a0a6d3554512060cc911d1e5d1a2f66804 /src
parent4a546e25607aea02d99c2eab00d2230ab7e2cf17 (diff)
downloadxine-lib-d9015de7fe7b4cf8aefd8c6da22944595a5ec9c9.tar.gz
xine-lib-d9015de7fe7b4cf8aefd8c6da22944595a5ec9c9.tar.bz2
Use LOG_MODULE in the log messages, so that during copy and paste I don't end up leaving demux_mpgaudio in demux_flac or demux_aac.
CVS patchset: 8634 CVS date: 2007/03/03 00:02:30
Diffstat (limited to 'src')
-rw-r--r--src/demuxers/demux_mpgaudio.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c
index 452c53703..fd79e4215 100644
--- a/src/demuxers/demux_mpgaudio.c
+++ b/src/demuxers/demux_mpgaudio.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: demux_mpgaudio.c,v 1.148 2007/02/20 00:34:56 dgp85 Exp $
+ * $Id: demux_mpgaudio.c,v 1.149 2007/03/03 00:02:30 dgp85 Exp $
*
* demultiplexer for mpeg audio (i.e. mp3) streams
*
@@ -608,10 +608,10 @@ static int demux_mpgaudio_next (demux_mpgaudio_t *this, int decoder_flags, int s
} else if ((BE_32(header_buf)) == ID3V22_TAG) {
xprintf(this->stream->xine, XINE_VERBOSITY_LOG,
- "demux_mpgaudio: ID3V2.2 tag\n");
+ LOG_MODULE ": ID3V2.2 tag\n");
if (!id3v22_parse_tag(this->input, this->stream, header_buf)) {
xprintf(this->stream->xine, XINE_VERBOSITY_LOG,
- "demux_mpgaudio: ID3V2.2 tag parsing error\n");
+ LOG_MODULE ": ID3V2.2 tag parsing error\n");
bytes = 1; /* resync */
} else {
bytes = 4;
@@ -619,10 +619,10 @@ static int demux_mpgaudio_next (demux_mpgaudio_t *this, int decoder_flags, int s
} else if ((BE_32(header_buf)) == ID3V23_TAG) {
xprintf(this->stream->xine, XINE_VERBOSITY_LOG,
- "demux_mpgaudio: ID3V2.3 tag\n");
+ LOG_MODULE ": ID3V2.3 tag\n");
if (!id3v23_parse_tag(this->input, this->stream, header_buf)) {
xprintf(this->stream->xine, XINE_VERBOSITY_LOG,
- "demux_mpgaudio: ID3V2.3 tag parsing error\n");
+ LOG_MODULE ": ID3V2.3 tag parsing error\n");
bytes = 1; /* resync */
} else {
bytes = 4;
@@ -630,10 +630,10 @@ static int demux_mpgaudio_next (demux_mpgaudio_t *this, int decoder_flags, int s
} else if ((BE_32(header_buf)) == ID3V24_TAG) {
xprintf(this->stream->xine, XINE_VERBOSITY_LOG,
- "demux_mpgaudio: ID3V2.4 tag\n");
+ LOG_MODULE ": ID3V2.4 tag\n");
if (!id3v24_parse_tag(this->input, this->stream, header_buf)) {
xprintf(this->stream->xine, XINE_VERBOSITY_LOG,
- "demux_mpgaudio: ID3V2.4 tag parsing error\n");
+ LOG_MODULE ": ID3V2.4 tag parsing error\n");
bytes = 1; /* resync */
} else {
bytes = 4;