Skip to content

Commit

Permalink
#3592 remove ogg-latency-fix and bundle-metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jul 26, 2023
1 parent 1c14d1a commit 2937a64
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion xpra/audio/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ def run_audio(mode, error_cb, options, args):
"python.version" : sys.version_info[:3],
"python.bits" : BITS,
})
d["bundle-metadata"] = True
for k,v in d.items():
if isinstance(v, (list, tuple)):
v = ",".join(str(x) for x in v)
Expand Down
2 changes: 1 addition & 1 deletion xpra/client/mixins/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def get_audio_capabilities(self) -> Dict[str,Any]:
if FULL_INFO<2:
#only expose these specific keys:
sp = dict((k,v) for k,v in sp.items() if k in (
"encoders", "decoders", "muxers", "demuxers", "bundle-metadata", "ogg-latency-fix",
"encoders", "decoders", "muxers", "demuxers",
))
caps.update(sp)
log("audio capabilities: %s", caps)
Expand Down
2 changes: 1 addition & 1 deletion xpra/server/source/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def get_caps(self) -> Dict[str,Any]:
if FULL_INFO<2:
#only expose these specific keys:
audio_props = dict((k,v) for k,v in audio_props.items() if k in (
"muxers", "demuxers", "bundle-metadata", "ogg-latency-fix",
"muxers", "demuxers",
))
audio_props.update({
"codec-full-names" : True,
Expand Down

0 comments on commit 2937a64

Please sign in to comment.