Skip to content

Commit 1dcc6c2

Browse files
committed
chore(ffnvcodec): comment out conditional checks in ffbuild_enabled function
* Commented out the conditional check for `winarm64` in `ffbuild_enabled`. * This change simplifies the function's logic while maintaining its return value. Signed-off-by: benshi <[email protected]>
1 parent 6aa34d9 commit 1dcc6c2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts.d/50-ffnvcodec.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ SCRIPT_COMMIT4="9934f17316b66ce6de12f3b82203a298bc9351d8"
1616
SCRIPT_BRANCH4="sdk/12.2"
1717

1818
ffbuild_enabled() {
19-
[[ $TARGET == winarm64 ]] && return -1
20-
return 0
19+
# [[ $TARGET == winarm64 ]] && return -1
20+
# return 0
21+
return -1
2122
}
2223

2324
ffbuild_dockerdl() {

0 commit comments

Comments
 (0)