-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
515 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright © 2017-2021 Frechdachs <[email protected]> | ||
* Copyright © 2021-2022 Frechdachs <[email protected]> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the “Software”), to deal | ||
|
@@ -51,14 +51,15 @@ typedef enum DescaleOpt | |
} DescaleOpt; | ||
|
||
|
||
// Optional struct members should be initialized to 0 if not used | ||
typedef struct DescaleParams | ||
{ | ||
enum DescaleMode mode; | ||
int taps; | ||
double param1; | ||
double param2; | ||
double shift; | ||
double active_dim; | ||
int taps; // required if mode is LANCZOS | ||
double param1; // required if mode is BICUBIC | ||
double param2; // required if mode is BICUBIC | ||
double shift; // optional | ||
double active_dim; // always required; usually equal to dst_dim | ||
} DescaleParams; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
option('libtype', type: 'combo', choices: ['vapoursynth', 'avisynth', 'both'], value: 'vapoursynth') |
Oops, something went wrong.