Re: Late branching for F-20 because of FFmpeg deps needfix

2013-08-28 Thread Nicolas Chauvet
Yep but BTW what to do with xine-lib 1.2 ?
Is it possible to bundle the libav.. .so into the fedora build and add a
xine-lib-extras with ffmpeg enabled ?
Or we don't care and move it into RPM Fusion ?
I prefer to have xine-lib removed if there is no forseable solution.

Thx for the patch! BTW (I can set you the ACL by this week-end if you make
an ACL request into our bugzilla).

Nicolas (kwizart)


2013/8/28 Xavier Bachelot 

> On 08/28/2013 07:29 AM, Julian Sikorski wrote:
> > W dniu 27.08.2013 13:47, Nicolas Chauvet pisze:
> >> 2013/8/27 Hans de Goede
> >>  >> >
> >> ...
> >>
> >>
> >> I've fixed libquicktime, gstreamer1-libav and frogatto (for new
> >> boost, not ffmpeg, building now).
> >>
> >> But it seems something has gone wrong with gstreamer1-libav, the
> >> build completed successfully, but:
> >>
> http://buildsys.rpmfusion.org/__plague-results/fedora-__development-rpmfusion_free/__gstreamer1-libav/1.1.3-2.fc20/
> >> <
> http://buildsys.rpmfusion.org/plague-results/fedora-development-rpmfusion_free/gstreamer1-libav/1.1.3-2.fc20/
> >
> >> only has debuginfo rpms, and the logs at:
> >>
> http://buildsys.rpmfusion.org/__logs/fedora-development-__rpmfusion_free/18240-__gstreamer1-libav-1.1.3-2.fc20/
> >> <
> http://buildsys.rpmfusion.org/logs/fedora-development-rpmfusion_free/18240-gstreamer1-libav-1.1.3-2.fc20/
> >
> >> are also incomplete, maybe the disk is full ?
> >>
> >> The disk isn't full, but the changes to track the fedora development/f20
> >> repository instead of rawhide was not completed.
> >> Please bump and resubmit a new job to test if everything went right this
> >> time (you shouldn't have any build with .fc21).
> >>
> >>
> >>
> >>
> >>
> >> If you want me to help with other packages, a list of packages
> >> needing work would be useful.
> >>
> >> The failure page is probably helpful
> >> http://buildsys.rpmfusion.org/build-status/failed.psp
> >> Search for the recent failure submited by me.
> >> I can eventually requeue the build if a previous dependency has
> succeeded.
> >>
> >> Nicolas (kwizart)
> > Also see my earlier e-mail, I have posted the results of local rebuild
> >
> > Best regards,
> > Julian
> >
>
> Here's a patch that allows xine-lib-extras-freeworld to build.
>
> Regards,
> Xavier
>


Re: Late branching for F-20 because of FFmpeg deps needfix

2013-08-28 Thread Xavier Bachelot
On 08/28/2013 07:29 AM, Julian Sikorski wrote:
> W dniu 27.08.2013 13:47, Nicolas Chauvet pisze:
>> 2013/8/27 Hans de Goede
>> > >
>> ...
>>  
>>
>> I've fixed libquicktime, gstreamer1-libav and frogatto (for new
>> boost, not ffmpeg, building now).
>>
>> But it seems something has gone wrong with gstreamer1-libav, the
>> build completed successfully, but:
>> 
>> http://buildsys.rpmfusion.org/__plague-results/fedora-__development-rpmfusion_free/__gstreamer1-libav/1.1.3-2.fc20/
>> 
>> 
>> only has debuginfo rpms, and the logs at:
>> 
>> http://buildsys.rpmfusion.org/__logs/fedora-development-__rpmfusion_free/18240-__gstreamer1-libav-1.1.3-2.fc20/
>> 
>> 
>> are also incomplete, maybe the disk is full ?
>>
>> The disk isn't full, but the changes to track the fedora development/f20
>> repository instead of rawhide was not completed.
>> Please bump and resubmit a new job to test if everything went right this
>> time (you shouldn't have any build with .fc21).
>>
>>
>>  
>>
>>
>> If you want me to help with other packages, a list of packages
>> needing work would be useful.
>>
>> The failure page is probably helpful
>> http://buildsys.rpmfusion.org/build-status/failed.psp
>> Search for the recent failure submited by me.
>> I can eventually requeue the build if a previous dependency has succeeded.
>>
>> Nicolas (kwizart)
> Also see my earlier e-mail, I have posted the results of local rebuild
> 
> Best regards,
> Julian
> 

Here's a patch that allows xine-lib-extras-freeworld to build.

Regards,
Xavier
--- xine-lib-1.1.21/src/combined/ffmpeg/ffmpeg_decoder.h.orig	2013-08-28 22:43:33.653572011 +0200
+++ xine-lib-1.1.21/src/combined/ffmpeg/ffmpeg_decoder.h	2013-08-28 22:44:24.087787844 +0200
@@ -35,7 +35,7 @@
 
 typedef struct ff_codec_s {
   uint32_t  type;
-  enum CodecID  id;
+  enum AVCodecID  id;
   const char   *name;
 } ff_codec_t;
 
--- xine-lib-1.1.21/src/combined/ffmpeg/ff_audio_decoder.c.orig	2013-08-28 23:07:28.399833089 +0200
+++ xine-lib-1.1.21/src/combined/ffmpeg/ff_audio_decoder.c	2013-08-28 23:09:41.375423336 +0200
@@ -47,6 +47,11 @@
 
 #define AUDIOBUFSIZE (64 * 1024)
 
+#ifndef AVCODEC_MAX_AUDIO_FRAME_SIZE
+/* from libavcodec/avcodec.h dated Dec 23 2012 */
+#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 // 1 second of 48khz 32bit audio
+#endif
+
 typedef struct {
   audio_decoder_class_t   decoder_class;
 } ff_audio_class_t;
--- xine-lib-1.1.21/src/combined/ffmpeg/ff_video_decoder.c.orig	2013-08-28 23:30:14.261671159 +0200
+++ xine-lib-1.1.21/src/combined/ffmpeg/ff_video_decoder.c	2013-08-28 23:30:55.725849741 +0200
@@ -1055,7 +1055,7 @@
 this->bih.biWidth  = _X_BE_16(&this->buf[12]);
 this->bih.biHeight = _X_BE_16(&this->buf[14]);
 
-this->context->sub_id = _X_BE_32(&this->buf[30]);
+/*this->context->sub_id = _X_BE_32(&this->buf[30]); */
 
 this->context->slice_offset = calloc(SLICE_OFFSET_SIZE, sizeof(int));
 this->slice_offset_size = SLICE_OFFSET_SIZE;


[Bug 2909] Review request: gtkradiant - Level design program for video games

2013-08-28 Thread RPM Fusion Bugzilla
https://bugzilla.rpmfusion.org/show_bug.cgi?id=2909

--- Comment #2 from Alberto  2013-08-28 16:14:05 CEST ---
I installed and executed uforadiant on my system but it seems to require ufoai
anyhow; here a screenshot:
http://www.pikky.net/uploads/acc2a3c852eb354bb54021fdd1266221e6f0053f.png
If i continue the exec freezes.

So I think it's impossible to work with uforadiant and other gamepacks
different from ufoai.

Gtkradiant is a fork of Q3radiant, the official map editor included with
various versions of Quake, as it can be seen in the original code of Quake III
Arena, for example here:
https://github.com/id-Software/Quake-III-Arena/tree/master/q3radiant
Gtkradiant is also more developed, because it support many gamepacks, instead
than a single one like uforadiant, for example.
For more info and for the list of supoported games here's the wikipedia related
page: http://en.wikipedia.org/wiki/GtkRadiant#Supported_games

I've searched for a ufoai gamepack to be added in the gtkradiant gamepacks and
it seems to be one, here the complete page for all the gamepacks:
http://svn.icculus.org/gtkradiant-gamepacks/

greetings,
Alberto

-- 
Configure bugmail: https://bugzilla.rpmfusion.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.


[Bug 2926] Review request: mpv - Movie player playing most video formats and DVDs

2013-08-28 Thread RPM Fusion Bugzilla
https://bugzilla.rpmfusion.org/show_bug.cgi?id=2926

Miro Hrončok  changed:

   What|Removed |Added

 Blocks|2   |4, 33

--- Comment #7 from Miro Hrončok  2013-08-28 13:36:22 CEST 
---
Package CVS request
==
Package Name: mpv
Short Description: Movie player playing most video formats and DVDs
Owners: churchyard
Branches: f18 f19 f20
--
License tag: free

-- 
Configure bugmail: https://bugzilla.rpmfusion.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.

[Bug 2926] Review request: mpv - Movie player playing most video formats and DVDs

2013-08-28 Thread RPM Fusion Bugzilla
https://bugzilla.rpmfusion.org/show_bug.cgi?id=2926

--- Comment #8 from Miro Hrončok  2013-08-28 13:36:49 CEST 
---
Thanks Peter. I'll remove the duplicity.

-- 
Configure bugmail: https://bugzilla.rpmfusion.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.