We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19125da commit 8fc41a9Copy full SHA for 8fc41a9
src/ffmpeg/RenderingMode.hx
@@ -402,7 +402,8 @@ class RenderingMode {
402
'-c:v','h264_vaapi',
403
'-qp','28',
404
'-global_quality','28',
405
- '-low_power','1'
+ '-vaapi_device', '/dev/dri/renderD128',
406
+ '-vf', 'format=rgb565le,hwupload',
407
]},
408
409
// AMD AMF on Linux
@@ -461,7 +462,7 @@ class RenderingMode {
461
462
463
'-look_ahead', '0',
464
'-look_ahead_depth', '0',
- '-async_depth','4'
465
+ '-async_depth','8'
466
]}
467
];
468
@@ -559,7 +560,7 @@ class RenderingMode {
559
560
process = new Process('ffmpeg', args);
561
562
#if cpp
- nativeProcessHandle = untyped process.stdin.p;
563
+ nativeProcessHandle = untyped process?.stdin?.p;
564
#end
565
}
566
0 commit comments