2017-06-21 02:23:44 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "backends/meta-screen-cast-monitor-stream-src.h"
|
|
|
|
|
2018-12-14 11:47:57 -05:00
|
|
|
#include <spa/buffer/meta.h>
|
|
|
|
|
2017-06-21 02:23:44 -04:00
|
|
|
#include "backends/meta-backend-private.h"
|
2018-12-14 11:47:57 -05:00
|
|
|
#include "backends/meta-cursor-tracker-private.h"
|
2017-06-21 02:23:44 -04:00
|
|
|
#include "backends/meta-logical-monitor.h"
|
|
|
|
#include "backends/meta-monitor.h"
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "backends/meta-screen-cast-monitor-stream.h"
|
2018-12-14 11:47:57 -05:00
|
|
|
#include "backends/meta-screen-cast-session.h"
|
2019-06-17 20:49:45 -04:00
|
|
|
#include "backends/meta-stage-private.h"
|
2017-06-21 02:23:44 -04:00
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#include "clutter/clutter-mutter.h"
|
2018-12-14 11:47:57 -05:00
|
|
|
#include "core/boxes-private.h"
|
2017-06-21 02:23:44 -04:00
|
|
|
|
|
|
|
struct _MetaScreenCastMonitorStreamSrc
|
|
|
|
{
|
|
|
|
MetaScreenCastStreamSrc parent;
|
|
|
|
|
2019-01-03 10:51:08 -05:00
|
|
|
gboolean cursor_bitmap_invalid;
|
2020-01-17 15:08:02 -05:00
|
|
|
gboolean hw_cursor_inhibited;
|
2019-01-03 10:51:08 -05:00
|
|
|
|
2020-01-17 15:08:02 -05:00
|
|
|
GList *watches;
|
2019-06-17 20:49:45 -04:00
|
|
|
|
2018-12-14 11:47:57 -05:00
|
|
|
gulong cursor_moved_handler_id;
|
|
|
|
gulong cursor_changed_handler_id;
|
2017-06-21 02:23:44 -04:00
|
|
|
};
|
|
|
|
|
2018-12-14 11:47:57 -05:00
|
|
|
static void
|
|
|
|
hw_cursor_inhibitor_iface_init (MetaHwCursorInhibitorInterface *iface);
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (MetaScreenCastMonitorStreamSrc,
|
|
|
|
meta_screen_cast_monitor_stream_src,
|
|
|
|
META_TYPE_SCREEN_CAST_STREAM_SRC,
|
|
|
|
G_IMPLEMENT_INTERFACE (META_TYPE_HW_CURSOR_INHIBITOR,
|
|
|
|
hw_cursor_inhibitor_iface_init))
|
2017-06-21 02:23:44 -04:00
|
|
|
|
|
|
|
static ClutterStage *
|
|
|
|
get_stage (MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
|
|
|
MetaScreenCastStreamSrc *src;
|
|
|
|
MetaScreenCastStream *stream;
|
|
|
|
MetaScreenCastMonitorStream *monitor_stream;
|
|
|
|
|
|
|
|
src = META_SCREEN_CAST_STREAM_SRC (monitor_src);
|
|
|
|
stream = meta_screen_cast_stream_src_get_stream (src);
|
|
|
|
monitor_stream = META_SCREEN_CAST_MONITOR_STREAM (stream);
|
|
|
|
|
|
|
|
return meta_screen_cast_monitor_stream_get_stage (monitor_stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static MetaMonitor *
|
|
|
|
get_monitor (MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
|
|
|
MetaScreenCastStreamSrc *src;
|
|
|
|
MetaScreenCastStream *stream;
|
|
|
|
MetaScreenCastMonitorStream *monitor_stream;
|
|
|
|
|
|
|
|
src = META_SCREEN_CAST_STREAM_SRC (monitor_src);
|
|
|
|
stream = meta_screen_cast_stream_src_get_stream (src);
|
|
|
|
monitor_stream = META_SCREEN_CAST_MONITOR_STREAM (stream);
|
|
|
|
|
|
|
|
return meta_screen_cast_monitor_stream_get_monitor (monitor_stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_screen_cast_monitor_stream_src_get_specs (MetaScreenCastStreamSrc *src,
|
|
|
|
int *width,
|
|
|
|
int *height,
|
|
|
|
float *frame_rate)
|
|
|
|
{
|
|
|
|
MetaScreenCastMonitorStreamSrc *monitor_src =
|
|
|
|
META_SCREEN_CAST_MONITOR_STREAM_SRC (src);
|
|
|
|
MetaMonitor *monitor;
|
|
|
|
MetaLogicalMonitor *logical_monitor;
|
|
|
|
float scale;
|
|
|
|
MetaMonitorMode *mode;
|
|
|
|
|
|
|
|
monitor = get_monitor (monitor_src);
|
|
|
|
logical_monitor = meta_monitor_get_logical_monitor (monitor);
|
|
|
|
mode = meta_monitor_get_current_mode (monitor);
|
|
|
|
|
2019-01-25 16:06:39 -05:00
|
|
|
if (meta_is_stage_views_scaled ())
|
|
|
|
scale = logical_monitor->scale;
|
|
|
|
else
|
|
|
|
scale = 1.0;
|
|
|
|
|
2017-06-21 02:23:44 -04:00
|
|
|
*width = (int) roundf (logical_monitor->rect.width * scale);
|
|
|
|
*height = (int) roundf (logical_monitor->rect.height * scale);
|
|
|
|
*frame_rate = meta_monitor_mode_get_refresh_rate (mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-06-17 20:49:45 -04:00
|
|
|
stage_painted (MetaStage *stage,
|
|
|
|
ClutterStageView *view,
|
|
|
|
gpointer user_data)
|
2017-06-21 02:23:44 -04:00
|
|
|
{
|
2019-06-17 20:49:45 -04:00
|
|
|
MetaScreenCastStreamSrc *src = META_SCREEN_CAST_STREAM_SRC (user_data);
|
2017-06-21 02:23:44 -04:00
|
|
|
|
|
|
|
meta_screen_cast_stream_src_maybe_record_frame (src);
|
|
|
|
}
|
|
|
|
|
2018-12-14 11:47:57 -05:00
|
|
|
static MetaBackend *
|
|
|
|
get_backend (MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
|
|
|
MetaScreenCastStreamSrc *src = META_SCREEN_CAST_STREAM_SRC (monitor_src);
|
|
|
|
MetaScreenCastStream *stream = meta_screen_cast_stream_src_get_stream (src);
|
|
|
|
MetaScreenCastSession *session = meta_screen_cast_stream_get_session (stream);
|
|
|
|
MetaScreenCast *screen_cast =
|
|
|
|
meta_screen_cast_session_get_screen_cast (session);
|
|
|
|
|
|
|
|
return meta_screen_cast_get_backend (screen_cast);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
is_cursor_in_stream (MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
|
|
|
MetaBackend *backend = get_backend (monitor_src);
|
|
|
|
MetaCursorRenderer *cursor_renderer =
|
|
|
|
meta_backend_get_cursor_renderer (backend);
|
|
|
|
MetaMonitor *monitor;
|
|
|
|
MetaLogicalMonitor *logical_monitor;
|
|
|
|
MetaRectangle logical_monitor_layout;
|
2019-02-20 10:23:04 -05:00
|
|
|
graphene_rect_t logical_monitor_rect;
|
2018-12-14 11:47:57 -05:00
|
|
|
MetaCursorSprite *cursor_sprite;
|
|
|
|
|
|
|
|
monitor = get_monitor (monitor_src);
|
|
|
|
logical_monitor = meta_monitor_get_logical_monitor (monitor);
|
|
|
|
logical_monitor_layout = meta_logical_monitor_get_layout (logical_monitor);
|
|
|
|
logical_monitor_rect =
|
2019-02-20 10:23:04 -05:00
|
|
|
meta_rectangle_to_graphene_rect (&logical_monitor_layout);
|
2018-12-14 11:47:57 -05:00
|
|
|
|
|
|
|
cursor_sprite = meta_cursor_renderer_get_cursor (cursor_renderer);
|
|
|
|
if (cursor_sprite)
|
|
|
|
{
|
2019-02-20 10:23:04 -05:00
|
|
|
graphene_rect_t cursor_rect;
|
2018-12-14 11:47:57 -05:00
|
|
|
|
|
|
|
cursor_rect = meta_cursor_renderer_calculate_rect (cursor_renderer,
|
|
|
|
cursor_sprite);
|
2019-02-20 10:23:04 -05:00
|
|
|
return graphene_rect_intersection (&cursor_rect,
|
|
|
|
&logical_monitor_rect,
|
|
|
|
NULL);
|
2018-12-14 11:47:57 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-20 09:53:44 -05:00
|
|
|
graphene_point_t cursor_position;
|
2018-12-14 11:47:57 -05:00
|
|
|
|
|
|
|
cursor_position = meta_cursor_renderer_get_position (cursor_renderer);
|
2019-02-20 10:23:04 -05:00
|
|
|
return graphene_rect_contains_point (&logical_monitor_rect,
|
|
|
|
&cursor_position);
|
2018-12-14 11:47:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sync_cursor_state (MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
|
|
|
MetaScreenCastStreamSrc *src = META_SCREEN_CAST_STREAM_SRC (monitor_src);
|
|
|
|
ClutterStage *stage = get_stage (monitor_src);
|
|
|
|
|
|
|
|
if (!is_cursor_in_stream (monitor_src))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (clutter_stage_is_redraw_queued (stage))
|
|
|
|
return;
|
|
|
|
|
|
|
|
meta_screen_cast_stream_src_maybe_record_frame (src);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cursor_moved (MetaCursorTracker *cursor_tracker,
|
|
|
|
float x,
|
|
|
|
float y,
|
|
|
|
MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
|
|
|
sync_cursor_state (monitor_src);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cursor_changed (MetaCursorTracker *cursor_tracker,
|
|
|
|
MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
2019-01-03 10:51:08 -05:00
|
|
|
monitor_src->cursor_bitmap_invalid = TRUE;
|
2018-12-14 11:47:57 -05:00
|
|
|
sync_cursor_state (monitor_src);
|
|
|
|
}
|
|
|
|
|
|
|
|
static MetaCursorRenderer *
|
|
|
|
get_cursor_renderer (MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
|
|
|
MetaScreenCastStreamSrc *src = META_SCREEN_CAST_STREAM_SRC (monitor_src);
|
|
|
|
MetaScreenCastStream *stream = meta_screen_cast_stream_src_get_stream (src);
|
|
|
|
MetaScreenCastSession *session = meta_screen_cast_stream_get_session (stream);
|
|
|
|
MetaScreenCast *screen_cast =
|
|
|
|
meta_screen_cast_session_get_screen_cast (session);
|
|
|
|
MetaBackend *backend = meta_screen_cast_get_backend (screen_cast);
|
|
|
|
|
|
|
|
return meta_backend_get_cursor_renderer (backend);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
inhibit_hw_cursor (MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
|
|
|
MetaCursorRenderer *cursor_renderer;
|
|
|
|
MetaHwCursorInhibitor *inhibitor;
|
|
|
|
|
2020-01-17 15:08:02 -05:00
|
|
|
g_return_if_fail (!monitor_src->hw_cursor_inhibited);
|
|
|
|
|
2018-12-14 11:47:57 -05:00
|
|
|
cursor_renderer = get_cursor_renderer (monitor_src);
|
|
|
|
inhibitor = META_HW_CURSOR_INHIBITOR (monitor_src);
|
|
|
|
meta_cursor_renderer_add_hw_cursor_inhibitor (cursor_renderer, inhibitor);
|
2020-01-17 15:08:02 -05:00
|
|
|
|
|
|
|
monitor_src->hw_cursor_inhibited = TRUE;
|
2018-12-14 11:47:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
uninhibit_hw_cursor (MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
|
|
|
MetaCursorRenderer *cursor_renderer;
|
|
|
|
MetaHwCursorInhibitor *inhibitor;
|
|
|
|
|
2020-01-17 15:08:02 -05:00
|
|
|
g_return_if_fail (monitor_src->hw_cursor_inhibited);
|
|
|
|
|
2018-12-14 11:47:57 -05:00
|
|
|
cursor_renderer = get_cursor_renderer (monitor_src);
|
|
|
|
inhibitor = META_HW_CURSOR_INHIBITOR (monitor_src);
|
|
|
|
meta_cursor_renderer_remove_hw_cursor_inhibitor (cursor_renderer, inhibitor);
|
2020-01-17 15:08:02 -05:00
|
|
|
|
|
|
|
monitor_src->hw_cursor_inhibited = FALSE;
|
2018-12-14 11:47:57 -05:00
|
|
|
}
|
|
|
|
|
2017-06-21 02:23:44 -04:00
|
|
|
static void
|
2020-01-17 15:08:02 -05:00
|
|
|
add_view_painted_watches (MetaScreenCastMonitorStreamSrc *monitor_src,
|
|
|
|
MetaStageWatchPhase watch_phase)
|
2017-06-21 02:23:44 -04:00
|
|
|
{
|
2018-12-14 11:47:57 -05:00
|
|
|
MetaBackend *backend = get_backend (monitor_src);
|
2019-06-17 20:49:45 -04:00
|
|
|
MetaRenderer *renderer = meta_backend_get_renderer (backend);
|
2020-01-17 15:08:02 -05:00
|
|
|
ClutterStage *stage;
|
|
|
|
MetaStage *meta_stage;
|
2019-06-17 20:49:45 -04:00
|
|
|
MetaMonitor *monitor;
|
|
|
|
MetaLogicalMonitor *logical_monitor;
|
2020-01-17 15:08:02 -05:00
|
|
|
MetaRectangle logical_monitor_layout;
|
|
|
|
GList *l;
|
2017-06-21 02:23:44 -04:00
|
|
|
|
|
|
|
stage = get_stage (monitor_src);
|
2019-06-17 20:49:45 -04:00
|
|
|
meta_stage = META_STAGE (stage);
|
|
|
|
monitor = get_monitor (monitor_src);
|
|
|
|
logical_monitor = meta_monitor_get_logical_monitor (monitor);
|
2020-01-17 15:08:02 -05:00
|
|
|
logical_monitor_layout = meta_logical_monitor_get_layout (logical_monitor);
|
2019-06-17 20:49:45 -04:00
|
|
|
|
2020-01-17 15:08:02 -05:00
|
|
|
for (l = meta_renderer_get_views (renderer); l; l = l->next)
|
|
|
|
{
|
|
|
|
MetaRendererView *view = l->data;
|
|
|
|
MetaRectangle view_layout;
|
|
|
|
|
|
|
|
clutter_stage_view_get_layout (CLUTTER_STAGE_VIEW (view), &view_layout);
|
|
|
|
if (meta_rectangle_overlap (&logical_monitor_layout, &view_layout))
|
|
|
|
{
|
|
|
|
MetaStageWatch *watch;
|
|
|
|
|
|
|
|
watch = meta_stage_watch_view (meta_stage,
|
|
|
|
CLUTTER_STAGE_VIEW (view),
|
|
|
|
watch_phase,
|
|
|
|
stage_painted,
|
|
|
|
monitor_src);
|
|
|
|
|
|
|
|
monitor_src->watches = g_list_prepend (monitor_src->watches, watch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_screen_cast_monitor_stream_src_enable (MetaScreenCastStreamSrc *src)
|
|
|
|
{
|
|
|
|
MetaScreenCastMonitorStreamSrc *monitor_src =
|
|
|
|
META_SCREEN_CAST_MONITOR_STREAM_SRC (src);
|
|
|
|
MetaBackend *backend = get_backend (monitor_src);
|
|
|
|
MetaCursorTracker *cursor_tracker = meta_backend_get_cursor_tracker (backend);
|
|
|
|
ClutterStage *stage;
|
|
|
|
MetaScreenCastStream *stream;
|
|
|
|
|
|
|
|
stream = meta_screen_cast_stream_src_get_stream (src);
|
|
|
|
stage = get_stage (monitor_src);
|
2018-12-14 11:47:57 -05:00
|
|
|
|
|
|
|
switch (meta_screen_cast_stream_get_cursor_mode (stream))
|
|
|
|
{
|
|
|
|
case META_SCREEN_CAST_CURSOR_MODE_METADATA:
|
|
|
|
monitor_src->cursor_moved_handler_id =
|
|
|
|
g_signal_connect_after (cursor_tracker, "cursor-moved",
|
|
|
|
G_CALLBACK (cursor_moved),
|
|
|
|
monitor_src);
|
|
|
|
monitor_src->cursor_changed_handler_id =
|
|
|
|
g_signal_connect_after (cursor_tracker, "cursor-changed",
|
|
|
|
G_CALLBACK (cursor_changed),
|
|
|
|
monitor_src);
|
2020-01-09 11:54:28 -05:00
|
|
|
G_GNUC_FALLTHROUGH;
|
2018-12-14 11:47:57 -05:00
|
|
|
case META_SCREEN_CAST_CURSOR_MODE_HIDDEN:
|
2020-01-17 15:08:02 -05:00
|
|
|
add_view_painted_watches (monitor_src,
|
|
|
|
META_STAGE_WATCH_AFTER_ACTOR_PAINT);
|
2018-12-14 11:47:57 -05:00
|
|
|
break;
|
|
|
|
case META_SCREEN_CAST_CURSOR_MODE_EMBEDDED:
|
|
|
|
inhibit_hw_cursor (monitor_src);
|
2020-01-17 15:08:02 -05:00
|
|
|
add_view_painted_watches (monitor_src,
|
|
|
|
META_STAGE_WATCH_AFTER_PAINT);
|
2018-12-14 11:47:57 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-06-21 02:23:44 -04:00
|
|
|
clutter_actor_queue_redraw (CLUTTER_ACTOR (stage));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-06-26 00:55:48 -04:00
|
|
|
meta_screen_cast_monitor_stream_src_disable (MetaScreenCastStreamSrc *src)
|
2017-06-21 02:23:44 -04:00
|
|
|
{
|
|
|
|
MetaScreenCastMonitorStreamSrc *monitor_src =
|
2017-06-26 00:55:48 -04:00
|
|
|
META_SCREEN_CAST_MONITOR_STREAM_SRC (src);
|
2018-12-14 11:47:57 -05:00
|
|
|
MetaBackend *backend = get_backend (monitor_src);
|
|
|
|
MetaCursorTracker *cursor_tracker = meta_backend_get_cursor_tracker (backend);
|
2017-06-21 02:23:44 -04:00
|
|
|
ClutterStage *stage;
|
2019-06-17 20:49:45 -04:00
|
|
|
MetaStage *meta_stage;
|
2020-01-17 15:08:02 -05:00
|
|
|
GList *l;
|
2017-06-21 02:23:44 -04:00
|
|
|
|
|
|
|
stage = get_stage (monitor_src);
|
2019-06-17 20:49:45 -04:00
|
|
|
meta_stage = META_STAGE (stage);
|
2018-12-14 11:47:57 -05:00
|
|
|
|
2020-01-17 15:08:02 -05:00
|
|
|
for (l = monitor_src->watches; l; l = l->next)
|
2018-12-14 11:47:57 -05:00
|
|
|
{
|
2020-01-17 15:08:02 -05:00
|
|
|
MetaStageWatch *watch = l->data;
|
2018-12-14 11:47:57 -05:00
|
|
|
|
2020-01-17 15:08:02 -05:00
|
|
|
meta_stage_remove_watch (meta_stage, watch);
|
2018-12-14 11:47:57 -05:00
|
|
|
}
|
2020-01-17 15:08:02 -05:00
|
|
|
g_clear_pointer (&monitor_src->watches, g_list_free);
|
|
|
|
|
|
|
|
if (monitor_src->hw_cursor_inhibited)
|
|
|
|
uninhibit_hw_cursor (monitor_src);
|
2018-12-14 11:47:57 -05:00
|
|
|
|
2019-11-15 19:25:52 -05:00
|
|
|
g_clear_signal_handler (&monitor_src->cursor_moved_handler_id,
|
|
|
|
cursor_tracker);
|
|
|
|
g_clear_signal_handler (&monitor_src->cursor_changed_handler_id,
|
|
|
|
cursor_tracker);
|
2017-06-26 00:55:48 -04:00
|
|
|
}
|
|
|
|
|
2018-12-14 11:47:57 -05:00
|
|
|
static gboolean
|
2017-06-26 00:55:48 -04:00
|
|
|
meta_screen_cast_monitor_stream_src_record_frame (MetaScreenCastStreamSrc *src,
|
|
|
|
uint8_t *data)
|
|
|
|
{
|
|
|
|
MetaScreenCastMonitorStreamSrc *monitor_src =
|
|
|
|
META_SCREEN_CAST_MONITOR_STREAM_SRC (src);
|
|
|
|
ClutterStage *stage;
|
|
|
|
MetaMonitor *monitor;
|
|
|
|
MetaLogicalMonitor *logical_monitor;
|
|
|
|
|
|
|
|
stage = get_stage (monitor_src);
|
2018-12-14 11:47:57 -05:00
|
|
|
if (!clutter_stage_is_redraw_queued (stage))
|
|
|
|
return FALSE;
|
|
|
|
|
2017-06-26 00:55:48 -04:00
|
|
|
monitor = get_monitor (monitor_src);
|
|
|
|
logical_monitor = meta_monitor_get_logical_monitor (monitor);
|
|
|
|
clutter_stage_capture_into (stage, FALSE, &logical_monitor->rect, data);
|
2018-12-14 11:47:57 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-12-09 08:11:51 -05:00
|
|
|
static gboolean
|
|
|
|
meta_screen_cast_monitor_stream_src_blit_to_framebuffer (MetaScreenCastStreamSrc *src,
|
|
|
|
CoglFramebuffer *framebuffer)
|
|
|
|
{
|
|
|
|
MetaScreenCastMonitorStreamSrc *monitor_src =
|
|
|
|
META_SCREEN_CAST_MONITOR_STREAM_SRC (src);
|
|
|
|
MetaBackend *backend = get_backend (monitor_src);
|
|
|
|
MetaRenderer *renderer = meta_backend_get_renderer (backend);
|
|
|
|
MetaMonitor *monitor;
|
|
|
|
MetaLogicalMonitor *logical_monitor;
|
|
|
|
MetaRectangle logical_monitor_layout;
|
|
|
|
GList *l;
|
|
|
|
float view_scale;
|
|
|
|
|
|
|
|
monitor = get_monitor (monitor_src);
|
|
|
|
logical_monitor = meta_monitor_get_logical_monitor (monitor);
|
|
|
|
logical_monitor_layout = meta_logical_monitor_get_layout (logical_monitor);
|
|
|
|
|
|
|
|
if (meta_is_stage_views_scaled ())
|
|
|
|
view_scale = meta_logical_monitor_get_scale (logical_monitor);
|
|
|
|
else
|
|
|
|
view_scale = 1.0;
|
|
|
|
|
|
|
|
for (l = meta_renderer_get_views (renderer); l; l = l->next)
|
|
|
|
{
|
|
|
|
ClutterStageView *view = CLUTTER_STAGE_VIEW (l->data);
|
|
|
|
g_autoptr (GError) error = NULL;
|
|
|
|
CoglFramebuffer *view_framebuffer;
|
|
|
|
MetaRectangle view_layout;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
clutter_stage_view_get_layout (view, &view_layout);
|
|
|
|
|
|
|
|
if (!meta_rectangle_overlap (&logical_monitor_layout, &view_layout))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
view_framebuffer = clutter_stage_view_get_framebuffer (view);
|
|
|
|
|
|
|
|
x = (int) roundf ((view_layout.x - logical_monitor_layout.x) * view_scale);
|
|
|
|
y = (int) roundf ((view_layout.y - logical_monitor_layout.y) * view_scale);
|
|
|
|
|
|
|
|
if (!cogl_blit_framebuffer (view_framebuffer,
|
|
|
|
framebuffer,
|
|
|
|
0, 0,
|
|
|
|
x, y,
|
|
|
|
cogl_framebuffer_get_width (view_framebuffer),
|
|
|
|
cogl_framebuffer_get_height (view_framebuffer),
|
|
|
|
&error))
|
|
|
|
{
|
|
|
|
g_warning ("Error blitting view into DMABuf framebuffer: %s",
|
|
|
|
error->message);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-28 13:47:23 -05:00
|
|
|
cogl_framebuffer_finish (framebuffer);
|
2019-12-09 08:11:51 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-12-14 11:47:57 -05:00
|
|
|
static void
|
|
|
|
meta_screen_cast_monitor_stream_src_set_cursor_metadata (MetaScreenCastStreamSrc *src,
|
|
|
|
struct spa_meta_cursor *spa_meta_cursor)
|
|
|
|
{
|
|
|
|
MetaScreenCastMonitorStreamSrc *monitor_src =
|
|
|
|
META_SCREEN_CAST_MONITOR_STREAM_SRC (src);
|
|
|
|
MetaBackend *backend = get_backend (monitor_src);
|
|
|
|
MetaCursorRenderer *cursor_renderer =
|
|
|
|
meta_backend_get_cursor_renderer (backend);
|
|
|
|
MetaCursorSprite *cursor_sprite;
|
|
|
|
MetaMonitor *monitor;
|
|
|
|
MetaLogicalMonitor *logical_monitor;
|
|
|
|
MetaRectangle logical_monitor_layout;
|
2019-02-20 10:23:04 -05:00
|
|
|
graphene_rect_t logical_monitor_rect;
|
2018-12-14 11:47:57 -05:00
|
|
|
float view_scale;
|
2019-02-20 09:53:44 -05:00
|
|
|
graphene_point_t cursor_position;
|
2019-01-21 08:32:05 -05:00
|
|
|
int x, y;
|
2018-12-14 11:47:57 -05:00
|
|
|
|
|
|
|
cursor_sprite = meta_cursor_renderer_get_cursor (cursor_renderer);
|
|
|
|
|
|
|
|
if (!is_cursor_in_stream (monitor_src))
|
|
|
|
{
|
2019-01-21 08:32:05 -05:00
|
|
|
meta_screen_cast_stream_src_unset_cursor_metadata (src,
|
|
|
|
spa_meta_cursor);
|
2018-12-14 11:47:57 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
monitor = get_monitor (monitor_src);
|
|
|
|
logical_monitor = meta_monitor_get_logical_monitor (monitor);
|
|
|
|
logical_monitor_layout = meta_logical_monitor_get_layout (logical_monitor);
|
|
|
|
logical_monitor_rect =
|
2019-02-20 10:23:04 -05:00
|
|
|
meta_rectangle_to_graphene_rect (&logical_monitor_layout);
|
2018-12-14 11:47:57 -05:00
|
|
|
|
2020-01-17 15:08:02 -05:00
|
|
|
if (meta_is_stage_views_scaled ())
|
|
|
|
view_scale = meta_logical_monitor_get_scale (logical_monitor);
|
2018-12-14 11:47:57 -05:00
|
|
|
else
|
|
|
|
view_scale = 1.0;
|
|
|
|
|
|
|
|
cursor_position = meta_cursor_renderer_get_position (cursor_renderer);
|
|
|
|
cursor_position.x -= logical_monitor_rect.origin.x;
|
|
|
|
cursor_position.y -= logical_monitor_rect.origin.y;
|
|
|
|
cursor_position.x *= view_scale;
|
|
|
|
cursor_position.y *= view_scale;
|
|
|
|
|
2019-01-21 08:32:05 -05:00
|
|
|
x = (int) roundf (cursor_position.x);
|
|
|
|
y = (int) roundf (cursor_position.y);
|
2019-01-03 10:51:08 -05:00
|
|
|
|
2019-01-21 08:32:05 -05:00
|
|
|
if (monitor_src->cursor_bitmap_invalid)
|
2019-01-03 10:51:08 -05:00
|
|
|
{
|
2019-01-21 08:32:05 -05:00
|
|
|
if (cursor_sprite)
|
2018-12-14 11:47:57 -05:00
|
|
|
{
|
2019-01-21 08:32:05 -05:00
|
|
|
float cursor_scale;
|
|
|
|
float scale;
|
|
|
|
|
|
|
|
cursor_scale = meta_cursor_sprite_get_texture_scale (cursor_sprite);
|
|
|
|
scale = view_scale * cursor_scale;
|
|
|
|
meta_screen_cast_stream_src_set_cursor_sprite_metadata (src,
|
|
|
|
spa_meta_cursor,
|
|
|
|
cursor_sprite,
|
|
|
|
x, y,
|
|
|
|
scale);
|
2018-12-14 11:47:57 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-01-21 08:32:05 -05:00
|
|
|
meta_screen_cast_stream_src_set_empty_cursor_sprite_metadata (src,
|
|
|
|
spa_meta_cursor,
|
|
|
|
x, y);
|
2018-12-14 11:47:57 -05:00
|
|
|
}
|
2019-01-21 08:32:05 -05:00
|
|
|
|
|
|
|
monitor_src->cursor_bitmap_invalid = FALSE;
|
2018-12-14 11:47:57 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-01-21 08:32:05 -05:00
|
|
|
meta_screen_cast_stream_src_set_cursor_position_metadata (src,
|
|
|
|
spa_meta_cursor,
|
|
|
|
x, y);
|
2018-12-14 11:47:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
meta_screen_cast_monitor_stream_src_is_cursor_sprite_inhibited (MetaHwCursorInhibitor *inhibitor,
|
|
|
|
MetaCursorSprite *cursor_sprite)
|
|
|
|
{
|
|
|
|
MetaScreenCastMonitorStreamSrc *monitor_src =
|
|
|
|
META_SCREEN_CAST_MONITOR_STREAM_SRC (inhibitor);
|
|
|
|
|
|
|
|
return is_cursor_in_stream (monitor_src);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
hw_cursor_inhibitor_iface_init (MetaHwCursorInhibitorInterface *iface)
|
|
|
|
{
|
|
|
|
iface->is_cursor_sprite_inhibited =
|
|
|
|
meta_screen_cast_monitor_stream_src_is_cursor_sprite_inhibited;
|
2017-06-26 00:55:48 -04:00
|
|
|
}
|
2017-06-21 02:23:44 -04:00
|
|
|
|
2017-06-26 00:55:48 -04:00
|
|
|
MetaScreenCastMonitorStreamSrc *
|
|
|
|
meta_screen_cast_monitor_stream_src_new (MetaScreenCastMonitorStream *monitor_stream,
|
|
|
|
GError **error)
|
|
|
|
{
|
2017-06-28 03:17:32 -04:00
|
|
|
return g_initable_new (META_TYPE_SCREEN_CAST_MONITOR_STREAM_SRC, NULL, error,
|
2017-06-26 00:55:48 -04:00
|
|
|
"stream", monitor_stream,
|
|
|
|
NULL);
|
2017-06-21 02:23:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_screen_cast_monitor_stream_src_init (MetaScreenCastMonitorStreamSrc *monitor_src)
|
|
|
|
{
|
2019-01-03 10:51:08 -05:00
|
|
|
monitor_src->cursor_bitmap_invalid = TRUE;
|
2017-06-21 02:23:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_screen_cast_monitor_stream_src_class_init (MetaScreenCastMonitorStreamSrcClass *klass)
|
|
|
|
{
|
|
|
|
MetaScreenCastStreamSrcClass *src_class =
|
|
|
|
META_SCREEN_CAST_STREAM_SRC_CLASS (klass);
|
|
|
|
|
|
|
|
src_class->get_specs = meta_screen_cast_monitor_stream_src_get_specs;
|
2017-06-26 00:55:48 -04:00
|
|
|
src_class->enable = meta_screen_cast_monitor_stream_src_enable;
|
|
|
|
src_class->disable = meta_screen_cast_monitor_stream_src_disable;
|
2017-06-21 02:23:44 -04:00
|
|
|
src_class->record_frame = meta_screen_cast_monitor_stream_src_record_frame;
|
2019-12-09 08:11:51 -05:00
|
|
|
src_class->blit_to_framebuffer =
|
|
|
|
meta_screen_cast_monitor_stream_src_blit_to_framebuffer;
|
2018-12-14 11:47:57 -05:00
|
|
|
src_class->set_cursor_metadata =
|
|
|
|
meta_screen_cast_monitor_stream_src_set_cursor_metadata;
|
2017-06-21 02:23:44 -04:00
|
|
|
}
|