mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-01 09:43:55 +00:00
Regexp mangled some comments
This commit is contained in:
parent
768e602485
commit
a5d36ecb3e
1 changed files with 6 additions and 6 deletions
|
@ -14,8 +14,8 @@ import com.gst_sdk.GStreamer;
|
||||||
public class Tutorial2 extends Activity {
|
public class Tutorial2 extends Activity {
|
||||||
private native void nativeInit(); // Initialize native code, build pipeline, etc
|
private native void nativeInit(); // Initialize native code, build pipeline, etc
|
||||||
private native void nativeFinalize(); // Destroy pipeline and shutdown native code
|
private native void nativeFinalize(); // Destroy pipeline and shutdown native code
|
||||||
private native void nativePlay(); // Set pipeline toPLAYING
|
private native void nativePlay(); // Set pipeline to PLAYING
|
||||||
private native void nativePause(); // Set pipeline toPAUSED
|
private native void nativePause(); // Set pipeline to PAUSED
|
||||||
private static native boolean nativeClassInit(); // Initialize native class: cache Method IDs for callbacks
|
private static native boolean nativeClassInit(); // Initialize native class: cache Method IDs for callbacks
|
||||||
private long native_custom_data; // Native code will use this to keep private data
|
private long native_custom_data; // Native code will use this to keep private data
|
||||||
|
|
||||||
|
@ -56,8 +56,8 @@ public class Tutorial2 extends Activity {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Keep the instance state for later, since we will not perform ourinitialization
|
// Keep the instance state for later, since we will not perform our initialization
|
||||||
// until the native code reports that it is itselfinitialized.
|
// until the native code reports that it is itself initialized.
|
||||||
initialization_data = savedInstanceState;
|
initialization_data = savedInstanceState;
|
||||||
|
|
||||||
// Start with disabled buttons, until native code is initialized
|
// Start with disabled buttons, until native code is initialized
|
||||||
|
@ -88,8 +88,8 @@ public class Tutorial2 extends Activity {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Called from native code. Native code calls this once it has created its pipelineand
|
// Called from native code. Native code calls this once it has created its pipeline and
|
||||||
// the main loop is running, so it is ready to acceptcommands.
|
// the main loop is running, so it is ready to accept commands.
|
||||||
private void onGStreamerInitialized () {
|
private void onGStreamerInitialized () {
|
||||||
// If initialization data is present, retrieve it
|
// If initialization data is present, retrieve it
|
||||||
if (initialization_data != null) {
|
if (initialization_data != null) {
|
||||||
|
|
Loading…
Reference in a new issue