Skip to content

Commit 374406d

Browse files
Merge pull request #46 from isaacrj/Comment-out-pad-callback-println
Comment System.out.println in Pad EventProbe callbacks
2 parents 10775ac + c342613 commit 374406d

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
@@ -492,7 +492,7 @@ public void addEventProbe(final EVENT_PROBE listener) {
492492
public void addEventProbe(final EVENT_PROBE listener, final int mask) {
493493
final GstPadAPI.PadProbeCallback probe = new GstPadAPI.PadProbeCallback() {
494494
public PadProbeReturn callback(Pad pad, GstPadProbeInfo probeInfo, Pointer user_data) {
495-
System.out.println("CALLBACK " + probeInfo.padProbeType);
495+
// System.out.println("CALLBACK " + probeInfo.padProbeType);
496496
if ((probeInfo.padProbeType & mask) != 0) {
497497
Event event = GSTPAD_API.gst_pad_probe_info_get_event(probeInfo);
498498
return listener.eventReceived(pad, event);

0 commit comments

Comments
 (0)