-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing structure definitions, fix existing. #213
Open
Backporter
wants to merge
25
commits into
OpenOrbis:master
Choose a base branch
from
Backporter:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
eff2931
Add Missing NpTrophy structure definitions.
Backporter d51f3c8
Merge branch 'OpenOrbis:master' into master
Backporter 00e7e5e
Update Np.h
Backporter aa43955
Merge branch 'master' of https://github.com/Backporter/OpenOrbis-PS4-…
Backporter 4b44a3f
0
Backporter 0d2dc6c
Update kernel.h
Backporter 4d2ed72
add VideoDecX structures and fix function definitions
Backporter 8df6a34
Update Rtc.h
Backporter 24897c3
Merge branch 'master' into master
Backporter 0dff13c
Update Rtc.h
Backporter fb3f088
move controller keycodes into a enum
Backporter 7047d4b
Merge branch 'master' into master
Backporter 82ee4b7
Merge branch 'master' into master
Backporter 4424cd9
Update Rtc.h
Backporter a70028f
Update Rtc.h
Backporter 0b6555f
Update Rtc.h
Backporter 03b1d82
Update sys_service.h
Backporter 3984d83
Update sys_service.h
Backporter 5153a13
Update sys_service.h
Backporter 366cc0f
fix formatting, add/fix param names
Backporter f88be88
Update Rtc.h
Backporter edef451
Update Rtc.h
Backporter b9ffada
Create Mouse.h
Backporter cee9e9a
Update Mouse.h
Backporter 9b9e82a
Merge branch 'master' of https://github.com/Backporter/OpenOrbis-PS4-…
Backporter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -9,16 +9,16 @@ extern "C" | |
{ | ||
#endif | ||
|
||
int32_t sceVideodec2AllocateComputeQueue(const OrbisVideodec2ComputeConfigInfo*, const OrbisVideodec2ComputeMemoryInfo*, void**); | ||
int32_t sceVideodec2CreateDecoder(const OrbisVideodec2DecoderConfigInfo*, const OrbisVideodec2DecoderMemoryInfo*, void**); | ||
int32_t sceVideodec2Decode(void*, const OrbisVideodec2InputData*, OrbisVideodec2FrameBuffer* , OrbisVideodec2OutputInfo*); | ||
int32_t sceVideodec2Flush(void* , OrbisVideodec2FrameBuffer* , OrbisVideodec2OutputInfo*); | ||
int32_t sceVideodec2GetPictureInfo(const OrbisVideodec2OutputInfo* , void* , void*); | ||
int32_t sceVideodec2QueryComputeMemoryInfo(OrbisVideodec2ComputeMemoryInfo*); | ||
int32_t sceVideodec2QueryDecoderMemoryInfo(const OrbisVideodec2DecoderConfigInfo*, OrbisVideodec2DecoderMemoryInfo*); | ||
int32_t sceVideodec2ReleaseComputeQueue(void*); | ||
int32_t sceVideodec2Reset(void*); | ||
int32_t sceVideodec2DeleteDecoder(void*); | ||
int32_t sceVideodec2AllocateComputeQueue(const OrbisVideodec2ComputeConfigInfo* ComputeCfgInfoIn, const OrbisVideodec2ComputeMemoryInfo* ComputeMemInfoIn, void** ComputeQueueOut); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lowerCamelCase |
||
int32_t sceVideodec2CreateDecoder(const OrbisVideodec2DecoderConfigInfo* DecoderConfigInfoIn, const OrbisVideodec2DecoderMemoryInfo* DecoderMemoryInfoIn, void** DecoderInstanceOut); | ||
int32_t sceVideodec2Decode(void* decoderInstanceIn, const OrbisVideodec2InputData* InputDataInOut, OrbisVideodec2FrameBuffer* FrameBufferInOut, OrbisVideodec2OutputInfo* OutputInfoOut); | ||
int32_t sceVideodec2Flush(void* decoderInstanceIn, OrbisVideodec2FrameBuffer* FrameBufferInOut, OrbisVideodec2OutputInfo* OutputInfoOut); | ||
int32_t sceVideodec2GetPictureInfo(const OrbisVideodec2OutputInfo* OutputInfoIn, void* p1stPictureInfoOut, void* p2ndPictureInfoOut); | ||
int32_t sceVideodec2QueryComputeMemoryInfo(OrbisVideodec2ComputeMemoryInfo* ComputeMemInfoOut); | ||
int32_t sceVideodec2QueryDecoderMemoryInfo(const OrbisVideodec2DecoderConfigInfo* DecoderConfigInfoIn, OrbisVideodec2DecoderMemoryInfo* DecoderMemoryInfoOut); | ||
int32_t sceVideodec2ReleaseComputeQueue(void* computeQueueIn); | ||
int32_t sceVideodec2Reset(void* decoderInstanceIn); | ||
int32_t sceVideodec2DeleteDecoder(void* decoderInstanceIn); | ||
|
||
void sceVideodec2CreateHevcDecoder(); | ||
|
||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lowerCamelCase