Mercurial > libavformat.hg
changeset 6261:7d8e6562ce1a libavformat
remove redundant text and whitespaces from iff demuxer av_log() statements
author | pross |
---|---|
date | Thu, 15 Jul 2010 11:43:09 +0000 |
parents | 5c17c20dd67a |
children | 7b8b71ff9a76 |
files | iff.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/iff.c Wed Jul 14 23:21:18 2010 +0000 +++ b/iff.c Thu Jul 15 11:43:09 2010 +0000 @@ -220,7 +220,7 @@ if (metadata_tag) { if ((res = get_metadata(s, metadata_tag, data_size)) < 0) { - av_log(s, AV_LOG_ERROR, "iff: cannot allocate metadata tag %s!", metadata_tag); + av_log(s, AV_LOG_ERROR, "cannot allocate metadata tag %s!", metadata_tag); return res; } } @@ -244,7 +244,7 @@ st->codec->codec_id = CODEC_ID_8SVX_EXP; break; default: - av_log(s, AV_LOG_ERROR, "iff: unknown compression method\n"); + av_log(s, AV_LOG_ERROR, "unknown compression method\n"); return -1; } @@ -289,7 +289,7 @@ ret = get_buffer(pb, sample_buffer, PACKET_SIZE); if(av_new_packet(pkt, PACKET_SIZE) < 0) { - av_log(s, AV_LOG_ERROR, "iff: cannot allocate packet \n"); + av_log(s, AV_LOG_ERROR, "cannot allocate packet\n"); return AVERROR(ENOMEM); } interleave_stereo(sample_buffer, pkt->data, PACKET_SIZE);