summaryrefslogtreecommitdiff
path: root/libavformat/apetag.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2009-10-18 16:13:29 +0000
committerAurelien Jacobs <aurel@gnuage.org>2009-10-18 16:13:29 +0000
commit8da1d52cc112090eea226f4b0216da7fc683fc0b (patch)
tree18ea464d42e8055344ab61f9c2b9e665a8501f35 /libavformat/apetag.c
parentc4d438c265d9c65926624023412a720495c32d36 (diff)
remove old and useless debug code
It uses the old, deprecated metadata API and prints exactly the same thing as what ffmpeg/ffplay does. Originally committed as revision 20280 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/apetag.c')
-rw-r--r--libavformat/apetag.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libavformat/apetag.c b/libavformat/apetag.c
index 435dd3fdcf..262270cd42 100644
--- a/libavformat/apetag.c
+++ b/libavformat/apetag.c
@@ -107,16 +107,4 @@ void ff_ape_parse_tag(AVFormatContext *s)
for (i=0; i<fields; i++)
if (ape_tag_read_field(s) < 0) break;
-
-#if ENABLE_DEBUG
- av_log(s, AV_LOG_DEBUG, "\nAPE Tags:\n\n");
- av_log(s, AV_LOG_DEBUG, "title = %s\n", s->title);
- av_log(s, AV_LOG_DEBUG, "author = %s\n", s->author);
- av_log(s, AV_LOG_DEBUG, "copyright = %s\n", s->copyright);
- av_log(s, AV_LOG_DEBUG, "comment = %s\n", s->comment);
- av_log(s, AV_LOG_DEBUG, "album = %s\n", s->album);
- av_log(s, AV_LOG_DEBUG, "year = %d\n", s->year);
- av_log(s, AV_LOG_DEBUG, "track = %d\n", s->track);
- av_log(s, AV_LOG_DEBUG, "genre = %s\n", s->genre);
-#endif
}