rpms/libva-intel-driver/devel sources, 1.7, 1.8 .cvsignore, 1.6, 1.7 libva-intel-driver.spec, 1.8, 1.9
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/libva-intel-driver/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv7962
Modified Files:
sources .cvsignore libva-intel-driver.spec
Log Message:
Update to 1.2.1
Index: sources
===================================================================
RCS file: /cvs/free/rpms/libva-intel-driver/devel/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources 26 Jun 2013 16:35:51 -0000 1.7
+++ sources 1 Oct 2013 21:15:02 -0000 1.8
@@ -1 +1 @@
-afdd4c91ac552a14b4d0ce93b75c88bb libva-intel-driver-1.2.0.tar.bz2
+8248d224d35c9544777f1c7250f581b2 libva-intel-driver-1.2.1.tar.bz2
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/libva-intel-driver/devel/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 26 Jun 2013 16:35:51 -0000 1.6
+++ .cvsignore 1 Oct 2013 21:15:03 -0000 1.7
@@ -1 +1 @@
-libva-intel-driver-1.2.0.tar.bz2
+libva-intel-driver-1.2.1.tar.bz2
Index: libva-intel-driver.spec
===================================================================
RCS file: /cvs/free/rpms/libva-intel-driver/devel/libva-intel-driver.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libva-intel-driver.spec 26 Jun 2013 16:35:51 -0000 1.8
+++ libva-intel-driver.spec 1 Oct 2013 21:15:03 -0000 1.9
@@ -1,7 +1,7 @@
#global _with_gen4asm 1
Name: libva-intel-driver
-Version: 1.2.0
+Version: 1.2.1
Release: 1%{?dist}
Summary: HW video decode support for Intel integrated graphics
Group: System Environment/Libraries
@@ -66,6 +66,9 @@
%changelog
+* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.2.1-1
+- Update to 1.2.1
+
* Wed Jun 26 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.2.0-1
- Update to 1.2.0
11 years, 1 month
rpms/ffmpeg-compat/F-18 0001-Fix-build-when-seletected-fpu-is-not-neon-on-arm.patch, NONE, 1.1 0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch, NONE, 1.1 ffmpeg-0.6.6-compile-fix.patch, NONE, 1.1
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpeg-compat/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv5494/F-18
Added Files:
0001-Fix-build-when-seletected-fpu-is-not-neon-on-arm.patch
0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch
ffmpeg-0.6.6-compile-fix.patch
Log Message:
Add patches
0001-Fix-build-when-seletected-fpu-is-not-neon-on-arm.patch:
h264dsp_init_arm.c | 4 +++-
h264pred_init_arm.c | 5 +++--
2 files changed, 6 insertions(+), 3 deletions(-)
--- NEW FILE 0001-Fix-build-when-seletected-fpu-is-not-neon-on-arm.patch ---
>From 514e8af6f39493cc4f2b7996da9117b438e5939b Mon Sep 17 00:00:00 2001
From: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sat, 29 Jun 2013 14:12:59 +0200
Subject: [PATCH] Fix build when seletected fpu is not neon on arm
---
libavcodec/arm/h264dsp_init_arm.c | 4 +++-
libavcodec/arm/h264pred_init_arm.c | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/libavcodec/arm/h264dsp_init_arm.c b/libavcodec/arm/h264dsp_init_arm.c
index c06c3d0..7014d1a 100644
--- a/libavcodec/arm/h264dsp_init_arm.c
+++ b/libavcodec/arm/h264dsp_init_arm.c
@@ -122,5 +122,7 @@ static void ff_h264dsp_init_neon(H264DSPContext *c)
void ff_h264dsp_init_arm(H264DSPContext *c)
{
- if (HAVE_NEON) ff_h264dsp_init_neon(c);
+#if HAVE_NEON
+ ff_h264dsp_init_neon(c);
+#endif
}
diff --git a/libavcodec/arm/h264pred_init_arm.c b/libavcodec/arm/h264pred_init_arm.c
index a7d9960..8574ff0 100644
--- a/libavcodec/arm/h264pred_init_arm.c
+++ b/libavcodec/arm/h264pred_init_arm.c
@@ -72,5 +72,7 @@ static void ff_h264_pred_init_neon(H264PredContext *h, int codec_id)
void ff_h264_pred_init_arm(H264PredContext *h, int codec_id)
{
- if (HAVE_NEON) ff_h264_pred_init_neon(h, codec_id);
+#if HAVE_NEON
+ ff_h264_pred_init_neon(h, codec_id);
+#endif
}
--
1.7.1
0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch:
yuv2rgb_template.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
--- NEW FILE 0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch ---
>From 78ddf390a520f333d800de6d00a7726fd846c830 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego(a)biurrun.de>
Date: Sun, 10 Apr 2011 21:12:08 +0200
Subject: [PATCH 2/2] Add unconditional return statement to
yuva420_rgb32_MMX() / yuva420_bgr32_MMX().
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
When HAVE_7REGS was not defined these functions had an empty body
causing the following warnings during compilation.
In file included from libswscale/x86/yuv2rgb_mmx.c:58:
libswscale/x86/yuv2rgb_template.c: In function ‘yuva420_rgb32_MMX’:
libswscale/x86/yuv2rgb_template.c:412: warning: no return statement in function returning non-void
libswscale/x86/yuv2rgb_template.c: In function ‘yuva420_bgr32_MMX’:
libswscale/x86/yuv2rgb_template.c:457: warning: no return statement in function returning non-void
Signed-off-by: Diego Biurrun <diego(a)biurrun.de>
Conflicts:
libswscale/x86/yuv2rgb_template.c
---
libswscale/x86/yuv2rgb_template.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libswscale/x86/yuv2rgb_template.c b/libswscale/x86/yuv2rgb_template.c
index ba90689..6016923 100644
--- a/libswscale/x86/yuv2rgb_template.c
+++ b/libswscale/x86/yuv2rgb_template.c
@@ -524,6 +524,8 @@ static inline int RENAME(yuva420_rgb32)(SwsContext *c, const uint8_t* src[], int
YUV2RGB_ENDLOOP(4)
YUV2RGB_OPERANDS_ALPHA
+#else
+ return 0;
#endif
}
@@ -560,5 +562,7 @@ static inline int RENAME(yuva420_bgr32)(SwsContext *c, const uint8_t* src[], int
YUV2RGB_ENDLOOP(4)
YUV2RGB_OPERANDS_ALPHA
+#else
+ return 0;
#endif
}
--
1.7.11.7
ffmpeg-0.6.6-compile-fix.patch:
vaapi_mpeg4.c | 1 +
1 file changed, 1 insertion(+)
--- NEW FILE ffmpeg-0.6.6-compile-fix.patch ---
diff -up ffmpeg-0.6.6/libavcodec/vaapi_mpeg4.c~ ffmpeg-0.6.6/libavcodec/vaapi_mpeg4.c
--- ffmpeg-0.6.6/libavcodec/vaapi_mpeg4.c~ 2012-06-09 22:09:09.000000000 +0200
+++ ffmpeg-0.6.6/libavcodec/vaapi_mpeg4.c 2013-05-05 20:34:05.537171756 +0200
@@ -21,6 +21,7 @@
*/
#include "vaapi_internal.h"
+#include "h263.h"
/** Reconstruct bitstream intra_dc_vlc_thr */
static int mpeg4_get_intra_dc_vlc_thr(MpegEncContext *s)
11 years, 1 month
rpms/ffmpeg-compat/F-19 0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch, NONE, 1.1
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpeg-compat/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv5494/F-19
Added Files:
0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch
Log Message:
Add patches
0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch:
yuv2rgb_template.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
--- NEW FILE 0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch ---
>From 78ddf390a520f333d800de6d00a7726fd846c830 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego(a)biurrun.de>
Date: Sun, 10 Apr 2011 21:12:08 +0200
Subject: [PATCH 2/2] Add unconditional return statement to
yuva420_rgb32_MMX() / yuva420_bgr32_MMX().
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
When HAVE_7REGS was not defined these functions had an empty body
causing the following warnings during compilation.
In file included from libswscale/x86/yuv2rgb_mmx.c:58:
libswscale/x86/yuv2rgb_template.c: In function ‘yuva420_rgb32_MMX’:
libswscale/x86/yuv2rgb_template.c:412: warning: no return statement in function returning non-void
libswscale/x86/yuv2rgb_template.c: In function ‘yuva420_bgr32_MMX’:
libswscale/x86/yuv2rgb_template.c:457: warning: no return statement in function returning non-void
Signed-off-by: Diego Biurrun <diego(a)biurrun.de>
Conflicts:
libswscale/x86/yuv2rgb_template.c
---
libswscale/x86/yuv2rgb_template.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libswscale/x86/yuv2rgb_template.c b/libswscale/x86/yuv2rgb_template.c
index ba90689..6016923 100644
--- a/libswscale/x86/yuv2rgb_template.c
+++ b/libswscale/x86/yuv2rgb_template.c
@@ -524,6 +524,8 @@ static inline int RENAME(yuva420_rgb32)(SwsContext *c, const uint8_t* src[], int
YUV2RGB_ENDLOOP(4)
YUV2RGB_OPERANDS_ALPHA
+#else
+ return 0;
#endif
}
@@ -560,5 +562,7 @@ static inline int RENAME(yuva420_bgr32)(SwsContext *c, const uint8_t* src[], int
YUV2RGB_ENDLOOP(4)
YUV2RGB_OPERANDS_ALPHA
+#else
+ return 0;
#endif
}
--
1.7.11.7
11 years, 1 month
rpms/ffmpeg-compat/F-19 ffmpeg-compat.spec,1.12,1.13
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpeg-compat/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv4757/F-19
Modified Files:
ffmpeg-compat.spec
Log Message:
Fix build
Index: ffmpeg-compat.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg-compat/F-19/ffmpeg-compat.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ffmpeg-compat.spec 1 Oct 2013 18:48:53 -0000 1.12
+++ ffmpeg-compat.spec 1 Oct 2013 20:52:00 -0000 1.13
@@ -22,6 +22,7 @@
Source1: ffmpeg-snapshot.sh
Patch0: ffmpeg-0.6.6-compile-fix.patch
Patch1: 0001-Fix-build-when-seletected-fpu-is-not-neon-on-arm.patch
+Patch2: 0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: bzip2-devel
@@ -118,6 +119,7 @@
%setup -q -n ffmpeg-%{version}
%patch0 -p1
%patch1 -p1
+%patch2 -p1
%build
mkdir generic
11 years, 1 month
rpms/ffmpeg-compat/devel 0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch, NONE, 1.1 ffmpeg-compat.spec, 1.13, 1.14
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpeg-compat/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv4757/devel
Modified Files:
ffmpeg-compat.spec
Added Files:
0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch
Log Message:
Fix build
0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch:
yuv2rgb_template.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
--- NEW FILE 0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch ---
>From 78ddf390a520f333d800de6d00a7726fd846c830 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego(a)biurrun.de>
Date: Sun, 10 Apr 2011 21:12:08 +0200
Subject: [PATCH 2/2] Add unconditional return statement to
yuva420_rgb32_MMX() / yuva420_bgr32_MMX().
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
When HAVE_7REGS was not defined these functions had an empty body
causing the following warnings during compilation.
In file included from libswscale/x86/yuv2rgb_mmx.c:58:
libswscale/x86/yuv2rgb_template.c: In function ‘yuva420_rgb32_MMX’:
libswscale/x86/yuv2rgb_template.c:412: warning: no return statement in function returning non-void
libswscale/x86/yuv2rgb_template.c: In function ‘yuva420_bgr32_MMX’:
libswscale/x86/yuv2rgb_template.c:457: warning: no return statement in function returning non-void
Signed-off-by: Diego Biurrun <diego(a)biurrun.de>
Conflicts:
libswscale/x86/yuv2rgb_template.c
---
libswscale/x86/yuv2rgb_template.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libswscale/x86/yuv2rgb_template.c b/libswscale/x86/yuv2rgb_template.c
index ba90689..6016923 100644
--- a/libswscale/x86/yuv2rgb_template.c
+++ b/libswscale/x86/yuv2rgb_template.c
@@ -524,6 +524,8 @@ static inline int RENAME(yuva420_rgb32)(SwsContext *c, const uint8_t* src[], int
YUV2RGB_ENDLOOP(4)
YUV2RGB_OPERANDS_ALPHA
+#else
+ return 0;
#endif
}
@@ -560,5 +562,7 @@ static inline int RENAME(yuva420_bgr32)(SwsContext *c, const uint8_t* src[], int
YUV2RGB_ENDLOOP(4)
YUV2RGB_OPERANDS_ALPHA
+#else
+ return 0;
#endif
}
--
1.7.11.7
Index: ffmpeg-compat.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg-compat/devel/ffmpeg-compat.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ffmpeg-compat.spec 1 Oct 2013 18:48:24 -0000 1.13
+++ ffmpeg-compat.spec 1 Oct 2013 20:52:00 -0000 1.14
@@ -22,6 +22,7 @@
Source1: ffmpeg-snapshot.sh
Patch0: ffmpeg-0.6.6-compile-fix.patch
Patch1: 0001-Fix-build-when-seletected-fpu-is-not-neon-on-arm.patch
+Patch2: 0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: bzip2-devel
@@ -118,6 +119,7 @@
%setup -q -n ffmpeg-%{version}
%patch0 -p1
%patch1 -p1
+%patch2 -p1
%build
mkdir generic
11 years, 1 month
rpms/ffmpeg-compat/F-18 ffmpeg-compat.spec,1.7,1.8
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpeg-compat/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv4757/F-18
Modified Files:
ffmpeg-compat.spec
Log Message:
Fix build
Index: ffmpeg-compat.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg-compat/F-18/ffmpeg-compat.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ffmpeg-compat.spec 1 Oct 2013 18:48:54 -0000 1.7
+++ ffmpeg-compat.spec 1 Oct 2013 20:52:00 -0000 1.8
@@ -22,6 +22,7 @@
Source1: ffmpeg-snapshot.sh
Patch0: ffmpeg-0.6.6-compile-fix.patch
Patch1: 0001-Fix-build-when-seletected-fpu-is-not-neon-on-arm.patch
+Patch2: 0002-Add-unconditional-return-statement-to-yuva420_rgb32_.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: bzip2-devel
@@ -118,6 +119,7 @@
%setup -q -n ffmpeg-%{version}
%patch0 -p1
%patch1 -p1
+%patch2 -p1
%build
mkdir generic
11 years, 1 month
rpms/mate-applet-streamer/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/mate-applet-streamer/devel
In directory old02.ovh.rpmfusion.lan:/home/rpmfusion/kwizart/free/owners/tmpcvsA31120/rpms/mate-applet-streamer/devel
Added Files:
.cvsignore Makefile sources
Log Message:
Setup of module mate-applet-streamer
--- NEW FILE .cvsignore ---
--- NEW FILE Makefile ---
# Makefile for source rpm: mate-applet-streamer
# $Id: Makefile,v 1.1 2013/10/01 20:05:56 kwizart Exp $
NAME := mate-applet-streamer
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)
--- NEW FILE sources ---
11 years, 1 month
rpms/mate-applet-streamer Makefile, NONE, 1.1 import.log, NONE, 1.1 pkg.acl, NONE, 1.1
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/mate-applet-streamer
In directory old02.ovh.rpmfusion.lan:/home/rpmfusion/kwizart/free/owners/tmpcvsA31120/rpms/mate-applet-streamer
Added Files:
Makefile import.log pkg.acl
Log Message:
Setup of module mate-applet-streamer
--- NEW FILE Makefile ---
# Top level Makefile for module mate-applet-streamer
all : CVS/Root common-update
@cvs update
common-update : common
@cd common && cvs update
common : CVS/Root
@cvs checkout common
CVS/Root :
@echo "ERROR: This does not look like a CVS checkout" && exit 1
clean :
@find . -type f -name *~ -exec rm -fv {} \;
--- NEW FILE import.log ---
--- NEW FILE pkg.acl ---
11 years, 1 month
rpms/mate-applet-streamer/devel - New directory
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/mate-applet-streamer/devel
In directory old02.ovh.rpmfusion.lan:/home/rpmfusion/kwizart/free/owners/tmpcvsA31120/rpms/mate-applet-streamer/devel
Log Message:
Directory /cvs/free/rpms/mate-applet-streamer/devel added to the repository
11 years, 1 month
rpms/mate-applet-streamer - New directory
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/mate-applet-streamer
In directory old02.ovh.rpmfusion.lan:/home/rpmfusion/kwizart/free/owners/tmpcvsA31120/rpms/mate-applet-streamer
Log Message:
Directory /cvs/free/rpms/mate-applet-streamer added to the repository
11 years, 1 month