summaryrefslogtreecommitdiff
path: root/libavformat/mux.c
diff options
context:
space:
mode:
authorGyan Doshi <ffmpeg@gyani.pro>2019-07-16 18:06:42 +0530
committerGyan Doshi <ffmpeg@gyani.pro>2019-07-20 15:41:28 +0530
commitc104701b6c5db48481fa2fb32b6e3e40b70f1eb6 (patch)
treed68a5a2a25253f8840a1a40006df075d0e2d4741 /libavformat/mux.c
parent1123331f59d3f00ac230f352a09048a3bed86d8e (diff)
avformat/mux: correct error msg for when BSF filtering fails
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r--libavformat/mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c
index 21f10caf53..8ab5ea8c2b 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -865,7 +865,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\n",
+ "Failed to receive packet from filter %s for stream %d\n",
ctx->filter->name, pkt->stream_index);
if (s->error_recognition & AV_EF_EXPLODE)
return ret;