summaryrefslogtreecommitdiff
path: root/libavformat/mux.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-11-04 12:23:47 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-11-04 12:23:47 +0100
commitdb23fde7849aba272509345b63463494582d9530 (patch)
tree233fd6cbbd11e68e28a11a1d382ce1d3100986b2 /libavformat/mux.c
parent5a4935c012fd3ca7cc0720897cf00c5759307ced (diff)
lavf/mux: Add missing CR/LF to error messages.
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r--libavformat/mux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c
index 06d87dec7f..2dac381fcc 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -891,7 +891,7 @@ static int do_packet_auto_bsf(AVFormatContext *s, AVPacket *pkt) {
// flush each stream's BSF chain on write_trailer.
if ((ret = av_bsf_send_packet(ctx, pkt)) < 0) {
av_log(ctx, AV_LOG_ERROR,
- "Failed to send packet to filter %s for stream %d",
+ "Failed to send packet to filter %s for stream %d\n",
ctx->filter->name, pkt->stream_index);
return ret;
}
@@ -902,7 +902,7 @@ static int do_packet_auto_bsf(AVFormatContext *s, AVPacket *pkt) {
if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
return 0;
av_log(ctx, AV_LOG_ERROR,
- "Failed to send packet to filter %s for stream %d",
+ "Failed to send packet to filter %s for stream %d\n",
ctx->filter->name, pkt->stream_index);
return ret;
}