summaryrefslogtreecommitdiff
path: root/libavformat/iff.c
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2010-07-15 11:43:09 +0000
committerPeter Ross <pross@xvid.org>2010-07-15 11:43:09 +0000
commitea15d2000c99bc9e6ebdbd7eb4139207cf86a27b (patch)
treecc6b3d6e1b528ae8fd68aa2c5f940d802252459b /libavformat/iff.c
parent720e4c794cca5067b65fa9c4a1cd7fbd4fc9b93f (diff)
remove redundant text and whitespaces from iff demuxer av_log() statements
Originally committed as revision 24246 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/iff.c')
-rw-r--r--libavformat/iff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/iff.c b/libavformat/iff.c
index 4288c3dcb6..e1afefbff3 100644
--- a/libavformat/iff.c
+++ b/libavformat/iff.c
@@ -220,7 +220,7 @@ static int iff_read_header(AVFormatContext *s,
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 @@ static int iff_read_header(AVFormatContext *s,
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 @@ static int iff_read_packet(AVFormatContext *s,
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);