Re: [Spice-devel] [PATCH] download: Add x11spice

2017-06-21 Thread Snir Sheriber
On 06/22/2017 12:38 AM, Jeremy White wrote: Alright, it's up on gitlab now: https://gitlab.com/spice/x11spice Looks like there isn't any obvious way for me to ask to edit the pages; I was going to point to this link as a release file: https://gitlab.com/spice/x11spice/repository/archive.

Re: [Spice-devel] [PATCH] download: Add x11spice

2017-06-21 Thread Jeremy White
>> Alright, it's up on gitlab now: >> https://gitlab.com/spice/x11spice >> >> Looks like there isn't any obvious way for me to ask to edit the >> pages; I was going to point to this link as a release file: >> https://gitlab.com/spice/x11spice/repository/archive.tar.bz2?ref=v1.1 > Thanks! > > T

[Spice-devel] [PATCH spice-common v2 2/2] log: Force format in log macro to be a string

2017-06-21 Thread Frediano Ziglio
Make sure format is a string and not a pointer. Signed-off-by: Frediano Ziglio --- common/log.h | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/log.h b/common/log.h index ed701ca..c6d260c 100644 --- a/common/log.h +++ b/common/log.h @@ -62,23 +62,23 @@ void

[Spice-devel] [PATCH spice-common v2 1/2] log: Forbid the usage of obsolete SPICE_LOG_DOMAIN

2017-06-21 Thread Frediano Ziglio
As we decided to not use GLib domains do not allow the usage of this obsolete macro to use different logging domains. Will be replaced by some different categorization. Signed-off-by: Frediano Ziglio --- common/log.c | 17 + common/log.h | 25 -

Re: [Spice-devel] [PATCH spice-common] canvas-base: Do not attempt useless cast on stride adjustment

2017-06-21 Thread Frediano Ziglio
> > On 06/21/2017 10:41 AM, Christophe Fergeau wrote: > > On Tue, Jun 20, 2017 at 08:39:44PM +0300, Uri Lublin wrote: > >> On 06/20/2017 04:52 PM, Frediano Ziglio wrote: > >>> memmove already deal with any alignment so there's no > >>> reason to have row byte pointer cast to uint32_t. > >> > >> Hi

Re: [Spice-devel] [PATCH spice-common] canvas-base: Do not attempt useless cast on stride adjustment

2017-06-21 Thread Uri Lublin
On 06/21/2017 10:41 AM, Christophe Fergeau wrote: On Tue, Jun 20, 2017 at 08:39:44PM +0300, Uri Lublin wrote: On 06/20/2017 04:52 PM, Frediano Ziglio wrote: memmove already deal with any alignment so there's no reason to have row byte pointer cast to uint32_t. Hi Frediano, I think the code h

Re: [Spice-devel] [PATCH spice-common] canvas-base: Do not attempt useless cast on stride adjustment

2017-06-21 Thread Uri Lublin
On 06/21/2017 01:13 PM, Frediano Ziglio wrote: - Original Message - From: "Uri Lublin" To: "Frediano Ziglio" , spice-devel@lists.freedesktop.org Sent: Tuesday, June 20, 2017 6:39:44 PM Subject: Re: [Spice-devel] [PATCH spice-common] canvas-base: Do not attempt useless cast on stride

Re: [Spice-devel] [PATCH spice-html5 4/4] Display: Add support for the VP9 codec type

2017-06-21 Thread Pavel Grunt
Hi, sure. I'll change it to '===' (I think in this case it does not matter - it's comparing ints not objects, but as you said, we should be consistent) On Tue, Jun 20, 2017 at 10:44 PM, Jeremy White wrote: > Hi, > > One tiny niggle: > > On 06/08/2017 09:27 AM, Pavel Grunt wrote: > > @@ -606,7 +

Re: [Spice-devel] [PATCH spice-common v2] canvas-base: Do not attempt useless cast on stride adjustment

2017-06-21 Thread Christophe Fergeau
Acked-by: Christophe Fergeau On Wed, Jun 21, 2017 at 10:40:23AM +0100, Frediano Ziglio wrote: > memmove already deal with any alignment so there's no > reason to have row byte pointer cast to uint32_t. > This also remove the confusing "dest" terminology used. The image > is aligned in place so t

Re: [Spice-devel] [PATCH spice-common] canvas-base: Do not attempt useless cast on stride adjustment

2017-06-21 Thread Frediano Ziglio
- Original Message - > From: "Uri Lublin" > To: "Frediano Ziglio" , spice-devel@lists.freedesktop.org > Sent: Tuesday, June 20, 2017 6:39:44 PM > Subject: Re: [Spice-devel] [PATCH spice-common] canvas-base: Do not attempt > useless cast on stride adjustment > > On 06/20/2017 04:52 PM,

[Spice-devel] [PATCH spice-common v2] canvas-base: Do not attempt useless cast on stride adjustment

2017-06-21 Thread Frediano Ziglio
memmove already deal with any alignment so there's no reason to have row byte pointer cast to uint32_t. This also remove the confusing "dest" terminology used. The image is aligned in place so the image bits are used for both destination and source. Signed-off-by: Frediano Ziglio --- common/canv

Re: [Spice-devel] [PATCH spice-common] canvas-base: Do not attempt useless cast on stride adjustment

2017-06-21 Thread Christophe Fergeau
On Tue, Jun 20, 2017 at 08:39:44PM +0300, Uri Lublin wrote: > On 06/20/2017 04:52 PM, Frediano Ziglio wrote: > > memmove already deal with any alignment so there's no > > reason to have row byte pointer cast to uint32_t. > > Hi Frediano, > > I think the code has no problem with memmove itself, bu

Re: [Spice-devel] [PATCH spice-common] canvas-base: Do not attempt useless cast on stride adjustment

2017-06-21 Thread Christophe Fergeau
Hey, On Tue, Jun 20, 2017 at 02:52:56PM +0100, Frediano Ziglio wrote: > memmove already deal with any alignment so there's no > reason to have row byte pointer cast to uint32_t. > > Signed-off-by: Frediano Ziglio > --- > common/canvas_base.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 dele