-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace shims with functions calling pointers to dlsym-loaded funcs f…
…rom hisi libs VI pipe still receives nothing, venc main loop times out
- Loading branch information
Showing
7 changed files
with
48 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
int (*fnISP_AlgRegisterDehaze)(int); | ||
int (*fnISP_AlgRegisterDrc)(int); | ||
int (*fnISP_AlgRegisterLdci)(int); | ||
int (*fnMPI_ISP_IrAutoRunOnce)(int, void*); | ||
|
||
int ISP_AlgRegisterDehaze(int pipeId) { | ||
return fnISP_AlgRegisterDehaze(pipeId); | ||
} | ||
int ISP_AlgRegisterDrc(int pipeId) { | ||
return fnISP_AlgRegisterDrc(pipeId); | ||
} | ||
int ISP_AlgRegisterLdci(int pipeId) { | ||
return fnISP_AlgRegisterLdci(pipeId); | ||
} | ||
int MPI_ISP_IrAutoRunOnce(int pipeId, void *irAttr) { | ||
return fnMPI_ISP_IrAutoRunOnce(pipeId, irAttr); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters