New upstream version 26.0.0+dfsg1
This commit is contained in:
parent
8e020cdacb
commit
240080891f
837 changed files with 41275 additions and 9196 deletions
19
plugins/obs-x264/obs-x264-options.h
Normal file
19
plugins/obs-x264/obs-x264-options.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#pragma once
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
struct obs_x264_option {
|
||||
char *name;
|
||||
char *value;
|
||||
};
|
||||
|
||||
struct obs_x264_options {
|
||||
size_t count;
|
||||
struct obs_x264_option *options;
|
||||
size_t ignored_word_count;
|
||||
char **ignored_words;
|
||||
char **input_words;
|
||||
};
|
||||
|
||||
struct obs_x264_options obs_x264_parse_options(const char *options_string);
|
||||
void obs_x264_free_options(struct obs_x264_options options);
|
||||
Loading…
Add table
Add a link
Reference in a new issue