Commit 80fb19bc authored by Anton Khirnov's avatar Anton Khirnov

avconv: fix a check for av_bsf_get_by_name() return value

parent 9f7590f4
......@@ -1015,7 +1015,7 @@ static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, e
*next++ = 0;
filter = av_bsf_get_by_name(bsf);
if (!bsf) {
if (!filter) {
av_log(NULL, AV_LOG_FATAL, "Unknown bitstream filter %s\n", bsf);
exit_program(1);
}
......
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