Skip to content

Commit c342613

Browse files
author
Isaac Raño Jares
committed
I suspect this System.out.println is for debuggin purposes only a it
should not be appearing on everyone's consoles
1 parent df7574f commit c342613

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/freedesktop/gstreamer/Pad.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ public void addEventProbe(final EVENT_PROBE listener) {
498498
public void addEventProbe(final EVENT_PROBE listener, final int mask) {
499499
final GstPadAPI.PadProbeCallback probe = new GstPadAPI.PadProbeCallback() {
500500
public PadProbeReturn callback(Pad pad, GstPadProbeInfo probeInfo, Pointer user_data) {
501-
System.out.println("CALLBACK " + probeInfo.padProbeType);
501+
// System.out.println("CALLBACK " + probeInfo.padProbeType);
502502
if ((probeInfo.padProbeType & mask) != 0) {
503503
Event event = gst.gst_pad_probe_info_get_event(probeInfo);
504504
return listener.eventReceived(pad, event);

0 commit comments

Comments
 (0)