Romain Vimont
fbf19eb262
update_rect
2026-01-28 20:51:18 +01:00
Romain Vimont
8b597fbc5f
render_output_size
2026-01-28 20:51:18 +01:00
Romain Vimont
7817f8d6ba
render_from_screen
2026-01-28 20:51:17 +01:00
Romain Vimont
95693949a4
fix_macos
2026-01-28 20:51:17 +01:00
Romain Vimont
b5a8c784f9
Move renderer from sc_display to sc_screen
...
Make sc_screen the owner of both the SDL window and the SDL renderer.
This is the first step toward limiting the role of sc_display to texture
management.
2026-01-28 20:51:17 +01:00
Romain Vimont
8018b8a485
Simplify texture failure handling
...
When the scrcpy window is minimized on Windows with D3D9, texture
creation and updates fail.
As a workaround, a mechanism was implemented to reattempt applying the
requested changes.
Since SDL3 defaults to the D3D11 backend, remove this workaround,
which adds a lot of complexity for a backend that should almost never
be used.
However, do not close scrcpy when texture creation or updates fail; only
the frame should be lost.
Refs SDL/#7651 <https://github.com/libsdl-org/SDL/issues/7651 >
Refs #3947 <https://github.com/Genymobile/scrcpy/issues/3947 >
Refs 6298ef095f
2026-01-28 20:51:17 +01:00
Romain Vimont
57fd14c7de
icon
2026-01-28 20:51:17 +01:00
Romain Vimont
9feb7be1e7
fix_window_condition
2026-01-28 20:51:17 +01:00
Romain Vimont
53e719bf6c
SCRCPY_ICON_DIR
2026-01-28 20:51:17 +01:00
Romain Vimont
21ed4400b9
sc_file_build_path
2026-01-28 20:51:17 +01:00
Romain Vimont
1df7ad275c
Rename icon.png to scrcpy.png
...
This makes the icon name consistent everywhere.
2026-01-28 20:51:16 +01:00
Romain Vimont
373b366fa5
Do not attempt to increase audio thread priority
...
In practice, this always fails for non-privileged processes.
2026-01-17 21:30:19 +01:00
Romain Vimont
5607f12f2a
Document camera torch and zoom features
...
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
2026-01-13 20:41:09 +01:00
Tommie
8ac04d39f4
Add shortcuts to change the camera zoom
...
MOD+up and MOD+zoom change the camera zoom.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
Signed-off-by: Romain Vimont <rom@rom1v.com >
2026-01-13 20:40:58 +01:00
Tommie
af355804ef
Add option to specify the camera zoom
...
Add --camera-zoom to specify the camera zoom.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
Signed-off-by: Romain Vimont <rom@rom1v.com >
2026-01-13 20:37:42 +01:00
Romain Vimont
1018f3e9be
Display fps set with '{}'
...
Replace "fps=[15, 30, 60]" with "fps={15, 30, 60}".
The default toString() implementation for a SortedSet uses '[]', but
it is more correct to use '{}' to denote a set.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
2026-01-13 20:36:33 +01:00
Romain Vimont
48fcfdd104
Add shortcuts to switch the camera torch
...
MOD+t turns on the camera torch, MOD+Shift+t turns it off.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
Co-authored-by: Tommie <teh420@gmail.com >
2026-01-13 20:35:52 +01:00
Tommie
553813e97d
Add option to turn on the camera torch
...
Add --camera-torch to turn on the camera torch when the camera starts.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
Signed-off-by: Romain Vimont <rom@rom1v.com >
2026-01-13 20:32:06 +01:00
Romain Vimont
968f178205
Simplify camera startup code
...
Avoid multiple back-and-forths between the caller thread and the camera
thread.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
2026-01-13 20:28:32 +01:00
Romain Vimont
1b13d0a22d
Enable "reset video" shortcut for camera
...
Make the existing "reset video" feature (MOD+Shift+R) also work for a
camera video source.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
2026-01-13 20:27:53 +01:00
Romain Vimont
078565d40b
Enable controls for camera video source
...
This will allow the implementation of camera-specific shortcuts.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
Co-authored-by: Tommie <teh420@gmail.com >
2026-01-13 20:27:33 +01:00
Romain Vimont
cc7c07d4a3
Report control protocol errors
...
All IOExceptions were ignored to avoid an error on close, but protocol
exceptions must be reported.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
2026-01-13 20:18:36 +01:00
Romain Vimont
24b46f11a5
Throw error on unexpected control message type
...
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
2026-01-13 20:15:37 +01:00
Romain Vimont
f348a1f307
Group control-event shortcuts
...
Group together the shortcuts that trigger control events sent to the
device.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
2026-01-13 20:11:16 +01:00
Romain Vimont
f8846aa76d
Simplify capture invalidation
...
Remove the unnecessary requestInvalidate() indirection. Use a single
invalidate() method instead.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
2026-01-13 20:10:30 +01:00
Romain Vimont
1e51d2c83f
Move precondition checks for input events
...
Always call the appropriate method responsible for handling the input
event, which can then decide to do nothing.
PR #6243 <https://github.com/Genymobile/scrcpy/pull/6243 >
2026-01-13 20:08:40 +01:00
Romain Vimont
826076f753
Detect frame size mismatch in decoder
...
Warn if the size of a decoded video frame does not match the session
metadata.
PR #6159 <https://github.com/Genymobile/scrcpy/pull/6159 >
2026-01-10 11:53:22 +01:00
Romain Vimont
c36433999c
Properly handle session packets in delay_buffer
...
The delay buffer must forward the session packets while preserving
their order relative to media packets.
PR #6159 <https://github.com/Genymobile/scrcpy/pull/6159 >
2026-01-10 11:53:22 +01:00
Romain Vimont
78cba1b7c2
Add session metadata for the video stream
...
Introduce a new packet type, a "session" packet, containing metadata
about the encoding session. It is used only for the video stream and
currently includes the video resolution.
For illustration, here is a sequence of packets on the video stream:
device rotation
v
CODEC | SESSION | MEDIA | MEDIA | … | SESSION | MEDIA | MEDIA | …
1920x1080 <-----------------> 1080x1920 <------------------
encoding session 1 encoding session 2
This metadata is not strictly necessary, since the video resolution can
be determined after decoding. However, it allows detection of cases
where the encoder does not respect the requested size (and logs a
warning), even without decoding (e.g., when there is no video playback).
Additional metadata could be added later if necessary, for example the
actual device rotation.
Refs #5918 <https://github.com/Genymobile/scrcpy/pull/5918 >
Refs #5894 <https://github.com/Genymobile/scrcpy/pull/5894 >
PR #6159 <https://github.com/Genymobile/scrcpy/pull/6159 >
Co-authored-by: gz0119 <liyong2@4399.com >
2026-01-10 11:53:22 +01:00
Romain Vimont
1015b42e53
Rename "codec meta" to "stream meta"
...
The stream metadata will contain both:
- the codec ID at the start of the stream
- the session metadata (video width and height) at the start of each
"session" (typically on rotation)
PR #6159 <https://github.com/Genymobile/scrcpy/pull/6159 >
2026-01-10 11:53:22 +01:00
Romain Vimont
f4cc07da24
Keep the window hidden during initialization
...
This prevents blinking during display initialization.
2026-01-09 19:08:04 +01:00
Romain Vimont
fde02a7dfa
Fix segfault with --no-video
...
Do not call SDL_RectToFRect() if geometry is NULL.
Bug introduced by 02989249f6 .
2026-01-09 19:06:08 +01:00
dddddjent
dee1fd46a6
Fix SDL colorspace matching AVCOL_SPC_RGB
...
Use BT.709 color space for AVCOL_SPC_RGB.
Refs #1868 comment <https://github.com/Genymobile/scrcpy/issues/1868#issuecomment-3293917796 >
Signed-off-by: Romain Vimont <rom@rom1v.com >
2026-01-08 20:40:51 +01:00
Romain Vimont
a90a039f50
Upgrade SDL3 dependency list for Github Actions
...
Explicitly install required packages listed here:
<https://wiki.libsdl.org/SDL3/README-linux#build-dependencies >
Refs #6216 comment <https://github.com/Genymobile/scrcpy/pull/6216#issuecomment-3703680127 >
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-08 20:40:51 +01:00
Romain Vimont
ab04e0348d
Build SDL3 for test step on Github Actions
...
The Ubuntu version used to build scrcpy does not provide an SDL3
package.
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-08 20:40:51 +01:00
Romain Vimont
99b955f390
Upgrade SDL build script for SDL3
...
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-08 20:40:51 +01:00
Romain Vimont
bbb855b5b0
Remove obsolete workaround for macOS
...
Refs #3031 <https://github.com/Genymobile/scrcpy/pull/3031 >
Refs SDL/#5340 <https://github.com/libsdl-org/SDL/issues/5340 >
Refs SDL/#5976 <https://github.com/libsdl-org/SDL/issues/5976 >
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-08 20:40:51 +01:00
Romain Vimont
4879950a06
Fix asynchronous SDL window state handling
...
The SDL3 migration guide [1] says:
> The following window operations are now considered to be asynchronous
requests and should not be assumed to succeed unless a corresponding
event has been received […]
Remove the boolean fields used to track the window state, as they were
fundamentally inconsistent with SDL's internal state. Use
SDL_GetWindowFlags() explicitly instead.
[1]: <https://wiki.libsdl.org/SDL3/README-migration >
Refs #6216 comment <https://github.com/Genymobile/scrcpy/pull/6216#discussion_r2651810005 >
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-08 20:40:51 +01:00
Romain Vimont
170b7a02e7
Disable "resize to pixel-perfect" when maximized
...
This improves consistency and will simplify further refactors.
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-08 20:40:51 +01:00
Romain Vimont
9f1aac41a6
Check programming errors reported by SDL3
...
Refs #6216 comment <https://github.com/Genymobile/scrcpy/pull/6216#issuecomment-3399353701 >
Refs SDL/#14223 <https://github.com/libsdl-org/SDL/issues/14223 >
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-08 20:40:48 +01:00
Romain Vimont
02989249f6
Migrate from SDL2 to SDL3
...
Refs <https://wiki.libsdl.org/SDL3/README-migration >
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-06 16:22:48 +01:00
Romain Vimont
f8e0b9be4b
Improve color space conversion
...
Use both the color space and color range from FFmpeg to determine the
appropriate SDL YUV conversion mode.
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-04 14:14:33 +01:00
Romain Vimont
ed62ca124c
Set color range during texture creation
...
This prepares for the migration to SDL3, where the color range can only
be specified at the time of texture creation.
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-04 14:14:18 +01:00
Romain Vimont
3571fe62ed
Create texture on first frame
...
The texture was created as soon as the initial video size was known,
even before the first frame arrived.
However, texture creation will require other data, such as the color
range, which is only available once the first frame is received.
Therefore, delay texture creation until the first frame.
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-04 14:13:33 +01:00
Romain Vimont
bca98133d1
Remove prepare_for_frame()
...
Inline the function body into its only caller to simplify further
refactors.
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-04 14:12:12 +01:00
Romain Vimont
881c71b2e8
Handle mouse integer scrolling locally
...
Do not rely on SDL to expose integer scroll values, as they are not
available in all versions.
It was reimplemented in SDL 3.2.12 by this commit:
<0447c2f3c3 >
Refs #6156 <https://github.com/Genymobile/scrcpy/issues/6156 >
PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216 >
2026-01-04 14:11:51 +01:00
Romain Vimont
09eed565fc
Remove unnecessary dependencies for Windows builds
...
The GitHub Actions script installed unnecessary packages when
cross-building for Windows.
2026-01-04 14:04:57 +01:00
Romain Vimont
b0da401e6d
Fix documentation of input_events.h
...
Add missing reference to sc_gamepad_processor.
Refs #6216 comment <https://github.com/Genymobile/scrcpy/pull/6216#pullrequestreview-3616928335 >
2026-01-04 14:04:34 +01:00
Romain Vimont
dba2a3778f
Include USB header only if HAVE_USB
2026-01-02 14:59:10 +01:00
Romain Vimont
cda4387058
Add missing break statement
...
Refs #6439 comment <https://github.com/Genymobile/scrcpy/pull/6439#issuecomment-3705283406 >
2026-01-02 14:47:28 +01:00