You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
lavf/mux: Add missing CR/LF to error messages.
This commit is contained in:
@@ -891,7 +891,7 @@ static int do_packet_auto_bsf(AVFormatContext *s, AVPacket *pkt) {
|
|||||||
// flush each stream's BSF chain on write_trailer.
|
// flush each stream's BSF chain on write_trailer.
|
||||||
if ((ret = av_bsf_send_packet(ctx, pkt)) < 0) {
|
if ((ret = av_bsf_send_packet(ctx, pkt)) < 0) {
|
||||||
av_log(ctx, AV_LOG_ERROR,
|
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);
|
ctx->filter->name, pkt->stream_index);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
@@ -902,7 +902,7 @@ static int do_packet_auto_bsf(AVFormatContext *s, AVPacket *pkt) {
|
|||||||
if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
|
if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
|
||||||
return 0;
|
return 0;
|
||||||
av_log(ctx, AV_LOG_ERROR,
|
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);
|
ctx->filter->name, pkt->stream_index);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user