mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
remove redundant text and whitespaces from iff demuxer av_log() statements
Originally committed as revision 24246 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
720e4c794c
commit
ea15d2000c
@ -220,7 +220,7 @@ static int iff_read_header(AVFormatContext *s,
|
|||||||
|
|
||||||
if (metadata_tag) {
|
if (metadata_tag) {
|
||||||
if ((res = get_metadata(s, metadata_tag, data_size)) < 0) {
|
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;
|
return res;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -244,7 +244,7 @@ static int iff_read_header(AVFormatContext *s,
|
|||||||
st->codec->codec_id = CODEC_ID_8SVX_EXP;
|
st->codec->codec_id = CODEC_ID_8SVX_EXP;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
av_log(s, AV_LOG_ERROR, "iff: unknown compression method\n");
|
av_log(s, AV_LOG_ERROR, "unknown compression method\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -289,7 +289,7 @@ static int iff_read_packet(AVFormatContext *s,
|
|||||||
|
|
||||||
ret = get_buffer(pb, sample_buffer, PACKET_SIZE);
|
ret = get_buffer(pb, sample_buffer, PACKET_SIZE);
|
||||||
if(av_new_packet(pkt, PACKET_SIZE) < 0) {
|
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);
|
return AVERROR(ENOMEM);
|
||||||
}
|
}
|
||||||
interleave_stereo(sample_buffer, pkt->data, PACKET_SIZE);
|
interleave_stereo(sample_buffer, pkt->data, PACKET_SIZE);
|
||||||
|
Loading…
Reference in New Issue
Block a user