mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
Whitespacey & comments
This commit is contained in:
parent
ad13250d93
commit
2fd79e5b3f
1 changed files with 7 additions and 7 deletions
|
@ -26,11 +26,11 @@ GST_DEBUG_CATEGORY_STATIC (debug_category);
|
||||||
typedef struct _CustomData {
|
typedef struct _CustomData {
|
||||||
jobject app; /* Application instance, used to call its methods. A global reference is kept. */
|
jobject app; /* Application instance, used to call its methods. A global reference is kept. */
|
||||||
GstElement *pipeline; /* The running pipeline */
|
GstElement *pipeline; /* The running pipeline */
|
||||||
GstElement *video_sink;/* The video sink element which receives XOverlay commands */
|
|
||||||
GMainContext *context; /* GLib context used to run the main loop */
|
GMainContext *context; /* GLib context used to run the main loop */
|
||||||
GMainLoop *main_loop; /* GLib main loop */
|
GMainLoop *main_loop; /* GLib main loop */
|
||||||
gboolean initialized; /* To avoid informing the UI multiple times about the initialization */
|
gboolean initialized; /* To avoid informing the UI multiple times about the initialization */
|
||||||
ANativeWindow *native_window;
|
GstElement *video_sink; /* The video sink element which receives XOverlay commands */
|
||||||
|
ANativeWindow *native_window; /* The Android native window where video will be rendered */
|
||||||
} CustomData;
|
} CustomData;
|
||||||
|
|
||||||
/* These global variables cache values which are not changing during execution */
|
/* These global variables cache values which are not changing during execution */
|
||||||
|
|
Loading…
Reference in a new issue