summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-01-12 23:56:58 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-01-13 15:51:24 +0100
commit7efc6f293289923bc1a6d0905f492a468562f638 (patch)
tree7cc3ec3752134b0b442878a16674ea0fe665b23c /ffmpeg.c
parent3fcf841ff54f2e8ab4f75e3dc1a1249d344b9bed (diff)
ffmpeg: clarify error message in case of bitstream filter opening failure
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 997333ec4a..085bb00fcc 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -988,7 +988,7 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
av_free_packet(pkt);
new_pkt.destruct = av_destruct_packet;
} else if (a < 0) {
- av_log(NULL, AV_LOG_ERROR, "%s failed for stream %d, codec %s",
+ av_log(NULL, AV_LOG_ERROR, "Failed to open bitstream filter %s for stream %d with codec %s",
bsfc->filter->name, pkt->stream_index,
avctx->codec ? avctx->codec->name : "copy");
print_error("", a);