Commit d228df6f authored by James Almer's avatar James Almer

cmdutils: print a more descriptive error message in show_help_bsf() when no bsf is specified

Reviewed-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 3258cc65
...@@ -1956,7 +1956,10 @@ static void show_help_bsf(const char *name) ...@@ -1956,7 +1956,10 @@ static void show_help_bsf(const char *name)
{ {
const AVBitStreamFilter *bsf = av_bsf_get_by_name(name); const AVBitStreamFilter *bsf = av_bsf_get_by_name(name);
if (!bsf) { if (!name) {
av_log(NULL, AV_LOG_ERROR, "No bitstream filter name specified.\n");
return;
} else if (!bsf) {
av_log(NULL, AV_LOG_ERROR, "Unknown bit stream filter '%s'.\n", name); av_log(NULL, AV_LOG_ERROR, "Unknown bit stream filter '%s'.\n", name);
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment