Skip to content

Commit

Permalink
configure.ac: fixed rpi hwacc auto
Browse files Browse the repository at this point in the history
Fixes commit 4afbabc which unintentionally changed policy for the hwacc
from auto to disabled by default.
  • Loading branch information
MartinPulec committed Sep 25, 2023
1 parent d83662d commit 65d3eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1581,7 +1581,7 @@ if test $lavc_hwacc_vaapi_req != no; then
lavc_hwacc_common=yes
fi
fi
if test $lavc_hwacc_rpi4_req = yes; then
if test $lavc_hwacc_rpi4_req != no; then
SAVED_PKG_CONFIG_PATH=$PKG_CONFIG_PATH
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/opt/vc/lib/pkgconfig/"
PKG_CHECK_MODULES([MMAL], [mmal], [ FOUND_HWACC_RPI4_DEP=yes ], [ FOUND_HWACC_RPI4_DEP=no ])
Expand Down

0 comments on commit 65d3eec

Please sign in to comment.