mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
cosmetics : Print newline after error message.
Originally committed as revision 22551 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
bd57cae86f
commit
f75ab7a645
@ -485,7 +485,7 @@ static int mkv_write_codecprivate(AVFormatContext *s, ByteIOContext *pb, AVCodec
|
|||||||
if (!codec->codec_tag)
|
if (!codec->codec_tag)
|
||||||
codec->codec_tag = ff_codec_get_tag(ff_codec_bmp_tags, codec->codec_id);
|
codec->codec_tag = ff_codec_get_tag(ff_codec_bmp_tags, codec->codec_id);
|
||||||
if (!codec->codec_tag) {
|
if (!codec->codec_tag) {
|
||||||
av_log(s, AV_LOG_ERROR, "No bmp codec ID found.");
|
av_log(s, AV_LOG_ERROR, "No bmp codec ID found.\n");
|
||||||
ret = -1;
|
ret = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -496,7 +496,7 @@ static int mkv_write_codecprivate(AVFormatContext *s, ByteIOContext *pb, AVCodec
|
|||||||
if (!codec->codec_tag)
|
if (!codec->codec_tag)
|
||||||
codec->codec_tag = ff_codec_get_tag(ff_codec_wav_tags, codec->codec_id);
|
codec->codec_tag = ff_codec_get_tag(ff_codec_wav_tags, codec->codec_id);
|
||||||
if (!codec->codec_tag) {
|
if (!codec->codec_tag) {
|
||||||
av_log(s, AV_LOG_ERROR, "No wav codec ID found.");
|
av_log(s, AV_LOG_ERROR, "No wav codec ID found.\n");
|
||||||
ret = -1;
|
ret = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user