mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/videotoolboxenc: Fix variable type of AV_OPT_TYPE_BOOL
Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
parent
f4e0f40230
commit
719e46f54c
|
@ -262,7 +262,7 @@ typedef struct VTEncContext {
|
||||||
int realtime;
|
int realtime;
|
||||||
int frames_before;
|
int frames_before;
|
||||||
int frames_after;
|
int frames_after;
|
||||||
bool constant_bit_rate;
|
int constant_bit_rate;
|
||||||
|
|
||||||
int allow_sw;
|
int allow_sw;
|
||||||
int require_sw;
|
int require_sw;
|
||||||
|
|
Loading…
Reference in New Issue