This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lavc/vaapi_encode_h26x: Fix a crash if "." is not the decimal separator.
Fixes Debian bugs #831529, #831909,
#832964
. Signed-off-by: Mark Thompson <sw@jkqxz.net>
tags/n3.2
Carl Eugen Hoyos
Mark Thompson
9 years ago
parent
d8ee02a071
commit
82e53b3cef
2 changed files
with
8 additions
and
8 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-4
libavcodec/vaapi_encode_h264.c
+4
-4
libavcodec/vaapi_encode_h265.c
+ 4
- 4
libavcodec/vaapi_encode_h264.c
View File
@@ -1323,10 +1323,10 @@ static const AVCodecDefault vaapi_encode_h264_defaults[] = {
{ "b", "0" },
{ "bf", "2" },
{ "g", "120" },
{ "i_qfactor", "1
.0
" },
{ "i_qoffset", "0
.0
" },
{ "b_qfactor", "
1.2
" },
{ "b_qoffset", "0
.0
" },
{ "i_qfactor", "1"
},
{ "i_qoffset", "0"
},
{ "b_qfactor", "
6/5
" },
{ "b_qoffset", "0"
},
{ NULL },
};
+ 4
- 4
libavcodec/vaapi_encode_h265.c
View File
@@ -1341,10 +1341,10 @@ static const AVCodecDefault vaapi_encode_h265_defaults[] = {
{ "b", "0" },
{ "bf", "2" },
{ "g", "120" },
{ "i_qfactor", "1
.0
" },
{ "i_qoffset", "0
.0
" },
{ "b_qfactor", "
1.2
" },
{ "b_qoffset", "0
.0
" },
{ "i_qfactor", "1"
},
{ "i_qoffset", "0"
},
{ "b_qfactor", "
6/5
" },
{ "b_qoffset", "0"
},
{ NULL },
};
Write
Preview
Loading…
Cancel
Save