Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix_telecined_fades: fix regression to no-op
Commit 67c08e1 attempted to make fix_telecined_fades work for BFF clips but actually made it do nothing at all, regardless of field order: t1 and t2 were meant to be listed in the opposite order in the two lines of the expression in order to select one field and then the other field), but the order was, in fact, identical, so the same field was selected twice and divided by itself. This could be fixed by swapping the second instance of t1 and t2, but instead, take the opportunity to simplify the expression further: the second line just wants the sum of both fields, so there's no need to switch based on BF@ once again and look for "the other" field; just take "both fields" explicitly.
- Loading branch information