mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
libx264: fix generic boolean support
Fixes Ticket660 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b50be4e38d
commit
4a8e3324fb
@ -350,8 +350,10 @@ static av_cold int X264_init(AVCodecContext *avctx)
|
||||
const char *p= x4->x264opts;
|
||||
while(p){
|
||||
char param[256]={0}, val[256]={0};
|
||||
sscanf(p, "%255[^:=]=%255[^:]", param, val);
|
||||
OPT_STR(param, val);
|
||||
if(sscanf(p, "%255[^:=]=%255[^:]", param, val) == 1){
|
||||
OPT_STR(param, "1");
|
||||
}else
|
||||
OPT_STR(param, val);
|
||||
p= strchr(p, ':');
|
||||
p+=!!p;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user