All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Daniel P. Berrangé" <berrange@redhat.com>
To: Vivek Kasireddy <vivek.kasireddy@intel.com>
Cc: qemu-devel@nongnu.org, "Gerd Hoffmann" <kraxel@redhat.com>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>,
	"Dmitry Osipenko" <dmitry.osipenko@collabora.com>,
	"Frediano Ziglio" <freddy77@gmail.com>,
	"Dongwon Kim" <dongwon.kim@intel.com>,
	"Michael Scherle" <michael.scherle@rz.uni-freiburg.de>
Subject: Re: [PATCH v5 2/7] ui/spice: Add an option for users to provide a preferred codec
Date: Thu, 5 Jun 2025 09:43:09 +0100	[thread overview]
Message-ID: <aEFYnTvaDQ6Kd0o4@redhat.com> (raw)
In-Reply-To: <20250529051352.1409904-3-vivek.kasireddy@intel.com>

On Wed, May 28, 2025 at 10:11:13PM -0700, Vivek Kasireddy wrote:
> Giving users an option to choose a particular codec will enable
> them to make an appropriate decision based on their hardware and
> use-case.
> 
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
> Cc: Dmitry Osipenko <dmitry.osipenko@collabora.com>
> Cc: Frediano Ziglio <freddy77@gmail.com>
> Cc: Dongwon Kim <dongwon.kim@intel.com>
> Cc: Michael Scherle <michael.scherle@rz.uni-freiburg.de>
> Signed-off-by: Vivek Kasireddy <vivek.kasireddy@intel.com>
> ---
>  qemu-options.hx |  5 +++++
>  ui/spice-core.c | 12 ++++++++++++
>  2 files changed, 17 insertions(+)
> 
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 7eb8e02b4b..fcddb583c9 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -2281,6 +2281,7 @@ DEF("spice", HAS_ARG, QEMU_OPTION_spice,
>      "       [,streaming-video=[off|all|filter]][,disable-copy-paste=on|off]\n"
>      "       [,disable-agent-file-xfer=on|off][,agent-mouse=[on|off]]\n"
>      "       [,playback-compression=[on|off]][,seamless-migration=[on|off]]\n"
> +    "       [,video-codecs=<encoder>:<codec>\n"
>      "       [,gl=[on|off]][,rendernode=<file>]\n"
>      "                enable spice\n"
>      "                at least one of {port, tls-port} is mandatory\n",
> @@ -2369,6 +2370,10 @@ SRST
>      ``seamless-migration=[on|off]``
>          Enable/disable spice seamless migration. Default is off.
>  
> +    ``video-codecs=<encoder>:<codec>``
> +        Provide the preferred codec the Spice server should use.
> +        Default would be spice:mjpeg.

This looks like two distinct settings overloaded into one command
line parameter, which is a design anti-pattern.

Why can't this be done as separate parameters

   video-encoder=<blah>
   video-codec=<blah>


With regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|



  reply	other threads:[~2025-06-05  8:45 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-29  5:11 [PATCH v5 0/7] ui/spice: Enable gl=on option for non-local or remote clients Vivek Kasireddy
2025-05-29  5:11 ` [PATCH v5 1/7] ui/egl-helpers: Error check the fds in egl_dmabuf_export_texture() Vivek Kasireddy
2025-05-29  5:11 ` [PATCH v5 2/7] ui/spice: Add an option for users to provide a preferred codec Vivek Kasireddy
2025-06-05  8:43   ` Daniel P. Berrangé [this message]
2025-06-06  6:10     ` Kasireddy, Vivek
2025-06-06  7:16       ` Daniel P. Berrangé
2025-06-10 11:30         ` Marc-André Lureau
2025-06-10 12:20           ` Daniel P. Berrangé
2025-06-10 13:30             ` Michael Scherle
2025-06-11  5:07             ` Kasireddy, Vivek
2025-05-29  5:11 ` [PATCH v5 3/7] ui/spice: Enable gl=on option for non-local or remote clients Vivek Kasireddy
2025-05-29  5:11 ` [PATCH v5 4/7] ui/spice: Add an option to submit gl_draw requests at fixed rate Vivek Kasireddy
2025-05-29  5:11 ` [PATCH v5 5/7] ui/console-gl: Add a helper to create a texture with linear memory layout Vivek Kasireddy
2025-05-29  5:11 ` [PATCH v5 6/7] ui/spice: Create a new texture with linear layout when gl=on is enabled Vivek Kasireddy
2025-05-29  5:11 ` [PATCH v5 7/7] ui/spice: Blit the scanout texture if its memory layout is not linear Vivek Kasireddy
2025-06-04  7:23 ` [PATCH v5 0/7] ui/spice: Enable gl=on option for non-local or remote clients Marc-André Lureau
2025-06-05  5:16   ` Kasireddy, Vivek
2025-06-05 14:49 ` Alex Bennée

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aEFYnTvaDQ6Kd0o4@redhat.com \
    --to=berrange@redhat.com \
    --cc=dmitry.osipenko@collabora.com \
    --cc=dongwon.kim@intel.com \
    --cc=freddy77@gmail.com \
    --cc=kraxel@redhat.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=michael.scherle@rz.uni-freiburg.de \
    --cc=qemu-devel@nongnu.org \
    --cc=vivek.kasireddy@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.