Mercurial > libavformat.hg
changeset 5301:08c073da6553 libavformat
remove old and useless debug code
It uses the old, deprecated metadata API and prints exactly the same thing
as what ffmpeg/ffplay does.
author | aurel |
---|---|
date | Sun, 18 Oct 2009 16:13:29 +0000 |
parents | e5c9ae62af86 |
children | 9d7f3a448c3c |
files | apetag.c |
diffstat | 1 files changed, 0 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/apetag.c Sun Oct 18 15:28:53 2009 +0000 +++ b/apetag.c Sun Oct 18 16:13:29 2009 +0000 @@ -107,16 +107,4 @@ 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 }