diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-01 12:53:25 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-01 12:53:25 +0000 |
commit | 7e78fb455c5b597343b06c455823f9ad05861416 (patch) | |
tree | b5344bb3c14472622f04cb02ddfd3b93a578b969 /src/inputPlugins/mp3_plugin.c | |
parent | 16da97e4c80b375f6976690e0a04102eff0a6bbd (diff) | |
download | mpd-7e78fb455c5b597343b06c455823f9ad05861416.tar.gz mpd-7e78fb455c5b597343b06c455823f9ad05861416.tar.xz mpd-7e78fb455c5b597343b06c455823f9ad05861416.zip |
remove some debug code
git-svn-id: https://svn.musicpd.org/mpd/trunk@1282 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputPlugins/mp3_plugin.c')
-rw-r--r-- | src/inputPlugins/mp3_plugin.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index d0d98b045..0cf6d2662 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -261,18 +261,14 @@ int decodeNextFrameHeader(mp3DecodeData * data, MpdTag ** tag) { (data->stream).bufend- (data->stream).this_frame); - printf("HERE 1\n"); if(tagsize>0) { - printf("HERE 1-1\n"); if(tag) *tag =mp3_parseId3Tag(data, tagsize); else { mad_stream_skip(&(data->stream), tagsize); } - printf("HERE 1-2\n"); return DECODE_CONT; } - printf("HERE 2\n"); } #endif if(MAD_RECOVERABLE((data->stream).error)) { |