]> git.sesse.net Git - ffmpeg/commitdiff
avformat/mux: correct error msg for when BSF filtering fails
authorGyan Doshi <ffmpeg@gyani.pro>
Tue, 16 Jul 2019 12:36:42 +0000 (18:06 +0530)
committerGyan Doshi <ffmpeg@gyani.pro>
Sat, 20 Jul 2019 10:11:28 +0000 (15:41 +0530)
libavformat/mux.c

index 21f10caf534b9b9f5667db6330e03c4abfde572d..8ab5ea8c2bd26aacacd012edfac72bc6b55f9209 100644 (file)
@@ -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;