Skip to content

Commit

Permalink
#3964 disable gstreamer encoders and decoders
Browse files Browse the repository at this point in the history
too many crashes and problems with it
  • Loading branch information
totaam committed May 23, 2024
1 parent a4ee6c7 commit 5323058
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fs/etc/xpra/conf.d/30_picture.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ encoding = auto
# video-encoders = none
# video-encoders = all
# video-encoders = all,-x264
video-encoders = all
video-encoders = all,-gstreamer

# Used by both the client and server for colourspace conversion:
# csc-modules = swscale, cython, libyuv
Expand All @@ -35,7 +35,7 @@ csc-modules = all
# video-decoders = vpx
# video-decoders = none
# video-decoders = all
video-decoders = all
video-decoders = all,-gstreamer

# Automatic video downscaling:
# video-scaling = 0 #same as off
Expand Down
4 changes: 2 additions & 2 deletions xpra/scripts/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1182,9 +1182,9 @@ def get_defaults() -> dict[str, Any]:
"remote-xpra" : get_remote_run_xpra_scripts(),
"encodings" : ["all"],
"proxy-video-encoders" : ["none"],
"video-encoders" : ["all"],
"video-encoders" : ["all", "-gstreamer"],
"csc-modules" : ["all"],
"video-decoders" : ["all"],
"video-decoders" : ["all", "-gstreamer"],
"speaker-codec" : [],
"microphone-codec" : [],
"compressors" : ["all"],
Expand Down

0 comments on commit 5323058

Please sign in to comment.