From e6efea7a929e21c13e016cef0ba569df4fb653fa Mon Sep 17 00:00:00 2001 From: eisneinechse <42617957+eisneinechse@users.noreply.github.com> Date: Sun, 21 Apr 2019 11:31:58 -0700 Subject: [PATCH] Update documentation --- doc/HW-ACCEL.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/HW-ACCEL.md b/doc/HW-ACCEL.md index 3f750e6e..ed886a5f 100644 --- a/doc/HW-ACCEL.md +++ b/doc/HW-ACCEL.md @@ -23,15 +23,12 @@ The following settings are use by libopenshot to enable, disable, and control the various hardware acceleration features. ``` -/// Use video card for faster video decoding (if supported) +/// DEPRECATED Use video card for faster video decoding (if supported) bool HARDWARE_DECODE = false; /// Use video codec for faster video decoding (if supported) int HARDWARE_DECODER = 0; -/// Use video card for faster video encoding (if supported) -bool HARDWARE_ENCODE = false; - /// Number of threads of OpenMP int OMP_THREADS = 12; @@ -83,6 +80,11 @@ this document if you find an error or discover some new information. **Desperately Needed:** a way to compile ffmpeg 4.0 and up with working nVidia hardware acceleration support on Ubuntu Linux! +**BUG:** the use of HARDWARE_DECODE is somehow still needed, otherwise hardware +supported decoding breaks. TODO remove the hidden dependency on this variable. +The variable HARDWARE_DECODER should and does select if and which hardware +decoder is used but somehow HARDWARE_DECODE has to be there too. + **Needed:** a way to get the options and limits of the GPU, like supported codecs and the supported dimensions (width and height).