Skip to content

Commit 4014da8

Browse files
author
Isaac Raño Jares
committed
VideoOverlay.setRenderRectangle signature should not include a
VideoOverlay parameter, as it is not used at all inside the function body.
1 parent df7574f commit 4014da8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/org/freedesktop/gstreamer/interfaces/VideoOverlay.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,12 @@ public void handleEvent(boolean handle_events) {
123123
* This method is needed for non fullscreen video overlay in UI toolkits
124124
* that do not support subwindows.
125125
*
126-
* @param overlay
127126
* @param x
128127
* @param y
129128
* @param width
130129
* @param height
131130
*/
132-
public boolean setRenderRectangle(VideoOverlay overlay, int x, int y, int width, int height) {
131+
public boolean setRenderRectangle(int x, int y, int width, int height) {
133132
return GSTVIDEOOVERLAY_API.gst_video_overlay_set_render_rectangle(this, x, y, width, height);
134133
}
135134
}

0 commit comments

Comments
 (0)