Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libbluray
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
libbluray
Commits
5af16350
Commit
5af16350
authored
Mar 27, 2010
by
hpi1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed return type of bdplus_fixup and bdplus_seek
[sizeof(void*) != sizeof(int32_t)]
parent
4dd034a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/bluray.h
src/bluray.h
+3
-2
No files found.
src/bluray.h
View file @
5af16350
...
...
@@ -8,6 +8,7 @@
#include "file/file.h"
typedef
int
(
*
fptr_int
)();
typedef
int32_t
(
*
fptr_int32
)();
typedef
void
*
(
*
fptr_p_void
)();
typedef
struct
bluray
BLURAY
;
...
...
@@ -17,8 +18,8 @@ struct bluray {
uint64_t
s_size
;
uint64_t
s_pos
;
void
*
aacs
,
*
bdplus
;
fptr_
p_void
bdplus_seek
;
// frequently called
fptr_
p_void
bdplus_fixup
;
// frequently called
fptr_
int32
bdplus_seek
;
// frequently called
fptr_
int32
bdplus_fixup
;
// frequently called
void
*
h_libaacs
,
*
h_libbdplus
,
*
h_libbdnav
;
fptr_int
libaacs_decrypt_unit
;
uint8_t
int_buf
[
6144
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment