We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7322bd commit fde12a8Copy full SHA for fde12a8
1 file changed
src/video_compress.h
@@ -189,14 +189,14 @@ struct module_option{
189
};
190
191
struct encoder{
192
- std::string name;
193
- std::string opt_str;
+ std::string name; //Name displayed to user
+ std::string opt_str; //Option string to pass to ug (e.g. ":encoder=libx264")
194
195
196
struct codec{
197
198
std::vector<encoder> encoders;
199
- int priority;
+ int priority; //Lower number is higher priority, currently affects GUI sort order
200
201
202
struct compress_module_info{
0 commit comments