Commit 05c9f6f4 authored by Thilo Borgmann's avatar Thilo Borgmann

fftools/ffmpeg: Fix runlength for strncmp()

parent b67263e0
......@@ -1349,7 +1349,7 @@ static void do_video_out(OutputFile *of,
&& !i) {
forced_keyframe = 1;
} else if ( ost->forced_keyframes
&& !strncmp(ost->forced_keyframes, "source_no_drop", 6)
&& !strncmp(ost->forced_keyframes, "source_no_drop", 14)
&& !i) {
forced_keyframe = (in_picture->key_frame == 1) || ost->dropped_keyframe;
ost->dropped_keyframe = 0;
......
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