Skip to content

Commit fde12a8

Browse files
committed
video_compress: Add some capabs documentation
1 parent a7322bd commit fde12a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/video_compress.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,14 @@ struct module_option{
189189
};
190190

191191
struct encoder{
192-
std::string name;
193-
std::string opt_str;
192+
std::string name; //Name displayed to user
193+
std::string opt_str; //Option string to pass to ug (e.g. ":encoder=libx264")
194194
};
195195

196196
struct codec{
197-
std::string name;
197+
std::string name; //Name displayed to user
198198
std::vector<encoder> encoders;
199-
int priority;
199+
int priority; //Lower number is higher priority, currently affects GUI sort order
200200
};
201201

202202
struct compress_module_info{

0 commit comments

Comments
 (0)