Skip to content

Commit

Permalink
deinterlace: fixed noopt config
Browse files Browse the repository at this point in the history
Introduced by the commit c4aa64c (2024-01-13).

refers to GH-384
  • Loading branch information
MartinPulec committed May 10, 2024
1 parent 7373b28 commit f86902c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vo_postprocess/deinterlace.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ static void * deinterlace_blend_init(const char *config) {

if (strcmp(config, "force") == 0) {
s->force = 1;
} else {
} else if (strlen(config) > 0) {
log_msg(LOG_LEVEL_ERROR, MOD_NAME "Unknown option: %s\n", config);
free(s);
return NULL;
Expand Down

0 comments on commit f86902c

Please sign in to comment.