mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-04 21:21:57 +00:00
Fix: Rust Clippy failing on 1.90 (#1753)
* Fix: Rust Clippy failing on 1.90 * Fix: Format Sourcecode in ES
This commit is contained in:
@@ -249,7 +249,9 @@ pub unsafe fn read_pic_info(
|
||||
if dec_ctx.repeat_first_field != 0 {
|
||||
dec_ctx.pulldownfields += 1;
|
||||
dec_ctx.total_pulldownfields += 1;
|
||||
if dec_ctx.current_progressive_sequence != 0 || (dec_ctx.total_pulldownfields % 2) == 0 {
|
||||
if dec_ctx.current_progressive_sequence != 0
|
||||
|| dec_ctx.total_pulldownfields.is_multiple_of(2)
|
||||
{
|
||||
extraframe = 1;
|
||||
}
|
||||
if dec_ctx.current_progressive_sequence != 0 && dec_ctx.top_field_first != 0 {
|
||||
|
||||
Reference in New Issue
Block a user