Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libbluray
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
6
Issues
6
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
libbluray
Commits
424e2882
Commit
424e2882
authored
Aug 03, 2014
by
Petri Hintukainen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "BDGraphics.drawImageN(): limit source rectangle to source image"
This reverts commit
317d4112
. Conflicts: ChangeLog
parent
7a28187c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
ChangeLog
ChangeLog
+0
-1
src/libbluray/bdj/java/java/awt/BDGraphicsBase.java
src/libbluray/bdj/java/java/awt/BDGraphicsBase.java
+0
-8
No files found.
ChangeLog
View file @
424e2882
...
...
@@ -2,7 +2,6 @@
- Fix stream position when seamless angle change point is at clip boundary.
- Fix Mac OS X jni compilation
- Fix bd_seek() jumping outside of clip/playlist.
- Fix out of array bounds exception in some BD-J menus
2014-05-27: Version 0.6.0
- Improved BD-J support (Most BD-J discs are correctly played).
...
...
src/libbluray/bdj/java/java/awt/BDGraphicsBase.java
View file @
424e2882
...
...
@@ -1037,14 +1037,6 @@ abstract class BDGraphicsBase extends Graphics2D implements ConstrainableGraphic
if
(
dw
<
0
)
dw
=
bdImage
.
width
;
if
(
dh
<
0
)
dh
=
bdImage
.
height
;
/* limit source rectangle width / height to source image */
if
(
sx
+
sw
>
bdImage
.
width
)
{
sw
=
bdImage
.
width
-
sx
;
}
if
(
sy
+
sh
>
bdImage
.
height
)
{
sh
=
bdImage
.
height
-
sy
;
}
int
stride
=
bdImage
.
width
;
int
[]
rgbArray
=
bdImage
.
getBdBackBuffer
();
int
bgColor
=
0
;
...
...
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